bespeakDetail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="orderState">
  5. <image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  6. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 0">待确认</view>
  7. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 1">预约中</view>
  8. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 2">已到店</view>
  9. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 3">已取消</view>
  10. </view>
  11. </view>
  12. <!-- 店铺信息 -->
  13. <view class="shopBox">
  14. <image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  15. <view class="shopCont">
  16. <view class="shopName">{{orderData.shopInfo.ShopName}}</view>
  17. <view class="Address">{{orderData.shopInfo.province}}{{orderData.shopInfo.city}}{{orderData.shopInfo.area}}{{orderData.shopInfo.address}}</view>
  18. </view>
  19. <view class="shopRightBox" @click="map">
  20. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image>
  21. <view class="shopRihgtTxt">地图</view>
  22. </view>
  23. <view class="shopsx"></view>
  24. <view class="shopRightBox" @click="call">
  25. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg"></image>
  26. <view class="shopRihgtTxt">电话</view>
  27. </view>
  28. </view>
  29. <!-- 订单信息 -->
  30. <view class="information">
  31. <view class="detailedTitle">基本信息</view>
  32. <view class="informationLine">
  33. <view class="informationTxt">车牌号:</view>
  34. <view class="informationNum">{{orderData.orderSheet.plateNumber}}</view>
  35. </view>
  36. <view class="informationLine">
  37. <view class="informationTxt">手机号:</view>
  38. <view class="informationNum">{{orderData.orderSheet.mobilePhone}}</view>
  39. </view>
  40. <view class="informationLine">
  41. <view class="informationTxt">预约时间:</view>
  42. <view class="informationNum">{{orderData.orderSheet.billDate}}</view>
  43. </view>
  44. <view class="informationLine">
  45. <view class="informationTxt">单号:</view>
  46. <view class="informationNum">{{orderData.orderSheet.code}}</view>
  47. </view>
  48. <view class="informationLine">
  49. <view class="informationTxt">备注:</view>
  50. <view class="informationNum">{{orderData.orderSheet.comment}}</view>
  51. </view>
  52. </view>
  53. <!-- 项目明细 -->
  54. <view class="detailedBox itemBox" v-if=" orderData.orderDetails.length!=0">
  55. <view class="detailedTitle">预约项目</view>
  56. <view class="detailedLineBox">
  57. <view class="detailedLine" v-for="(v,index) in orderData.orderDetails">
  58. <view class="detailedName">{{v.itemName}}</view>
  59. <span>¥{{v.amountMoney}}</span>
  60. </view>
  61. <view class="detailedLine" v-if=" orderData.orderDetails.length!=0">
  62. <view class="detailedName">预估总价</view>
  63. <span>¥{{v.amountMoney}}</span>
  64. </view>
  65. <view class="content">温馨提示:该报价仅为参考价格,实际以门店为准(不同品牌和车型费用会不同)</view>
  66. </view>
  67. </view>
  68. <view class="bottom" v-if="(orderData.orderSheet.sheetState == 0)||(orderData.orderSheet.sheetState == 1)">
  69. <view class="cancel">取消预约</view>
  70. <view class="defer" @click="timeShowClick">延期</view>
  71. </view>
  72. <!-- 预约时间 -->
  73. <view class="timeBox2" v-if="timeShow&&OrderTimes" @click="timeShow=false">
  74. <view class="timeMain">
  75. <view class="timeTop">
  76. <view class="timeTopTitle">选择预约时间</view>
  77. <view class="close" @click="timeShow=false">X</view>
  78. </view>
  79. <view class="timeCont">
  80. <view class="timeLeft2">
  81. <scroll-view scroll-y="true" class="timeSv">
  82. <view class="timeleftLine" v-for="(item,index) in OrderTimes"
  83. :class="{timeLeftActive:index==orderTimeIndex1}"
  84. @click.stop="orderTimeIndex1=index,orderTimeIndex2=-1">{{item.date.substring(5,10)}}
  85. </view>
  86. </scroll-view>
  87. </view>
  88. <view class="timeRight2">
  89. <scroll-view scroll-y="true" class="timeSv">
  90. <view class="timerightBox">
  91. <view class="timesf" v-for="(item,index) in OrderTimes[orderTimeIndex1].timeList"
  92. :class="{timesfNo:item.type!=1,timesfActive:index==orderTimeIndex2}"
  93. @click.stop="timeSfCk(item,index)">
  94. <view class="timeSfNum">{{item.time}}</view>
  95. <view class="timeyy" v-if="item.type==1">可预约</view>
  96. <view class="timeyy" v-if="item.type==2">已约满</view>
  97. <view class="timeyy" v-if="item.type==3">已过期</view>
  98. </view>
  99. </view>
  100. </scroll-view>
  101. </view>
  102. </view>
  103. <view class="timeBottom">
  104. <view class="timecomplete" @click="timeCk">完成</view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. </template>
  110. <script>
  111. export default {
  112. data() {
  113. return {
  114. location: '',
  115. id: '',
  116. orderData: '',
  117. timeShow: false,
  118. orderTime: '',
  119. OrderTimes: '',
  120. orderTimeIndex1: 0,
  121. orderTimeIndex2: -1,
  122. }
  123. },
  124. onLoad(opt) {
  125. this.id = opt.id
  126. if (this.id) {
  127. this.getData()
  128. }
  129. },
  130. methods: {
  131. map() {
  132. console.log("打开地图")
  133. var that = this;
  134. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  135. uni.showToast({
  136. title: '该店铺未设置定位',
  137. icon: 'none',
  138. duration: 3000
  139. });
  140. } else {
  141. uni.openLocation({
  142. latitude: Number(that.orderData.shopInfo.lat),
  143. longitude: Number(that.orderData.shopInfo.lng),
  144. name: that.orderData.shopInfo.shopName,
  145. address: that.orderData.shopInfo.province+that.orderData.shopInfo.city+that.orderData.shopInfo.area+that.orderData.shopInfo.address,
  146. success: function() {
  147. console.log('success');
  148. },
  149. fail(err) {
  150. console.log(err)
  151. }
  152. });
  153. }
  154. },
  155. call() {
  156. uni.makePhoneCall({
  157. phoneNumber: this.orderData.orderSheet.mobilePhone
  158. });
  159. },
  160. getData() {
  161. uni.showLoading({
  162. title: '加载中'
  163. });
  164. this.$http('openreservation/orderSheetDetails', {
  165. // lat: this.location.lat,
  166. // lng: this.location.lng,
  167. id: this.id,
  168. }, 'GET').then(res => {
  169. uni.hideLoading();
  170. this.orderData = res.data;
  171. this.getOrderTimes();
  172. })
  173. },
  174. getOrderTimes() {
  175. this.$http('worldKeepCar/keepCarMy/getTSheetTimes', {
  176. shopId: this.orderData.ShopID,
  177. id:this.orderData.ID,
  178. }, 'GET').then(res => {
  179. this.OrderTimes = res.data;
  180. })
  181. },
  182. timeShowClick() {
  183. if (this.OrderTimes) {
  184. this.timeShow = true
  185. } else {
  186. uni.showToast({
  187. title: '当前店铺尚未设置可预约时间',
  188. icon: 'none',
  189. duration: 3000
  190. });
  191. }
  192. },
  193. timeSfCk(item, index) {
  194. if (item.type == 1) {
  195. this.orderTimeIndex2 = index;
  196. var orderTime = this.OrderTimes[this.orderTimeIndex1].date + ' ' + item.time
  197. this.orderTime = orderTime
  198. }
  199. },
  200. timeCk() {
  201. this.timeShow = false;
  202. var urlStr = 'worldKeepCar/keepCarMy/saveOrderTime'
  203. this.$http(urlStr, {
  204. id: this.id,
  205. orderTime: this.orderTime
  206. }, 'POST').then(res => {
  207. if (res.code == 0) {
  208. uni.showToast({
  209. title: '预约成功',
  210. icon: 'none',
  211. duration: 2000
  212. });
  213. }
  214. this.getData()
  215. })
  216. },
  217. goback() {
  218. uni.navigateBack({})
  219. },
  220. },
  221. onPullDownRefresh() {
  222. this.getData()
  223. setTimeout(function() {
  224. uni.stopPullDownRefresh();
  225. }, 1000);
  226. },
  227. }
  228. </script>
  229. <style scoped>
  230. .box {
  231. min-height: 100vh;
  232. background: #F4F5F7;
  233. }
  234. .top {
  235. height: 190rpx;
  236. background-color: #F03B3B;
  237. }
  238. .orderState {
  239. display: flex;
  240. justify-content: center;
  241. align-items: center;
  242. padding-top: 40rpx;
  243. }
  244. .SheetState {
  245. display: flex;
  246. justify-content: center;
  247. font-size: 36rpx;
  248. font-weight: 500;
  249. color: #FFFFFF;
  250. margin-left: 15rpx;
  251. }
  252. .timeEditImg {
  253. width: 25rpx;
  254. height: 25rpx;
  255. padding-left: 20rpx;
  256. }
  257. .shopBoximg {
  258. width: 40rpx;
  259. height: 40rpx;
  260. }
  261. .shopRightImg {
  262. width: 44rpx;
  263. height: 45rpx;
  264. }
  265. .shopsx {
  266. width: 1px;
  267. height: 50rpx;
  268. background: #EEEEEE;
  269. margin-top: 30rpx;
  270. margin-left: 28rpx;
  271. }
  272. .shopBox {
  273. display: flex;
  274. padding: 30rpx 20rpx;
  275. margin: 0rpx 24rpx;
  276. margin-top: -60rpx;
  277. background-color: #FFFFFF;
  278. border-radius: 10rpx;
  279. }
  280. .shopCont {
  281. width: 405rpx;
  282. padding-left: 20rpx;
  283. }
  284. .shopName {
  285. font-size: 30rpx;
  286. font-weight: bold;
  287. color: #3C3C3C;
  288. line-height: 42rpx;
  289. }
  290. .Address {
  291. color: #999999;
  292. font-size: 24rpx;
  293. margin-top: 10rpx;
  294. }
  295. .shopRihgtTxt {
  296. color: #999999;
  297. font-size: 24rpx;
  298. }
  299. .shopRightBox {
  300. padding-left: 28rpx;
  301. }
  302. .peopleCont {
  303. font-size: 28rpx;
  304. color: #3C3C3C;
  305. padding-left: 20rpx;
  306. }
  307. .people {
  308. display: flex;
  309. padding-left: 20rpx;
  310. padding-top: 30rpx;
  311. padding-bottom: 36rpx;
  312. }
  313. .PlateNumberBox {
  314. display: flex;
  315. padding-left: 20rpx;
  316. padding-bottom: 30rpx;
  317. }
  318. .PlateNumbercx {
  319. font-size: 28rpx;
  320. color: #3C3C3C;
  321. padding-left: 20rpx;
  322. }
  323. .PlateNumber {
  324. width: 130rpx;
  325. height: 32rpx;
  326. border-radius: 4rpx;
  327. border: 1px solid #F19D01;
  328. line-height: 32rpx;
  329. text-align: center;
  330. font-size: 22rpx;
  331. color: #F19D01;
  332. margin-left: 26rpx;
  333. }
  334. .PlateNumberBoxTop {
  335. display: flex;
  336. }
  337. .CarModel {
  338. font-size: 26rpx;
  339. color: #999999;
  340. padding-left: 20rpx;
  341. padding-top: 6rpx;
  342. padding-right: 20rpx;
  343. padding-bottom: 15rpx;
  344. width: 600rpx;
  345. }
  346. .detailedBox {
  347. background: #FFFFFF;
  348. border-radius: 10px;
  349. margin: 20rpx 24rpx;
  350. padding-bottom: 20rpx;
  351. }
  352. .itemBox {
  353. margin-top: 20rpx;
  354. }
  355. .carMes {
  356. padding: 23rpx 20rpx;
  357. display: flex;
  358. align-items: center;
  359. justify-content: flex-start;
  360. border-bottom: 1rpx solid #EEEEEE;
  361. }
  362. .plate {
  363. font-size: 30rpx;
  364. color: #3C3C3C;
  365. font-weight: bold;
  366. margin-right: 20rpx;
  367. }
  368. .mileage {
  369. font-size: 24rpx;
  370. color: #F19D01;
  371. padding: 0rpx 10rpx;
  372. border: 1rpx solid #F19D01;
  373. border-radius: 4rpx;
  374. height: 36rpx;
  375. }
  376. .detailedTitle {
  377. padding: 23rpx 20rpx;
  378. display: flex;
  379. text-align: center;
  380. align-content: flex-start;
  381. border-bottom: 1rpx solid #EEEEEE;
  382. font-size: 30rpx;
  383. font-weight: bold;
  384. color: #3C3C3C;
  385. }
  386. .detailedLine {
  387. display: flex;
  388. padding: 20rpx 20rpx 0rpx;
  389. justify-content: space-between;
  390. }
  391. .detailedImg {
  392. width: 120rpx;
  393. height: 120rpx;
  394. border-radius: 10rpx;
  395. }
  396. .detailedName {
  397. font-size: 26rpx;
  398. color: #3C3C3C;
  399. }
  400. span{
  401. font-size: 26rpx;
  402. color: #999999;
  403. }
  404. .goodscost {
  405. width: 702rpx;
  406. background: #FFFFFF;
  407. border-radius: 10px;
  408. margin-left: 24rpx;
  409. margin-top: 20rpx;
  410. padding: 15rpx 0;
  411. }
  412. .goodscostLine {
  413. display: flex;
  414. justify-content: space-between;
  415. font-size: 28rpx;
  416. padding: 20rpx 20rpx;
  417. color: #666666;
  418. }
  419. .goodsCostNum {
  420. color: #3C3C3C;
  421. }
  422. .information {
  423. width: 702rpx;
  424. background: #FFFFFF;
  425. border-radius: 10px;
  426. margin-left: 24rpx;
  427. margin-top: 20rpx;
  428. padding: 0rpx 0 15rpx 0;
  429. }
  430. .informationLine {
  431. display: flex;
  432. font-size: 26rpx;
  433. padding: 15rpx 20rpx;
  434. }
  435. .informationTxt {
  436. width: 190rpx;
  437. color: #999999;
  438. }
  439. .informationNum {
  440. color: #333333;
  441. }
  442. .copyBtn {
  443. width: 86rpx;
  444. height: 40rpx;
  445. background: #F4F5F7;
  446. border-radius: 20rpx;
  447. font-size: 24rpx;
  448. color: #333333;
  449. text-align: center;
  450. line-height: 40rpx;
  451. margin-left: 20rpx;
  452. }
  453. .orderBottom {
  454. width: 750rpx;
  455. height: 98rpx;
  456. background: #FFFFFF;
  457. position: fixed;
  458. left: 0;
  459. bottom: 0;
  460. display: flex;
  461. justify-content: flex-end;
  462. }
  463. .cancelBtn {
  464. width: 150rpx;
  465. height: 56rpx;
  466. border-radius: 36rpx;
  467. border: 2rpx solid #DDDDDD;
  468. text-align: center;
  469. line-height: 56rpx;
  470. font-size: 28rpx;
  471. color: #3C3C3C;
  472. margin-top: 21rpx;
  473. margin-right: 16rpx;
  474. margin-left: 20rpx;
  475. }
  476. .payBtn {
  477. width: 150rpx;
  478. height: 56rpx;
  479. border-radius: 36rpx;
  480. border: 2rpx solid #FF4F00;
  481. text-align: center;
  482. line-height: 56rpx;
  483. font-size: 28rpx;
  484. color: #FF4F00;
  485. margin-top: 21rpx;
  486. margin-right: 16rpx;
  487. margin-left: 20rpx;
  488. }
  489. .timeBox2 {
  490. width: 100vw;
  491. height: 100vh;
  492. background: rgba(0, 0, 0, 0.5);
  493. position: fixed;
  494. top: 0;
  495. left: 0;
  496. }
  497. .timeLeftActive {
  498. background: #FFFFFF;
  499. }
  500. .timeMain {
  501. width: 100vw;
  502. height: 70vh;
  503. margin-top: 30vh;
  504. background: #FFFFFF;
  505. border-radius: 24rpx 24rpx 0px 0px;
  506. }
  507. .timesfNo {
  508. background: #F5F5F5;
  509. }
  510. .timesfActive {
  511. background: #FF4F00;
  512. }
  513. .timesfActive .timeSfNum {
  514. color: #FFFFFF;
  515. }
  516. .timesfActive .timeyy {
  517. color: #FFFFFF;
  518. }
  519. .timeTop {
  520. display: flex;
  521. line-height: 90rpx;
  522. padding-left: 24rpx;
  523. padding-right: 24rpx;
  524. justify-content: space-between;
  525. }
  526. .timeTopTitle {
  527. font-size: 30rpx;
  528. font-family: PingFangSC-Medium, PingFang SC;
  529. font-weight: 600;
  530. color: #3C3C3C;
  531. }
  532. .close {
  533. color: #999999;
  534. font-size: 30rpx;
  535. padding-left: 30rpx;
  536. }
  537. .timeCont {
  538. height: calc(70vh - 210rpx);
  539. }
  540. .timeSv {
  541. height: calc(70vh - 210rpx);
  542. }
  543. .timeLeft2 {
  544. width: 162rpx;
  545. background: #F4F5F7;
  546. border-top: 1px soid #F4F5F7;
  547. border-right: 1px soid #F4F5F7;
  548. }
  549. .timeRight2 {
  550. width: 588rpx;
  551. }
  552. .timesf {
  553. width: 165rpx;
  554. height: 98rpx;
  555. border-radius: 7rpx;
  556. border: 2rpx solid #EEEEEE;
  557. text-align: center;
  558. margin-left: 20rpx;
  559. margin-bottom: 24rpx;
  560. }
  561. .timeBottom {
  562. width: 750rpx;
  563. height: 120rpx;
  564. background: #FFFFFF;
  565. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  566. display: flex;
  567. align-items: center;
  568. }
  569. .timerightBox {
  570. display: flex;
  571. flex-wrap: wrap;
  572. }
  573. .timeCont {
  574. display: flex;
  575. }
  576. .timeSfNum {
  577. color: #666666;
  578. font-size: 28rpx;
  579. padding-top: 15rpx;
  580. }
  581. .timeyy {
  582. font-size: 24rpx;
  583. color: #999999;
  584. }
  585. .timecomplete {
  586. width: 690rpx;
  587. height: 74rpx;
  588. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  589. border-radius: 37rpx;
  590. line-height: 74rpx;
  591. text-align: center;
  592. font-size: 30rpx;
  593. color: #FFFFFF;
  594. margin-left: 30rpx;
  595. }
  596. .timeleftLine {
  597. font-size: 30rpx;
  598. color: #999999;
  599. text-align: center;
  600. padding: 28rpx 10rpx;
  601. border-bottom: 1px solid #EEEEEE;
  602. }
  603. .yuyueBox {
  604. background: #FFFFFF;
  605. border-radius: 10rpx;
  606. margin-left: 24rpx;
  607. margin-right: 24rpx;
  608. }
  609. .yuyueTime {
  610. display: flex;
  611. padding-left: 20rpx;
  612. padding-top: 30rpx;
  613. padding-bottom: 36rpx;
  614. align-items: center;
  615. }
  616. .yuyueState {
  617. display: flex;
  618. padding-left: 20rpx;
  619. padding-top: 30rpx;
  620. padding-bottom: 36rpx;
  621. }
  622. .maBox {
  623. display: flex;
  624. justify-content: space-between;
  625. padding: 24rpx 20rpx;
  626. }
  627. .querenMa {
  628. margin: 20rpx 0;
  629. padding-bottom: 30rpx;
  630. }
  631. .maBoximg {
  632. width: 308rpx;
  633. height: 308rpx;
  634. margin: 30rpx 197rpx;
  635. }
  636. .rightShou {
  637. display: flex;
  638. justify-content: flex-start;
  639. align-items: center;
  640. }
  641. .content{
  642. background-color: #F4F5F7;
  643. border-radius: 10rpx;
  644. padding: 16rpx;
  645. color: #999999;
  646. font-size: 24rpx;
  647. margin: 20rpx;
  648. }
  649. .bottom {
  650. display: flex;
  651. justify-content: flex-end;
  652. padding: 20rpx;
  653. background-color: #FFFFFF;
  654. align-items: center;
  655. height: 98rpx;
  656. width: 100vw;
  657. position: fixed;
  658. bottom: 0rpx;
  659. }
  660. .cancel{
  661. color: #3C3C3C;
  662. font-size: 28rpx;
  663. width: 150rpx;
  664. height: 56rpx;
  665. border-radius: 36rpx;
  666. border: 1rpx solid #DDDDDD;
  667. text-align: center;
  668. line-height: 56rpx;
  669. margin-right: 40rpx;
  670. }
  671. .defer {
  672. color: #D53533;
  673. font-size: 28rpx;
  674. width: 150rpx;
  675. height: 56rpx;
  676. border-radius: 36rpx;
  677. border: 1rpx solid #D53533;
  678. text-align: center;
  679. line-height: 56rpx;
  680. margin-right: 40rpx;
  681. }
  682. .timeBox2 {
  683. width: 100vw;
  684. height: 100vh;
  685. background: rgba(0, 0, 0, 0.5);
  686. position: fixed;
  687. top: 0;
  688. left: 0;
  689. }
  690. .timeLeftActive {
  691. background: #FFFFFF;
  692. }
  693. .timeMain {
  694. width: 100vw;
  695. height: 70vh;
  696. margin-top: 30vh;
  697. background: #FFFFFF;
  698. border-radius: 24rpx 24rpx 0px 0px;
  699. }
  700. .timesfNo {
  701. background: #F5F5F5;
  702. }
  703. .timesfActive {
  704. background: #FF4F00;
  705. }
  706. .timesfActive .timeSfNum {
  707. color: #FFFFFF;
  708. }
  709. .timesfActive .timeyy {
  710. color: #FFFFFF;
  711. }
  712. .timeTop {
  713. display: flex;
  714. line-height: 90rpx;
  715. padding-left: 24rpx;
  716. padding-right: 24rpx;
  717. justify-content: space-between;
  718. }
  719. .timeTopTitle {
  720. font-size: 30rpx;
  721. font-family: PingFangSC-Medium, PingFang SC;
  722. font-weight: 600;
  723. color: #3C3C3C;
  724. }
  725. .close {
  726. color: #999999;
  727. font-size: 30rpx;
  728. padding-left: 30rpx;
  729. }
  730. .timeCont {
  731. height: calc(70vh - 210rpx);
  732. }
  733. .timeSv {
  734. height: calc(70vh - 210rpx);
  735. }
  736. .timeLeft2 {
  737. width: 162rpx;
  738. background: #F4F5F7;
  739. border-top: 1px soid #F4F5F7;
  740. border-right: 1px soid #F4F5F7;
  741. }
  742. .timeRight2 {
  743. width: 588rpx;
  744. }
  745. .timesf {
  746. width: 165rpx;
  747. height: 98rpx;
  748. border-radius: 7rpx;
  749. border: 2rpx solid #EEEEEE;
  750. text-align: center;
  751. margin-left: 20rpx;
  752. margin-bottom: 24rpx;
  753. }
  754. .timeBottom {
  755. width: 750rpx;
  756. height: 120rpx;
  757. background: #FFFFFF;
  758. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  759. display: flex;
  760. align-items: center;
  761. }
  762. .timerightBox {
  763. display: flex;
  764. flex-wrap: wrap;
  765. }
  766. .timeCont {
  767. display: flex;
  768. }
  769. .timeSfNum {
  770. color: #666666;
  771. font-size: 28rpx;
  772. padding-top: 15rpx;
  773. }
  774. .timeyy {
  775. font-size: 24rpx;
  776. color: #999999;
  777. }
  778. .timecomplete {
  779. width: 690rpx;
  780. height: 74rpx;
  781. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  782. border-radius: 37rpx;
  783. line-height: 74rpx;
  784. text-align: center;
  785. font-size: 30rpx;
  786. color: #FFFFFF;
  787. margin-left: 30rpx;
  788. }
  789. .timeleftLine {
  790. font-size: 30rpx;
  791. color: #999999;
  792. text-align: center;
  793. padding: 28rpx 10rpx;
  794. border-bottom: 1px solid #EEEEEE;
  795. }
  796. </style>