historyDetail.vue 18 KB

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