eorderDetail.vue 26 KB

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