oldhistoryDetail.vue 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'消费明细'" ></homenav>
  4. <view class="contentBox">
  5. <view class="top" :style="{background:'#'+themeColor}">
  6. <view class="orderState">
  7. <image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;">
  8. </image>
  9. <view class="stateBox" >
  10. <!-- 0待施工(已保存)1施工中(已派工)2已完工 3已质检 4 已作废 -->
  11. <view class="SheetState" >{{orderData.checkoutState?orderData.checkoutState:''}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 店铺信息 -->
  16. <view class="shopBox">
  17. <image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  18. <view class="shopCont">
  19. <view class="shopName">{{orderData.shopName}}</view>
  20. </view>
  21. </view>
  22. <!-- 订单信息 -->
  23. <view class="information">
  24. <view class="carMes">
  25. <view class="plate">{{orderData.plateNumber}}</view>
  26. <view class="mileage" v-if="orderData.currentMileage>0">
  27. {{orderData.currentMileage}}km
  28. </view>
  29. </view>
  30. <view class="informationLine">
  31. <view class="informationTxt">姓名:</view>
  32. <view class="informationNum">{{orderData.customerName}}</view>
  33. </view>
  34. <view class="informationLine">
  35. <view class="informationTxt">手机号:</view>
  36. <view class="informationNum">{{orderData.customerPhone}}</view>
  37. </view>
  38. <view class="informationLine">
  39. <view class="informationTxt">单号:</view>
  40. <view class="informationNum">{{orderData.code}}</view>
  41. </view>
  42. <view class="informationLine">
  43. <view class="informationTxt">接车时间:</view>
  44. <view class="informationNum">{{orderData.billDate}}</view>
  45. </view>
  46. <view class="informationLine">
  47. <view class="informationTxt">服务顾问:</view>
  48. <view class="informationNum">{{orderData.pickName?orderData.pickName:''}}</view>
  49. </view>
  50. <view class="informationLine" v-if="Comment">
  51. <view class="informationTxt">备注:</view>
  52. <view class="informationNum" v-if="orderData.comment">{{orderData.comment}}
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 项目明细 -->
  57. <view class="detailedBox itemBox" v-if=" orderData.listItems.length!=0">
  58. <view class="detailedTitle">项目</view>
  59. <view class="detailedLineBox">
  60. <view class="detailedLine" v-for="(item,index) in orderData.listItems">
  61. <view class="detailedName"><span v-if="item.CardDetailID" class="kaColor">卡</span>{{item.ItemName}}
  62. </view>
  63. <view class="secondBox" :class="{noLine:index == orderData.listItems.length-1}">
  64. <view>
  65. <view class="comment" v-if="ItemComment&&item.Comment">{{item.Comment}}</view>
  66. </view>
  67. <view class="secondRight">
  68. <!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
  69. <view class="price" v-if="ItemMoney&&item.RealMoney">
  70. <span>¥</span>
  71. {{item.RealMoney}}
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. <!-- 商品明细-->
  79. <view class="detailedBox itemBox" v-if="orderData.listParts.length!=0">
  80. <view class="detailedTitle">商品</view>
  81. <view class="detailedLineBox">
  82. <view class="detailedLine" v-for="(item,index) in orderData.listParts">
  83. <view class="goodTop">
  84. <view class="detailedName"><span v-if="item.CardDetailID"
  85. class="kaColor">卡</span>{{item.GoodsName}}</view>
  86. <view class="qty">x{{item.SaleQty}}</view>
  87. </view>
  88. <view class="secondBox" :class="{noLine:index == orderData.listParts.length-1}">
  89. <view>
  90. <view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
  91. </view>
  92. <view class="secondRight">
  93. <!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
  94. <view class="price" v-if="ItemMoney&&item.RealMoney">
  95. <span>¥</span>
  96. {{item.RealMoney}}
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. </view>
  102. </view>
  103. <!-- 费用明细 -->
  104. <view class="goodscost"
  105. v-if=" TotalDiscountMoney ||ReceiptsMoney">
  106. <view class="detailedTitle">费用明细</view>
  107. <view class="goodscostLine" v-if="TotalDiscountMoney">
  108. <view class="goodscostTxt">整单优惠</view>
  109. <view class="goodsCostNum">¥{{orderData.discountMoney?orderData.discountMoney:0}}</view>
  110. </view>
  111. <view class="goodscostLine" v-if="ReceiptsMoney">
  112. <view class="goodscostTxt">金额</view>
  113. <view class="goodsCostNum">¥{{orderData.checkoutMoney?orderData.checkoutMoney:0}}</view>
  114. </view>
  115. </view>
  116. <!-- 手机号授权 -->
  117. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  118. <view class="authorizCont" @click.stop="">
  119. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  120. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  121. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  122. @getphonenumber="decryptPhoneNumber">授权</button>
  123. </view>
  124. <view style="text-align: center;padding-top: 56rpx;">
  125. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  126. </view>
  127. </view>
  128. </view>
  129. <view v-if="appraise == true && orderData.billsheet.PayState == 2" class="bottom">
  130. <view
  131. v-if="(orderData.billsheet.EvaluateState == 0) && (lastDay <= 30) && appraise == true && orderData.billsheet.PayState == 2"
  132. @click.stop="goAppraise()" class="ping">评价</view>
  133. <view v-if="orderData.billsheet.EvaluateState == 1" @click.stop="goAppraiseDetail()" class="kan">查看评价</view>
  134. </view>
  135. </view>
  136. </template>
  137. <script>
  138. import homenav from "../../components/homenav/nav.vue"
  139. export default {
  140. components: {
  141. homenav
  142. },
  143. data() {
  144. return {
  145. location: '',
  146. id: '',
  147. orderData: '',
  148. themeColor: '',
  149. authorizShow: false,
  150. userInfo: '',
  151. ext: '',
  152. wxOpenData: '',
  153. appraise: false,
  154. lastDay: '',
  155. // 权限
  156. FaultDescription: false, //故障描述
  157. RepairDescription: false, //维修建议
  158. Comment: false, //备注
  159. ItemMoney: false, //项目、商品金额
  160. ItemComment: false, //项目备注
  161. GoodsComment: false, //商品备注
  162. AmountMoney: false, //应收总计
  163. TotalDiscountMoney: false, //优惠总计
  164. CardMoneyT: false, //计次卡冲销
  165. CardMoneyC: false, //储值卡冲销
  166. ReceiptsMoney: false, //支付金额
  167. iStatusBarHeight:'',
  168. }
  169. },
  170. onLoad(opt) {
  171. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  172. this.id = opt.id
  173. this.themeColor = uni.getStorageSync("themeColor");
  174. this.userInfo = this.$store.state.userInfo;
  175. this.ext = this.$common.getExtStoreId();
  176. if (this.userInfo) {
  177. this.getData()
  178. } else {
  179. this.$common.automaticlogin().then(val => {
  180. this.userInfo = this.$store.state.userInfo;
  181. this.wxOpenData = this.$store.state.wxOpenData;
  182. this.themeColor = uni.getStorageSync("themeColor");
  183. this.getData()
  184. if(!this.userInfo){
  185. this.authorizShow=true
  186. }
  187. })
  188. }
  189. this.myPower();
  190. this.showPower();
  191. },
  192. methods: {
  193. //显示权限
  194. showPower() {
  195. this.$http('openweiXinCardInfoController/getShowSetting', {
  196. }, 'GET').then(res => {
  197. // 权限
  198. // FaultDescription:false,//故障描述
  199. // RepairDescription:false,//维修建议
  200. // Comment:false,//备注
  201. // ItemMoney:false,//项目、商品金额
  202. // ItemComment:false,//项目备注
  203. // GoodsComment:false,//商品备注
  204. // AmountMoney:false,//应收总计
  205. // TotalDiscountMoney:false,//优惠总计
  206. // CardMoneyT:false,//计次卡冲销
  207. // CardMoneyC:false,//储值卡冲销
  208. // ReceiptsMoney:false,//支付金额
  209. var list = res.data
  210. list.forEach((item, index) => {
  211. if (item.fieldValue == 'FaultDescription') {
  212. this.FaultDescription = item.isChecked
  213. }
  214. if (item.fieldValue == 'RepairDescription') {
  215. this.RepairDescription = item.isChecked
  216. }
  217. if (item.fieldValue == 'Comment') {
  218. this.Comment = item.isChecked
  219. }
  220. if (item.fieldValue == 'ItemMoney') {
  221. this.ItemMoney = item.isChecked
  222. }
  223. if (item.fieldValue == 'ItemComment') {
  224. this.ItemComment = item.isChecked
  225. }
  226. if (item.fieldValue == 'GoodsComment') {
  227. this.GoodsComment = item.isChecked
  228. }
  229. if (item.fieldValue == 'AmountMoney') {
  230. this.AmountMoney = item.isChecked
  231. }
  232. if (item.fieldValue == 'CardMoneyT') {
  233. this.CardMoneyT = item.isChecked
  234. }
  235. if (item.fieldValue == 'CardMoneyC') {
  236. this.CardMoneyC = item.isChecked
  237. }
  238. if (item.fieldValue == 'ReceiptsMoney') {
  239. this.ReceiptsMoney = item.isChecked
  240. }
  241. if (item.fieldValue == 'TotalDiscountMoney') {
  242. this.TotalDiscountMoney = item.isChecked
  243. }
  244. })
  245. })
  246. },
  247. //评价权限
  248. myPower() {
  249. this.$http('openMiniEvaluate/getEvaluateSetting', {
  250. }, 'GET').then(res => {
  251. // var list = res.data.Items
  252. this.appraise = res.data
  253. })
  254. },
  255. goAppraiseDetail(item) {
  256. uni.navigateTo({
  257. url: 'myAppraiseDetail?sheetId=' + this.orderData.billsheet.id
  258. })
  259. },
  260. goAppraise(item) {
  261. uni.navigateTo({
  262. url: 'appraise?sheetID=' + this.orderData.billsheet.id + '&shopID=' + this.orderData.billsheet
  263. .shopID
  264. })
  265. },
  266. decryptPhoneNumber: function(e) {
  267. console.log(e);
  268. this.code = e.detail.code
  269. this.wxPhoneLogin()
  270. this.authorizShow = false;
  271. },
  272. wxPhoneLogin() {
  273. var that = this;
  274. this.$http('miniApp2/sys/wxPhoneLogin', {
  275. appId: this.ext.appId,
  276. unionId: this.ext.unionId,
  277. code: this.code,
  278. openId: this.wxOpenData.openid
  279. }, 'POST').then(res => {
  280. var data = res.data;
  281. if(data.newCustomer){
  282. uni.showModal({
  283. title: '提示',
  284. content: data.newCustomerMsg,
  285. success: function(resTK) {
  286. }
  287. });
  288. var token=res.data.token
  289. data.loginInfo={}
  290. data.loginInfo.token=token
  291. this.$store.commit('mutationswxOpenData', data);
  292. return false;
  293. }
  294. if (data.loginInfo) {
  295. this.userInfo = data.loginInfo.openUser;
  296. this.wxOpenData = data.loginInfo;
  297. this.$store.commit('mutationswxOpenData', data)
  298. this.$store.commit('mutationsuserInfo', this.userInfo)
  299. this.getData()
  300. }
  301. })
  302. },
  303. map() {
  304. console.log("打开地图")
  305. var that = this;
  306. if (!that.orderData.billsheet.lat || !that.orderData.billsheet.lng) {
  307. uni.showToast({
  308. title: '该店铺未设置定位',
  309. icon: 'none',
  310. duration: 3000
  311. });
  312. } else {
  313. uni.openLocation({
  314. latitude: Number(that.orderData.billsheet.lat),
  315. longitude: Number(that.orderData.billsheet.lng),
  316. name: that.orderData.billsheet.ShopName,
  317. address: that.orderData.billsheet.Address,
  318. success: function() {
  319. console.log('success');
  320. },
  321. fail(err) {
  322. console.log(err)
  323. }
  324. });
  325. }
  326. },
  327. call() {
  328. uni.makePhoneCall({
  329. phoneNumber: this.orderData.billsheet.shopMobilePhone
  330. });
  331. },
  332. getData() {
  333. let that = this
  334. uni.showLoading({
  335. title: '加载中'
  336. });
  337. this.$http('openweiXinCardInfoController/queryConsumptionDetailOld', {
  338. // lat: this.location.lat,
  339. // lng: this.location.lng,
  340. id: this.id,
  341. }, 'POST').then(res => {
  342. uni.hideLoading();
  343. this.orderData = res.data;
  344. console.log('data===', this.orderData);
  345. })
  346. },
  347. //时间对比
  348. getDateBeforeNow(stringTime) {
  349. console.log("传参未格式化", stringTime);
  350. stringTime = new Date(stringTime.replace(/-/g, '/'))
  351. // 统一单位换算
  352. var minute = 1000 * 60;
  353. var hour = minute * 60;
  354. var day = hour * 24;
  355. var week = day * 7;
  356. var month = day * 30;
  357. var year = month * 12;
  358. var time1 = new Date().getTime(); //当前的时间戳 console.log("当前时间", time1);
  359. // 对时间进行毫秒单位转换 var time2 = new Date(stringTime).getTime(); //指定时间的时间戳
  360. console.log("传过来的时间", time2);
  361. var time = time1 - time2;
  362. console.log("计算后的时间", time);
  363. var result =
  364. null; // if (time < 0) { // // alert("传过来的时间的时间不能晚于当前时间!"); // result = stringTime; // } else if (time / year >= 1) {
  365. // result = parseInt(time / year) + "年前";
  366. // } else if (time / month >= 1) {
  367. // result = parseInt(time / month) + "月前";
  368. // } else if (time / week >= 1) { // result = parseInt(time / week) + "周前"; // } else if (time / day >= 1) {
  369. // result = parseInt(time / day) + "天前";
  370. // } else if (time / hour >= 1) { // result = parseInt(time / hour) + "小时前";
  371. // } else if (time / minute >= 1) {
  372. // result = parseInt(time / minute) + "分钟前"; // } else {
  373. // result = "刚刚"; // }
  374. if (time < 0) {
  375. // alert("传过来的时间的时间不能晚于当前时间!");
  376. result = -1;
  377. } else if (time / day >= 0) {
  378. result = parseInt(time / day); //多少天前
  379. }
  380. console.log("多少天前", result);
  381. return result;
  382. },
  383. goback() {
  384. uni.navigateBack({})
  385. },
  386. },
  387. onPullDownRefresh() {
  388. this.getData()
  389. setTimeout(function() {
  390. uni.stopPullDownRefresh();
  391. }, 1000);
  392. },
  393. }
  394. </script>
  395. <style scoped>
  396. .box {
  397. min-height: 100vh;
  398. background: #F4F5F7;
  399. padding-bottom: constant(safe-area-inset-bottom);
  400. padding-bottom: env(safe-area-inset-bottom);
  401. }
  402. .contentBox {
  403. background: #F4F5F7;
  404. padding-bottom: 100rpx;
  405. }
  406. .top {
  407. height: 190rpx;
  408. background: #FF0000;
  409. }
  410. .stateBox {
  411. display: flex;
  412. }
  413. .orderState {
  414. display: flex;
  415. justify-content: center;
  416. align-items: center;
  417. padding-top: 40rpx;
  418. }
  419. .SheetState {
  420. display: flex;
  421. justify-content: center;
  422. font-size: 36rpx;
  423. font-weight: 500;
  424. color: #FFFFFF;
  425. margin-left: 15rpx;
  426. }
  427. .timeEditImg {
  428. width: 25rpx;
  429. height: 25rpx;
  430. padding-left: 20rpx;
  431. }
  432. .shopBoximg {
  433. width: 40rpx;
  434. height: 40rpx;
  435. }
  436. .shopRightImg {
  437. width: 44rpx;
  438. height: 45rpx;
  439. }
  440. .shopsx {
  441. width: 1px;
  442. height: 50rpx;
  443. background: #EEEEEE;
  444. margin-top: 30rpx;
  445. margin-left: 28rpx;
  446. }
  447. .shopBox {
  448. display: flex;
  449. padding: 30rpx 20rpx;
  450. margin: 0rpx 24rpx;
  451. margin-top: -60rpx;
  452. background-color: #FFFFFF;
  453. border-radius: 10rpx;
  454. }
  455. .shopCont {
  456. width: 405rpx;
  457. padding-left: 20rpx;
  458. }
  459. .shopName {
  460. font-size: 30rpx;
  461. font-weight: bold;
  462. color: #3C3C3C;
  463. line-height: 45rpx;
  464. }
  465. .Address {
  466. color: #999999;
  467. font-size: 24rpx;
  468. margin-top: 10rpx;
  469. }
  470. .shopRihgtTxt {
  471. color: #999999;
  472. font-size: 24rpx;
  473. }
  474. .shopRightBox {
  475. padding-left: 28rpx;
  476. }
  477. .peopleCont {
  478. font-size: 28rpx;
  479. color: #3C3C3C;
  480. padding-left: 20rpx;
  481. }
  482. .people {
  483. display: flex;
  484. padding-left: 20rpx;
  485. padding-top: 30rpx;
  486. padding-bottom: 36rpx;
  487. }
  488. .PlateNumberBox {
  489. display: flex;
  490. padding-left: 20rpx;
  491. padding-bottom: 30rpx;
  492. }
  493. .PlateNumbercx {
  494. font-size: 28rpx;
  495. color: #3C3C3C;
  496. padding-left: 20rpx;
  497. }
  498. .PlateNumber {
  499. width: 130rpx;
  500. height: 32rpx;
  501. border-radius: 4rpx;
  502. border: 1px solid #F19D01;
  503. line-height: 32rpx;
  504. text-align: center;
  505. font-size: 22rpx;
  506. color: #F19D01;
  507. margin-left: 26rpx;
  508. }
  509. .PlateNumberBoxTop {
  510. display: flex;
  511. }
  512. .CarModel {
  513. font-size: 26rpx;
  514. color: #999999;
  515. padding-left: 20rpx;
  516. padding-top: 6rpx;
  517. padding-right: 20rpx;
  518. padding-bottom: 15rpx;
  519. width: 600rpx;
  520. }
  521. .detailedBox {
  522. background: #FFFFFF;
  523. border-radius: 10px;
  524. margin: 20rpx 24rpx;
  525. padding-bottom: 20rpx;
  526. }
  527. .itemBox {
  528. margin-top: 20rpx;
  529. }
  530. .carMes {
  531. padding: 23rpx 20rpx;
  532. display: flex;
  533. align-items: center;
  534. justify-content: flex-start;
  535. border-bottom: 1rpx solid #EEEEEE;
  536. }
  537. .plate {
  538. font-size: 30rpx;
  539. color: #3C3C3C;
  540. font-weight: bold;
  541. margin-right: 20rpx;
  542. }
  543. .mileage {
  544. font-size: 24rpx;
  545. color: #F19D01;
  546. padding: 0rpx 10rpx;
  547. border: 1rpx solid #F19D01;
  548. border-radius: 4rpx;
  549. height: 36rpx;
  550. }
  551. .detailedTitle {
  552. padding: 23rpx 20rpx;
  553. display: flex;
  554. text-align: center;
  555. align-content: flex-start;
  556. border-bottom: 1rpx solid #EEEEEE;
  557. font-size: 30rpx;
  558. font-weight: bold;
  559. color: #3C3C3C;
  560. }
  561. .detailedLine {
  562. padding: 20rpx 20rpx 0rpx;
  563. }
  564. .detailedImg {
  565. width: 120rpx;
  566. height: 120rpx;
  567. border-radius: 10rpx;
  568. }
  569. .detailedName {
  570. font-size: 26rpx;
  571. color: #3C3C3C;
  572. }
  573. .kaColor {
  574. background: #F19D01;
  575. border-radius: 4rpx;
  576. color: #FFFFFF;
  577. font-size: 24rpx;
  578. margin-right: 8rpx;
  579. padding: 3rpx 5rpx;
  580. }
  581. .qty {
  582. font-size: 24rpx;
  583. font-weight: 400;
  584. color: #999999;
  585. }
  586. .secondBox {
  587. display: flex;
  588. padding: 20rpx 0rpx;
  589. justify-content: space-between;
  590. align-items: baseline;
  591. border-bottom: 1rpx solid #EEEEEE;
  592. }
  593. .noLine {
  594. border-bottom: 0 solid #FFFFFF;
  595. }
  596. .comment {
  597. margin-right: 20rpx;
  598. font-size: 24rpx;
  599. font-weight: 400;
  600. color: #999999;
  601. flex-grow: 1;
  602. }
  603. .secondRight {
  604. display: flex;
  605. justify-content: flex-end;
  606. align-items: baseline;
  607. }
  608. .grayPrice {
  609. font-size: 24rpx;
  610. font-weight: 400;
  611. color: #999999;
  612. text-decoration: line-through;
  613. }
  614. .price {
  615. font-size: 32rpx;
  616. font-weight: 500;
  617. color: #FF0000;
  618. display: flex;
  619. align-items: center;
  620. }
  621. span {
  622. font-size: 24rpx;
  623. }
  624. .goodTop {
  625. display: flex;
  626. justify-content: space-between;
  627. }
  628. .goodscost {
  629. background: #FFFFFF;
  630. border-radius: 10px;
  631. margin: 20rpx 24rpx;
  632. padding-bottom: 20rpx;
  633. }
  634. .goodscostLine {
  635. display: flex;
  636. justify-content: space-between;
  637. font-size: 26rpx;
  638. padding: 20rpx 20rpx;
  639. color: #333333;
  640. }
  641. .goodsCostNum {
  642. color: #FF0000;
  643. font-weight: bold;
  644. }
  645. .information {
  646. width: 702rpx;
  647. background: #FFFFFF;
  648. border-radius: 10px;
  649. margin-left: 24rpx;
  650. margin-top: 20rpx;
  651. padding: 0rpx 0 15rpx 0;
  652. }
  653. .informationLine {
  654. display: flex;
  655. font-size: 26rpx;
  656. padding: 15rpx 20rpx;
  657. }
  658. .informationTxt {
  659. width: 190rpx;
  660. color: #999999;
  661. }
  662. .informationNum {
  663. color: #333333;
  664. width: calc(100vw - 190rpx);
  665. }
  666. .copyBtn {
  667. width: 86rpx;
  668. height: 40rpx;
  669. background: #F4F5F7;
  670. border-radius: 20rpx;
  671. font-size: 24rpx;
  672. color: #333333;
  673. text-align: center;
  674. line-height: 40rpx;
  675. margin-left: 20rpx;
  676. }
  677. .orderBottom {
  678. width: 750rpx;
  679. height: 98rpx;
  680. background: #FFFFFF;
  681. position: fixed;
  682. left: 0;
  683. bottom: 0;
  684. display: flex;
  685. justify-content: flex-end;
  686. }
  687. .cancelBtn {
  688. width: 150rpx;
  689. height: 56rpx;
  690. border-radius: 36rpx;
  691. border: 2rpx solid #DDDDDD;
  692. text-align: center;
  693. line-height: 56rpx;
  694. font-size: 28rpx;
  695. color: #3C3C3C;
  696. margin-top: 21rpx;
  697. margin-right: 16rpx;
  698. margin-left: 20rpx;
  699. }
  700. .payBtn {
  701. width: 150rpx;
  702. height: 56rpx;
  703. border-radius: 36rpx;
  704. border: 2rpx solid #FF4F00;
  705. text-align: center;
  706. line-height: 56rpx;
  707. font-size: 28rpx;
  708. color: #FF4F00;
  709. margin-top: 21rpx;
  710. margin-right: 16rpx;
  711. margin-left: 20rpx;
  712. }
  713. .timeBox2 {
  714. width: 100vw;
  715. height: 100vh;
  716. background: rgba(0, 0, 0, 0.5);
  717. position: fixed;
  718. top: 0;
  719. left: 0;
  720. }
  721. .timeLeftActive {
  722. background: #FFFFFF;
  723. }
  724. .timeMain {
  725. width: 100vw;
  726. height: 70vh;
  727. margin-top: 30vh;
  728. background: #FFFFFF;
  729. border-radius: 24rpx 24rpx 0px 0px;
  730. }
  731. .timesfNo {
  732. background: #F5F5F5;
  733. }
  734. .timesfActive {
  735. background: #FF4F00;
  736. }
  737. .timesfActive .timeSfNum {
  738. color: #FFFFFF;
  739. }
  740. .timesfActive .timeyy {
  741. color: #FFFFFF;
  742. }
  743. .topBox {
  744. padding: 20rpx 24rpx;
  745. }
  746. .timeTop {
  747. display: flex;
  748. line-height: 90rpx;
  749. padding-left: 24rpx;
  750. padding-right: 24rpx;
  751. justify-content: space-between;
  752. }
  753. .timeTopTitle {
  754. font-size: 30rpx;
  755. font-family: PingFangSC-Medium, PingFang SC;
  756. font-weight: 600;
  757. color: #3C3C3C;
  758. }
  759. .close {
  760. color: #999999;
  761. font-size: 30rpx;
  762. padding-left: 30rpx;
  763. }
  764. .timeCont {
  765. height: calc(70vh - 210rpx);
  766. }
  767. .timeSv {
  768. height: calc(70vh - 210rpx);
  769. }
  770. .timeLeft2 {
  771. width: 162rpx;
  772. background: #F4F5F7;
  773. border-top: 1px soid #F4F5F7;
  774. border-right: 1px soid #F4F5F7;
  775. }
  776. .timeRight2 {
  777. width: 588rpx;
  778. }
  779. .timesf {
  780. width: 165rpx;
  781. height: 98rpx;
  782. border-radius: 7rpx;
  783. border: 2rpx solid #EEEEEE;
  784. text-align: center;
  785. margin-left: 20rpx;
  786. margin-bottom: 24rpx;
  787. }
  788. .timeBottom {
  789. width: 750rpx;
  790. height: 120rpx;
  791. background: #FFFFFF;
  792. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  793. display: flex;
  794. align-items: center;
  795. }
  796. .timerightBox {
  797. display: flex;
  798. flex-wrap: wrap;
  799. }
  800. .timeCont {
  801. display: flex;
  802. }
  803. .timeSfNum {
  804. color: #666666;
  805. font-size: 28rpx;
  806. padding-top: 15rpx;
  807. }
  808. .timeyy {
  809. font-size: 24rpx;
  810. color: #999999;
  811. }
  812. .timecomplete {
  813. width: 690rpx;
  814. height: 74rpx;
  815. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  816. border-radius: 37rpx;
  817. line-height: 74rpx;
  818. text-align: center;
  819. font-size: 30rpx;
  820. color: #FFFFFF;
  821. margin-left: 30rpx;
  822. }
  823. .timeleftLine {
  824. font-size: 30rpx;
  825. color: #999999;
  826. text-align: center;
  827. padding: 28rpx 10rpx;
  828. border-bottom: 1px solid #EEEEEE;
  829. }
  830. .yuyueBox {
  831. background: #FFFFFF;
  832. border-radius: 10rpx;
  833. margin-left: 24rpx;
  834. margin-right: 24rpx;
  835. }
  836. .yuyueTime {
  837. display: flex;
  838. padding-left: 20rpx;
  839. padding-top: 30rpx;
  840. padding-bottom: 36rpx;
  841. align-items: center;
  842. }
  843. .yuyueState {
  844. display: flex;
  845. padding-left: 20rpx;
  846. padding-top: 30rpx;
  847. padding-bottom: 36rpx;
  848. }
  849. .maBox {
  850. display: flex;
  851. justify-content: space-between;
  852. padding: 24rpx 20rpx;
  853. }
  854. .querenMa {
  855. margin: 20rpx 0;
  856. padding-bottom: 30rpx;
  857. }
  858. .maBoximg {
  859. width: 308rpx;
  860. height: 308rpx;
  861. margin: 30rpx 197rpx;
  862. }
  863. .rightShou {
  864. display: flex;
  865. justify-content: flex-start;
  866. align-items: center;
  867. }
  868. .authorizBox {
  869. width: 100vw;
  870. height: 100vh;
  871. background: rgba(0, 0, 0, 0.5);
  872. position: fixed;
  873. top: 0;
  874. left: 0;
  875. }
  876. .authorizCont {
  877. margin-top: 30vh;
  878. width: 564rpx;
  879. height: 408rpx;
  880. background: #FFFFFF;
  881. border-radius: 24rpx;
  882. margin-left: 93rpx;
  883. position: relative;
  884. }
  885. .authorizCloseImg {
  886. width: 62rpx;
  887. height: 62rpx;
  888. }
  889. .sqLogoBox {
  890. width: 180rpx;
  891. height: 180rpx;
  892. background: #FFFFFF;
  893. border-radius: 90rpx;
  894. text-align: center;
  895. position: absolute;
  896. top: -50rpx;
  897. left: 192rpx;
  898. }
  899. .authorizName {
  900. color: #333333;
  901. line-height: 42rpx;
  902. font-size: 30rpx;
  903. text-align: center;
  904. padding-top: 58rpx;
  905. }
  906. .authorizMs {
  907. color: #999999;
  908. line-height: 36rpx;
  909. font-size: 26rpx;
  910. width: 452rpx;
  911. padding-top: 24rpx;
  912. text-align: center;
  913. margin-left: 56rpx;
  914. }
  915. .authorizContbutton {
  916. width: 422rpx;
  917. height: 88rpx;
  918. background: #D53533;
  919. border-radius: 44rpx;
  920. line-height: 88rpx;
  921. text-align: center;
  922. font-size: 30rpx;
  923. color: #FFFFFF;
  924. margin-top: 62rpx;
  925. margin-left: 71rpx;
  926. }
  927. .bottom {
  928. position: fixed;
  929. width: 100%;
  930. padding: 20rpx 24rpx;
  931. right: 0;
  932. bottom: 0;
  933. background: #ffffff;
  934. font-size: 28rpx;
  935. display: flex;
  936. justify-content: flex-end;
  937. height: 58rpx;
  938. padding-bottom: constant(safe-area-inset-bottom);
  939. padding-bottom: env(safe-area-inset-bottom);
  940. }
  941. .ping {
  942. text-align: center;
  943. color: #FF4F00;
  944. width: 150rpx;
  945. height: 56rpx;
  946. line-height: 56rpx;
  947. border-radius: 36rpx;
  948. border: 2rpx solid #FF4F00;
  949. }
  950. .kan {
  951. text-align: center;
  952. color: #3C3C3C;
  953. width: 150rpx;
  954. height: 56rpx;
  955. line-height: 56rpx;
  956. border-radius: 36rpx;
  957. border: 2rpx solid #DDDDDD;
  958. }
  959. </style>