eorderDetail.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="nav" >
  5. <view>
  6. <image src="../../static/img/baiback22.png" mode="" class="gobackImg" @click="goback"></image>
  7. <!-- <image src="../../static/img/baigoindex22.png" mode="" class="goIndexImg" @click="goIndex()"></image> -->
  8. </view>
  9. <view>订单详情</view>
  10. <view style="width: 92rpx;"></view>
  11. </view>
  12. <view style="height: 44px;"></view>
  13. <view class="SheetState" v-if="orderData.sheetState==1">等待付款</view>
  14. <view class="SheetState" v-if="orderData.sheetState==2">请尽快到店享受服务</view>
  15. <view class="SheetState" v-if="orderData.sheetState==3||orderData.sheetState==5">订单已完成</view>
  16. <view class="SheetState" v-if="orderData.sheetState==0">订单已取消</view>
  17. <view class="SheetState" v-if="orderData.sheetState==4">订单已完成</view>
  18. </view>
  19. <view v-if="orderData">
  20. <!-- 服务确认码 -->
  21. <view class="orderTop" v-if="orderData.sheetState==2 || orderData.sheetState==3 || orderData.sheetState==4 || orderData.sheetState==5">
  22. <view class="maBox">
  23. <view class="timeLeft">
  24. <span>服务确认码</span>
  25. </view>
  26. <view style="text-decoration:line-through; color: #999999; font-size: 26rpx;"
  27. v-if="orderData.sheetState==3 || orderData.sheetState==4 || orderData.sheetState==5 && orderData.serviceCode!=null">{{orderData.serviceCode}}</view>
  28. <view class="rightShou" v-if="orderData.sheetState==2">
  29. <view class="timeRight" style="color: #FF2400;" @click="showMa">收起</view>
  30. <image src="../../static/img/icon_arrow_up_orange.png" style="width: 17rpx; height: 11rpx; margin-left:10rpx ;">
  31. </image>
  32. </view>
  33. <view style="color: #999999; font-size: 26rpx;" v-if="orderData.sheetState==3 || orderData.sheetState==4 || orderData.sheetState==5">已使用</view>
  34. </view>
  35. <!-- 确认码 -->
  36. <view class="querenMa" v-if="isShowMa==true && orderData.sheetState==2">
  37. <view style="color: #FF2400; font-size: 24rpx; text-align: center;">请到店出示券码即可开始服务</view>
  38. <view class="maBoximg">
  39. <tki-qrcode cid="qrcode1" ref="qrcode" :val="orderData.serviceCode" :size="308" :unit="unit"
  40. :pdground="pdground" :icon="icon" :iconSize="iconsize" :lv="lv" :onval="onval"
  41. :loadMake="loadMake" :usingComponents="true" @result="qrR" />
  42. </view>
  43. <view style="color: #333333; font-size: 26rpx; font-weight: bold; text-align: center;">
  44. {{orderData.serviceCode}}
  45. </view>
  46. </view>
  47. </view>
  48. <view class="orderTop">
  49. <view class="timeBox">
  50. <view class="timeLeft">
  51. <span v-if="orderData.sheetState==1||orderData.sheetState==2||orderData.sheetState==0">预约到店:{{orderData.orderTime}}</span>
  52. <span v-else>服务时间:{{orderData.serviceTime}}</span>
  53. <image v-if="orderData.sheetState==1||orderData.sheetState==2" src="../../static/img/icon_edit.png" mode="" class="timeEditImg" @click="timeShowClick"></image>
  54. </view>
  55. <view class="timeRight" @click="qrcodeClick">订单码</view>
  56. </view>
  57. <view class="shopBox">
  58. <image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  59. <view class="shopCont">
  60. <view class="shopName">{{orderData.shopName}}</view>
  61. <view class="Address">
  62. {{orderData.ProvinceName}}{{orderData.CityName}}{{orderData.AreaName}}{{orderData.Address}}
  63. </view>
  64. </view>
  65. <view class="shopRightBox" @click="map">
  66. <view> <image src="../../static/img/icon_ditu2.png" mode="" class="shopRightImg"></image> </view>
  67. <view class="shopRihgtTxt">地图</view>
  68. </view>
  69. <view class="shopsx"></view>
  70. <view class="shopRightBox" @click="call">
  71. <view> <image src="../../static/img/icon_phone2.png" mode="" class="shopRightImg"></image> </view>
  72. <view class="shopRihgtTxt">电话</view>
  73. </view>
  74. </view>
  75. <view class="people">
  76. <image src="../../static/img/icon_ren.png" mode="" class="shopBoximg"></image>
  77. <view class="peopleCont">{{orderData.contactName}}</view>
  78. <view class="peopleCont" style="padding-left: 20rpx;">{{orderData.contactPhone}}</view>
  79. </view>
  80. <view class="PlateNumberBox">
  81. <image src="../../static/img/icon_che.png" mode="" class="shopBoximg"></image>
  82. <view class="">
  83. <view class="PlateNumberBoxTop">
  84. <view class="PlateNumbercx"> <span v-if="orderData.brand">{{orderData.brand}}</span>
  85. <span style="padding-left: 20rpx;" v-if="orderData.series">{{orderData.series}}</span>
  86. </view>
  87. <view class="PlateNumber">{{orderData.plateNumber}}</view>
  88. </view>
  89. <view class="CarModel">{{orderData.carModel}}</view>
  90. </view>
  91. </view>
  92. </view>
  93. <view style="margin-top: -40rpx;"></view>
  94. <!-- 商品明细-->
  95. <view class="detailedBox itemBox" v-if="orderData.goodsList.length!=0">
  96. <view class="detailedTitle">商品明细</view>
  97. <view class="detailedLineBox">
  98. <view class="detailedLine" v-for="(item,index) in orderData.goods">
  99. <view>
  100. <image :src="item.Url" mode="" class="detailedImg" v-if="item.Url"></image>
  101. <image src="../../static/img/noimg.png" mode="" class="detailedImg" v-else></image>
  102. </view>
  103. <view class="detailedCont">
  104. <view class="detailedName">{{item.GoodsName}}</view>
  105. <view class="detailedContBottom">
  106. <span class="SalePrice">¥{{item.SalePrice}}</span>
  107. <span>x{{item.SaleQty}}</span>
  108. </view>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. <!-- 商品明细-->
  114. <!-- 项目明细 -->
  115. <view class="detailedBox itemBox" v-if=" orderData.itemList.length!=0">
  116. <view class="detailedTitle">项目明细</view>
  117. <view class="detailedLineBox">
  118. <view class="detailedLine" v-for="(item,index) in orderData.items">
  119. <view>
  120. <image :src="item.Url" mode="" class="detailedImg" v-if="item.Url"></image>
  121. <image src="../../static/img/noitem.png" mode="" class="detailedImg" v-else></image>
  122. </view>
  123. <view class="detailedCont">
  124. <view class="detailedName">{{item.ItemName}}</view>
  125. <view class="detailedContBottom">
  126. <span class="SalePrice">¥{{item.SalePrice}}</span>
  127. <span>x1</span>
  128. </view>
  129. </view>
  130. </view>
  131. </view>
  132. </view>
  133. <!-- 项目明细 -->
  134. <!-- 商品费 -->
  135. <view class="goodscost">
  136. <view class="goodscostLine">
  137. <view class="goodscostTxt">商品费</view>
  138. <view class="goodsCostNum">¥{{orderData.goodsMoney}}</view>
  139. </view>
  140. <view class="goodscostLine">
  141. <view class="goodscostTxt">项目费</view>
  142. <view class="goodsCostNum">¥{{orderData.itemMoney}}</view>
  143. </view>
  144. <view class="goodscostLine">
  145. <view class="goodscostTxt">优惠券优惠</view>
  146. <view class="goodsCostNum">-¥{{orderData.couponMoney}}</view>
  147. </view>
  148. <view class="goodscostLine">
  149. <view class="goodscostTxt">实付款</view>
  150. <view class="goodsCostNum" style="color: #FF4F00;">¥{{orderData.payMoney}}</view>
  151. </view>
  152. </view>
  153. <!-- 商品费 -->
  154. <!-- 订单信息 -->
  155. <view class="information">
  156. <view class="detailedTitle">订单信息</view>
  157. <view class="informationLine">
  158. <view class="informationTxt">订单编号:</view>
  159. <view class="informationNum">{{orderData.code}}</view>
  160. <view class="copyBtn" @click="copy(orderData.code)">复制</view>
  161. </view>
  162. <view class="informationLine">
  163. <view class="informationTxt">下单人:</view>
  164. <view class="informationNum">{{orderData.memberName}}</view>
  165. </view>
  166. <view class="informationLine">
  167. <view class="informationTxt">下单时间:</view>
  168. <view class="informationNum">{{orderData.createTime}}</view>
  169. </view>
  170. <view class="informationLine">
  171. <view class="informationTxt">下单备注:</view>
  172. <view class="informationNum">{{orderData.comment}}</view>
  173. </view>
  174. </view>
  175. <!-- 订单信息 -->
  176. <!-- 支付信息 -->
  177. <view class="information">
  178. <view class="detailedTitle">支付信息</view>
  179. <view class="informationLine">
  180. <view class="informationTxt">支付状态:</view>
  181. <view class="informationNum" v-if="orderData.sheetState==2||orderData.sheetState==3||orderData.sheetState==4">已支付</view>
  182. <view class="informationNum" v-if="orderData.sheetState==1">未支付</view>
  183. </view>
  184. <view class="informationLine">
  185. <view class="informationTxt">支付方式:</view>
  186. <view class="informationNum">{{orderData.payMethod==1?'线上支付':'线下支付'}}</view>
  187. </view>
  188. <view class="informationLine">
  189. <view class="informationTxt">支付时间:</view>
  190. <view class="informationNum" v-if="orderData.payTime">{{orderData.payTime}}</view>
  191. </view>
  192. </view>
  193. <!-- 支付信息 -->
  194. <view style="height: 150rpx;"></view>
  195. <!-- <view class="orderBottom" v-if="orderData.SheetState==1||orderData.SheetState==2">
  196. <view class="payBtn" v-if="orderData.SheetState!=2" @click="orderPay">立即支付</view>
  197. <view class="cancelBtn" style="margin-right: 16rpx;" @click="cancelOrder">取消订单</view>
  198. </view>
  199. <view class="orderBottom" v-if="orderData.EvaluateState==1">
  200. <view class="cancelBtn" style="margin-right: 16rpx;" @click="gopingjia">查看评价</view>
  201. </view>
  202. <view class="orderBottom" v-if="orderData.EvaluateState==0&&orderData.EState==1">
  203. <view class="payBtn" @click="evaluate">立即评价</view>
  204. </view> -->
  205. <view class="orderBottom" v-if="orderData.sheetState==2">
  206. <view class="cancelBtn" style="margin-right: 16rpx;" @click="">核销</view>
  207. </view>
  208. <!-- 二维码 -->
  209. <view v-if="qrcodeShow" class="qrcodeBox" @click="qrcodeShow=false">
  210. <view @click.stop="qrc">
  211. <tki-qrcode cid="qrcode1" ref="qrcode" :val="qrcodeTopVal" :size="size" :unit="unit"
  212. :pdground="pdground" :icon="icon" :iconSize="iconsize" pdground="#000000"
  213. :lv="lv" :onval="onval" :loadMake="loadMake" :usingComponents="true" @result="qrR"/>
  214. </view>
  215. </view>
  216. <!-- 二维码 -->
  217. <!-- 地图 -->
  218. <!-- 地图 -->
  219. <!-- 预约时间 -->
  220. <view class="timeBox2" v-if="timeShow&&OrderTimes" @click="timeShow=false">
  221. <view class="timeMain">
  222. <view class="timeTop">
  223. <view class="timeTopTitle">选择预约时间</view>
  224. <view class="close" @click="timeShow=false">X</view>
  225. </view>
  226. <view class="timeCont">
  227. <view class="timeLeft2">
  228. <scroll-view scroll-y="true" class="timeSv">
  229. <view class="timeleftLine" v-for="(item,index) in OrderTimes"
  230. :class="{timeLeftActive:index==orderTimeIndex1}"
  231. @click.stop="orderTimeIndex1=index,orderTimeIndex2=-1"
  232. >{{item.date.substring(5,10)}}</view>
  233. </scroll-view>
  234. </view>
  235. <view class="timeRight2">
  236. <scroll-view scroll-y="true" class="timeSv">
  237. <view class="timerightBox">
  238. <view class="timesf" v-for="(item,index) in OrderTimes[orderTimeIndex1].timeList"
  239. :class="{timesfNo:item.type!=1,timesfActive:index==orderTimeIndex2}"
  240. @click.stop="timeSfCk(item,index)"
  241. >
  242. <view class="timeSfNum">{{item.time}}</view>
  243. <view class="timeyy" v-if="item.type==1">可预约</view>
  244. <view class="timeyy" v-if="item.type==2">已约满</view>
  245. <view class="timeyy" v-if="item.type==3">已过期</view>
  246. </view>
  247. </view>
  248. </scroll-view>
  249. </view>
  250. </view>
  251. <view class="timeBottom">
  252. <view class="timecomplete" @click="timeCk">完成</view>
  253. </view>
  254. </view>
  255. </view>
  256. </view>
  257. </view>
  258. </template>
  259. <script>
  260. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  261. export default {
  262. components: {
  263. tkiQrcode
  264. },
  265. data() {
  266. return {
  267. location:'',
  268. isload:false,
  269. id:'',
  270. iStatusBarHeight:'',
  271. orderData:'',
  272. type:'',
  273. onval: true, // val值变化时自动重新生成二维码
  274. loadMake: true, // 组件加载完成后自动生成二维码
  275. size:500,
  276. qrcodeShow:false,
  277. qrcodeTop:'-100vh',
  278. qrcodeTopVal:'',
  279. ifShow: false,
  280. val: '二维码', // 要生成的二维码值
  281. unit: 'upx', // 单位
  282. background: '#b4e9e2', // 背景色
  283. foreground: '#309286', // 前景色
  284. pdground: '#333333', // 角标色
  285. icon: '', // 二维码图标
  286. iconsize: 40, // 二维码图标大小
  287. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  288. src: '' ,// 二维码生成后的图片地址或base64
  289. timeShow:false,
  290. orderTime:'',
  291. OrderTimes:'',
  292. orderTimeIndex1:0,
  293. orderTimeIndex2:-1,
  294. isShowMa: true,
  295. }
  296. },
  297. onLoad(opt) {
  298. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  299. this.location=uni.getStorageSync("location");
  300. this.id=opt.id
  301. this.getData()
  302. this.type=opt.type;
  303. this.getOrderTimes();
  304. },
  305. onShow() {
  306. if(this.id){
  307. this.getData()
  308. }
  309. },
  310. methods: {
  311. showMa() {
  312. this.isShowMa = !this.isShowMa
  313. },
  314. gopingjia(){
  315. uni.navigateTo({
  316. url:'../me/myAppraiseDetail?id='+this.id
  317. })
  318. },
  319. timeShowClick(){
  320. if(this.OrderTimes){
  321. this.timeShow=true
  322. }else{
  323. uni.showToast({
  324. title: '当前店铺尚未设置可预约时间',
  325. icon:'none',
  326. duration: 3000
  327. });
  328. }
  329. },
  330. map(){
  331. console.log("打开地图")
  332. var that=this;
  333. if(!that.orderData.Lat||!that.orderData.Lng){
  334. uni.showToast({
  335. title: '该店铺未设置定位',
  336. icon:'none',
  337. duration: 3000
  338. });
  339. }else{
  340. uni.openLocation({
  341. latitude:Number(that.orderData.Lat) ,
  342. longitude:Number( that.orderData.Lng),
  343. name:that.orderData.ShopName,
  344. address:that.orderData.Address,
  345. success: function () {
  346. console.log('success');
  347. },
  348. fail(err) {
  349. console.log(err)
  350. }
  351. });
  352. }
  353. },
  354. qrR(){
  355. },
  356. qrc(){
  357. console.log(111)
  358. },
  359. call(){
  360. uni.makePhoneCall({
  361. phoneNumber: this.orderData.contactPhone
  362. });
  363. },
  364. qrcodeClick(){
  365. this.ifShow=true;
  366. this.qrcodeShow=true;
  367. this.qrcodeTopVal=this.orderData.Code;
  368. //this.$refs.qrcode._makeCode()
  369. },
  370. copy(txt){
  371. uni.setClipboardData({
  372. data: txt,
  373. success: function () {
  374. uni.showToast({
  375. title: '复制成功',
  376. icon:'none',
  377. duration: 2000
  378. });
  379. }
  380. });
  381. },
  382. getData(){
  383. uni.showLoading({ title: '加载中'});
  384. this.$http('h5BmSheet/h5BmSheetDetail', {
  385. //lat:this.location.lat,
  386. // lng:this.location.lng,
  387. id:this.id,
  388. },'GET').then(res => {
  389. uni.hideLoading();
  390. this.orderData=res.data;
  391. })
  392. },
  393. goback(){
  394. if(this.type==2){
  395. uni.switchTab({
  396. url:'../index/index'
  397. })
  398. }else{
  399. uni.navigateBack({})
  400. }
  401. },
  402. evaluate(){
  403. uni.navigateTo({
  404. url:'evaluate?sheetID='+this.id+'&shopID='+this.orderData.ShopID
  405. })
  406. },
  407. goIndex(){
  408. uni.switchTab({
  409. url:'../index/index'
  410. })
  411. },
  412. cancelOrder(){
  413. var that=this;
  414. uni.showModal({
  415. title: '提示',
  416. content: '确定要取消订单吗',
  417. success: function (res) {
  418. if (res.confirm) {
  419. uni.showLoading({ title: '加载中'});
  420. that.$http('miniAppMyBMemberCar/updateBMSheetState', {
  421. id:that.orderData.ID
  422. },'POST').then(res => {
  423. uni.hideLoading();
  424. if(that.orderData.SheetState!=1){
  425. uni.showModal({
  426. title: '订单取消成功,请等待银行处理',
  427. content: '金额将原路退还至您的账户。若您使用了优惠券,将退至您的账户',
  428. showCancel:false,
  429. success: function (res) {
  430. that.getData()
  431. }
  432. });
  433. }else{
  434. uni.showModal({
  435. title: '提示',
  436. content: '订单取消成功',
  437. showCancel:false,
  438. success: function (res) {
  439. that.getData()
  440. }
  441. });
  442. }
  443. // that.getData()
  444. })
  445. } else if (res.cancel) {
  446. }
  447. }
  448. });
  449. },
  450. orderPay(){
  451. uni.showLoading({ title: '加载中'});
  452. var that=this;
  453. this.$http('miniApp/maintainOrder/orderPay', {
  454. sheetID:this.orderData.ID
  455. },'POST').then(res => {
  456. uni.hideLoading();
  457. var payInfo=JSON.parse(res.data.payInfo)
  458. uni.requestPayment({
  459. provider: 'wxpay',
  460. // timeStamp: String(Date.now()),
  461. timeStamp:payInfo.timeStamp,
  462. nonceStr: payInfo.nonceStr,
  463. package: payInfo.package,
  464. signType: payInfo.signType,
  465. paySign: payInfo.paySign,
  466. success: function (res) {
  467. console.log('success:' + JSON.stringify(res));
  468. uni.showToast({
  469. title: '支付成功',
  470. icon:'none',
  471. duration: 2000
  472. });
  473. that.getData()
  474. },
  475. fail: function (err) {
  476. console.log('fail:' + JSON.stringify(err));
  477. }
  478. });
  479. })
  480. },
  481. timeSfCk(item,index){
  482. if(item.type==1){
  483. this.orderTimeIndex2=index;
  484. var orderTime=this.OrderTimes[this.orderTimeIndex1].date +' '+ item.time
  485. this.orderTime=orderTime
  486. }
  487. },
  488. timeCk(){
  489. this.timeShow=false;
  490. this.$http('h5BmSheet/h5UpdateTimeOfAppointment', {
  491. id:this.id,
  492. billDate:this.orderTime
  493. },'POST').then(res => {
  494. if(res.code==0){
  495. uni.showToast({
  496. title: '修改成功',
  497. icon:'none',
  498. duration: 2000
  499. });
  500. }
  501. this.getData()
  502. })
  503. },
  504. getOrderTimes(){
  505. this.$http('h5BmSheet/getOrderTimes', {
  506. },'GET').then(res => {
  507. this.OrderTimes=res.data;
  508. })
  509. }
  510. },
  511. onPullDownRefresh() {
  512. this.getOrderTimes()
  513. this.getData()
  514. setTimeout(function () {
  515. uni.stopPullDownRefresh();
  516. }, 1000);
  517. },
  518. }
  519. </script>
  520. <style scoped>
  521. .box{
  522. min-height: 100vh;
  523. background: #F4F5F7;
  524. }
  525. .status_bar{
  526. background: #FF4F00;
  527. width: 100vw;
  528. position: fixed;
  529. top: 0;
  530. left: 0;
  531. z-index: 1111;
  532. }
  533. .qrcodeBox{
  534. width: 100vw;
  535. height: 100vh;
  536. display: flex;
  537. justify-content: center;
  538. align-items: center;
  539. position: fixed;
  540. top: 0;
  541. left: 0;
  542. background: rgba(0,0,0,0.7);
  543. }
  544. .top{
  545. width: 750rpx;
  546. height: 242rpx;
  547. background: #FF4F00;
  548. /* background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%); */
  549. }
  550. .nav{
  551. line-height: 44px;
  552. font-size: 34rpx;
  553. font-weight: 600;
  554. display: flex;
  555. justify-content: space-between;
  556. color: #FFFFFF;
  557. position: fixed;
  558. width: 100vw;
  559. left: 0;
  560. z-index: 1111;
  561. background: #FF4F00;
  562. }
  563. .gobackImg{
  564. width: 92rpx;
  565. height: 88rpx;
  566. /* padding: 12px; */
  567. }
  568. .SheetState{
  569. font-size: 44rpx;
  570. font-weight: 500;
  571. color: #FFFFFF;
  572. padding-left: 24rpx;
  573. padding-top: 24rpx;
  574. }
  575. .orderTop{
  576. background: #FFFFFF;
  577. border-radius: 10rpx;
  578. margin: 20rpx 24rpx;
  579. }
  580. .timeEditImg{
  581. width: 25rpx;height: 25rpx;padding-left: 20rpx;
  582. }
  583. .timeLeft{
  584. font-size: 28rpx;
  585. color: #3C3C3C;font-weight: 500;
  586. }
  587. .timeRight{
  588. font-size: 26rpx;
  589. color: #3F90F7;
  590. }
  591. .timeBox{
  592. display: flex;
  593. justify-content: space-between;
  594. padding: 24rpx 20rpx;
  595. border-bottom: 1px solid #EEEEEE;
  596. }
  597. .orderTop{
  598. position: relative;
  599. top: -44rpx;
  600. }
  601. .shopBoximg{
  602. width: 40rpx;height: 40rpx;
  603. }
  604. .shopRightImg{
  605. width: 52rpx;height: 38rpx;
  606. }
  607. .shopsx{
  608. width: 1px;
  609. height: 50rpx;
  610. background: #EEEEEE;
  611. margin-top: 30rpx;
  612. margin-left: 28rpx;
  613. }
  614. .shopBox{
  615. display: flex;
  616. padding: 30rpx 20rpx 20rpx 20rpx;
  617. }
  618. .shopCont{
  619. width: 418rpx;padding-left: 20rpx;
  620. }
  621. .shopName{
  622. font-size: 28rpx;
  623. color: #3C3C3C;
  624. }
  625. .Address{
  626. color: #999999;font-size: 26rpx;padding-top: 10rpx;
  627. }
  628. .shopRihgtTxt{
  629. color: #999999;font-size: 22rpx;padding-top: 5rpx;
  630. }
  631. .shopRightBox{
  632. padding-top: 30rpx;
  633. padding-left: 28rpx;
  634. }
  635. .peopleCont{
  636. font-size: 28rpx;
  637. font-weight: 500;
  638. color: #3C3C3C;
  639. padding-left: 20rpx;
  640. }
  641. .people{
  642. display: flex;
  643. padding-left: 20rpx;
  644. padding-bottom: 36rpx;
  645. }
  646. .PlateNumberBox{
  647. display: flex;padding-left: 20rpx;padding-bottom: 30rpx;
  648. }
  649. .PlateNumbercx{
  650. font-size: 28rpx;
  651. font-weight: 500;
  652. color: #3C3C3C;
  653. padding-left: 20rpx;
  654. }
  655. .PlateNumber{
  656. width: 130rpx;
  657. height: 32rpx;
  658. border-radius: 4rpx;
  659. border: 1px solid #F19D01;
  660. line-height: 32rpx;
  661. text-align: center;
  662. font-size: 22rpx;
  663. color: #F19D01;
  664. margin-left: 26rpx;
  665. }
  666. .PlateNumberBoxTop{
  667. display: flex;
  668. }
  669. .CarModel{
  670. font-size: 26rpx;
  671. color: #999999;
  672. padding-left: 20rpx;
  673. padding-top: 6rpx;
  674. padding-right: 20rpx;
  675. padding-bottom: 15rpx;
  676. width: 600rpx;
  677. }
  678. .detailedBox{
  679. width: 702rpx;
  680. background: #FFFFFF;
  681. border-radius: 10px;
  682. margin-left: 24rpx;
  683. margin-top: -60rpx;
  684. padding-bottom: 20rpx;
  685. }
  686. .itemBox{
  687. margin-top: 20rpx;
  688. }
  689. .detailedTitle{
  690. font-size: 32rpx;
  691. color: #3C3C3C;
  692. padding-left: 20rpx;padding-top: 30rpx;
  693. font-weight: 600;
  694. padding-bottom: 10rpx;
  695. }
  696. .detailedLine{
  697. display: flex;
  698. padding-left: 20rpx;
  699. padding-top: 40rpx;
  700. }
  701. .detailedImg{
  702. width: 120rpx;
  703. height: 120rpx;
  704. border-radius: 10rpx;
  705. }
  706. .detailedCont{
  707. padding-left: 20rpx;
  708. display: flex;
  709. flex-direction: column;
  710. justify-content: space-between;
  711. }
  712. .detailedName{
  713. font-size: 26rpx;
  714. color: #3C3C3C;
  715. }
  716. .detailedContBottom{
  717. display: flex;
  718. justify-content: space-between;
  719. font-size: 26rpx;
  720. color: #999999;
  721. width: 500rpx;
  722. line-height: 40rpx;
  723. }
  724. .SalePrice{
  725. font-size: 32rpx;
  726. font-weight: 500;
  727. color: #3C3C3C;
  728. }
  729. .goodscost{
  730. width: 702rpx;
  731. background: #FFFFFF;
  732. border-radius: 10px;
  733. margin-left: 24rpx;
  734. margin-top: 20rpx;
  735. padding: 15rpx 0;
  736. }
  737. .goodscostLine{
  738. display: flex;
  739. justify-content: space-between;
  740. font-size: 28rpx;
  741. padding: 20rpx 20rpx;
  742. color: #666666;
  743. }
  744. .goodsCostNum{
  745. color: #3C3C3C;
  746. }
  747. .information{
  748. width: 702rpx;
  749. background: #FFFFFF;
  750. border-radius: 10px;
  751. margin-left: 24rpx;
  752. margin-top: 20rpx;
  753. padding: 0rpx 0 15rpx 0;
  754. }
  755. .informationLine{
  756. display: flex;font-size: 26rpx;
  757. padding: 15rpx 20rpx;
  758. }
  759. .informationTxt{
  760. width: 150rpx;
  761. color: #666666;
  762. }
  763. .informationNum{
  764. color: #333333;
  765. }
  766. .copyBtn{
  767. width: 86rpx;
  768. height: 40rpx;
  769. background: #F4F5F7;
  770. border-radius: 20rpx;
  771. font-size: 24rpx;
  772. color: #333333;
  773. text-align: center;
  774. line-height: 40rpx;
  775. margin-left: 20rpx;
  776. }
  777. .orderBottom{
  778. width: 750rpx;
  779. height: 98rpx;
  780. background: #FFFFFF;
  781. position: fixed;
  782. left: 0;
  783. bottom: 0;
  784. display: flex;
  785. justify-content: flex-end;
  786. }
  787. .cancelBtn{
  788. width: 150rpx;
  789. height: 56rpx;
  790. border-radius: 36rpx;
  791. border: 2rpx solid #DDDDDD;
  792. text-align: center;
  793. line-height: 56rpx;
  794. font-size: 28rpx;
  795. color: #3C3C3C;
  796. margin-top: 21rpx;
  797. }
  798. .payBtn{
  799. width: 150rpx;
  800. height: 56rpx;
  801. border-radius: 36rpx;
  802. border: 2rpx solid #FF4F00;
  803. text-align: center;
  804. line-height: 56rpx;
  805. font-size: 28rpx;
  806. color: #FF4F00;
  807. margin-top: 21rpx;
  808. margin-right: 16rpx;
  809. margin-left: 40rpx;
  810. }
  811. .timeBox2{
  812. width: 100vw;
  813. height: 100vh;
  814. background: rgba(0,0,0,0.5);
  815. position: fixed;
  816. top: 0;
  817. left: 0;
  818. }
  819. .timeLeftActive{
  820. background: #FFFFFF;
  821. }
  822. .timeMain{
  823. width: 100vw;
  824. height: 70vh;
  825. margin-top: 30vh;
  826. background: #FFFFFF;
  827. border-radius: 24rpx 24rpx 0px 0px;
  828. }
  829. .timesfNo{
  830. background: #F5F5F5;
  831. }
  832. .timesfActive{
  833. background: #FF4F00;
  834. }
  835. .timesfActive .timeSfNum{
  836. color: #FFFFFF;
  837. }
  838. .timesfActive .timeyy{
  839. color: #FFFFFF;
  840. }
  841. .topBox{
  842. padding: 20rpx 24rpx;
  843. }
  844. .timeTop{
  845. display: flex;
  846. line-height: 90rpx;
  847. padding-left: 24rpx;
  848. padding-right: 24rpx;
  849. justify-content: space-between;
  850. }
  851. .timeTopTitle{
  852. font-size: 30rpx;
  853. font-family: PingFangSC-Medium, PingFang SC;
  854. font-weight: 600;
  855. color: #3C3C3C;
  856. }
  857. .close{
  858. color: #999999;font-size: 30rpx;
  859. padding-left: 30rpx;
  860. }
  861. .timeCont{
  862. height: calc(70vh - 210rpx);
  863. }
  864. .timeSv{
  865. height: calc(70vh - 210rpx);
  866. }
  867. .timeLeft2{
  868. width: 162rpx;
  869. background: #F4F5F7;
  870. border-top: 1px soid #F4F5F7;
  871. border-right:1px soid #F4F5F7 ;
  872. }
  873. .timeRight2{
  874. width: 588rpx;
  875. }
  876. .timesf{
  877. width: 165rpx;
  878. height: 98rpx;
  879. border-radius: 7rpx;
  880. border: 2rpx solid #EEEEEE;
  881. text-align: center;
  882. margin-left: 20rpx;
  883. margin-bottom: 24rpx;
  884. }
  885. .timeBottom{
  886. width: 750rpx;
  887. height: 120rpx;
  888. background: #FFFFFF;
  889. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  890. display: flex;
  891. align-items: center;
  892. }
  893. .timerightBox{
  894. display: flex;
  895. flex-wrap: wrap;
  896. }
  897. .timeCont{
  898. display: flex;
  899. }
  900. .timeSfNum{
  901. color: #666666;
  902. font-size: 28rpx;
  903. padding-top: 15rpx;
  904. }
  905. .timeyy{
  906. font-size: 24rpx;
  907. color: #999999;
  908. }
  909. .timecomplete{
  910. width: 690rpx;
  911. height: 74rpx;
  912. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  913. border-radius: 37rpx;
  914. line-height: 74rpx;
  915. text-align: center;
  916. font-size: 30rpx;
  917. color: #FFFFFF;
  918. margin-left: 30rpx;
  919. }
  920. .timeleftLine{
  921. font-size: 30rpx;
  922. color: #999999;
  923. text-align: center;
  924. padding: 28rpx 10rpx;
  925. border-bottom: 1px solid #EEEEEE;
  926. }
  927. .goIndexImg{
  928. width: 92rpx;
  929. height: 88rpx;
  930. }
  931. .maBox {
  932. display: flex;
  933. justify-content: space-between;
  934. padding: 24rpx 20rpx;
  935. }
  936. .querenMa {
  937. margin: 20rpx 0;
  938. padding-bottom: 30rpx;
  939. }
  940. .maBoximg {
  941. width: 308rpx;
  942. height: 308rpx;
  943. margin: 30rpx 197rpx;
  944. }
  945. .rightShou {
  946. display: flex;
  947. justify-content: flex-start;
  948. align-items: center;
  949. }
  950. </style>