oldhistoryDetail.vue 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142
  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}}</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. })
  242. })
  243. },
  244. //评价权限
  245. myPower() {
  246. this.$http('openMiniEvaluate/getEvaluateSetting', {
  247. }, 'GET').then(res => {
  248. // var list = res.data.Items
  249. this.appraise = res.data
  250. })
  251. },
  252. goAppraiseDetail(item) {
  253. uni.navigateTo({
  254. url: 'myAppraiseDetail?sheetId=' + this.orderData.billsheet.id
  255. })
  256. },
  257. goAppraise(item) {
  258. uni.navigateTo({
  259. url: 'appraise?sheetID=' + this.orderData.billsheet.id + '&shopID=' + this.orderData.billsheet
  260. .shopID
  261. })
  262. },
  263. decryptPhoneNumber: function(e) {
  264. console.log(e);
  265. this.code = e.detail.code
  266. this.wxPhoneLogin()
  267. this.authorizShow = false;
  268. },
  269. wxPhoneLogin() {
  270. var that = this;
  271. this.$http('miniApp2/sys/wxPhoneLogin', {
  272. appId: this.ext.appId,
  273. unionId: this.ext.unionId,
  274. code: this.code,
  275. openId: this.wxOpenData.openid
  276. }, 'POST').then(res => {
  277. var data = res.data;
  278. if (data.loginInfo) {
  279. this.userInfo = data.loginInfo.openUser;
  280. this.wxOpenData = data.loginInfo;
  281. this.$store.commit('mutationswxOpenData', data)
  282. this.$store.commit('mutationsuserInfo', this.userInfo)
  283. this.getData()
  284. }
  285. })
  286. },
  287. map() {
  288. console.log("打开地图")
  289. var that = this;
  290. if (!that.orderData.billsheet.lat || !that.orderData.billsheet.lng) {
  291. uni.showToast({
  292. title: '该店铺未设置定位',
  293. icon: 'none',
  294. duration: 3000
  295. });
  296. } else {
  297. uni.openLocation({
  298. latitude: Number(that.orderData.billsheet.lat),
  299. longitude: Number(that.orderData.billsheet.lng),
  300. name: that.orderData.billsheet.ShopName,
  301. address: that.orderData.billsheet.Address,
  302. success: function() {
  303. console.log('success');
  304. },
  305. fail(err) {
  306. console.log(err)
  307. }
  308. });
  309. }
  310. },
  311. call() {
  312. uni.makePhoneCall({
  313. phoneNumber: this.orderData.billsheet.shopMobilePhone
  314. });
  315. },
  316. getData() {
  317. let that = this
  318. uni.showLoading({
  319. title: '加载中'
  320. });
  321. this.$http('openweiXinCardInfoController/queryConsumptionDetailOld', {
  322. // lat: this.location.lat,
  323. // lng: this.location.lng,
  324. id: this.id,
  325. }, 'POST').then(res => {
  326. uni.hideLoading();
  327. this.orderData = res.data;
  328. console.log('data===', this.orderData);
  329. })
  330. },
  331. //时间对比
  332. getDateBeforeNow(stringTime) {
  333. console.log("传参未格式化", stringTime);
  334. stringTime = new Date(stringTime.replace(/-/g, '/'))
  335. // 统一单位换算
  336. var minute = 1000 * 60;
  337. var hour = minute * 60;
  338. var day = hour * 24;
  339. var week = day * 7;
  340. var month = day * 30;
  341. var year = month * 12;
  342. var time1 = new Date().getTime(); //当前的时间戳 console.log("当前时间", time1);
  343. // 对时间进行毫秒单位转换 var time2 = new Date(stringTime).getTime(); //指定时间的时间戳
  344. console.log("传过来的时间", time2);
  345. var time = time1 - time2;
  346. console.log("计算后的时间", time);
  347. var result =
  348. null; // if (time < 0) { // // alert("传过来的时间的时间不能晚于当前时间!"); // result = stringTime; // } else if (time / year >= 1) {
  349. // result = parseInt(time / year) + "年前";
  350. // } else if (time / month >= 1) {
  351. // result = parseInt(time / month) + "月前";
  352. // } else if (time / week >= 1) { // result = parseInt(time / week) + "周前"; // } else if (time / day >= 1) {
  353. // result = parseInt(time / day) + "天前";
  354. // } else if (time / hour >= 1) { // result = parseInt(time / hour) + "小时前";
  355. // } else if (time / minute >= 1) {
  356. // result = parseInt(time / minute) + "分钟前"; // } else {
  357. // result = "刚刚"; // }
  358. if (time < 0) {
  359. // alert("传过来的时间的时间不能晚于当前时间!");
  360. result = -1;
  361. } else if (time / day >= 0) {
  362. result = parseInt(time / day); //多少天前
  363. }
  364. console.log("多少天前", result);
  365. return result;
  366. },
  367. goback() {
  368. uni.navigateBack({})
  369. },
  370. },
  371. onPullDownRefresh() {
  372. this.getData()
  373. setTimeout(function() {
  374. uni.stopPullDownRefresh();
  375. }, 1000);
  376. },
  377. }
  378. </script>
  379. <style scoped>
  380. .box {
  381. min-height: 100vh;
  382. background: #F4F5F7;
  383. padding-bottom: constant(safe-area-inset-bottom);
  384. padding-bottom: env(safe-area-inset-bottom);
  385. }
  386. .contentBox {
  387. background: #F4F5F7;
  388. padding-bottom: 100rpx;
  389. }
  390. .top {
  391. height: 190rpx;
  392. background: #FF0000;
  393. }
  394. .stateBox {
  395. display: flex;
  396. }
  397. .orderState {
  398. display: flex;
  399. justify-content: center;
  400. align-items: center;
  401. padding-top: 40rpx;
  402. }
  403. .SheetState {
  404. display: flex;
  405. justify-content: center;
  406. font-size: 36rpx;
  407. font-weight: 500;
  408. color: #FFFFFF;
  409. margin-left: 15rpx;
  410. }
  411. .timeEditImg {
  412. width: 25rpx;
  413. height: 25rpx;
  414. padding-left: 20rpx;
  415. }
  416. .shopBoximg {
  417. width: 40rpx;
  418. height: 40rpx;
  419. }
  420. .shopRightImg {
  421. width: 44rpx;
  422. height: 45rpx;
  423. }
  424. .shopsx {
  425. width: 1px;
  426. height: 50rpx;
  427. background: #EEEEEE;
  428. margin-top: 30rpx;
  429. margin-left: 28rpx;
  430. }
  431. .shopBox {
  432. display: flex;
  433. padding: 30rpx 20rpx;
  434. margin: 0rpx 24rpx;
  435. margin-top: -60rpx;
  436. background-color: #FFFFFF;
  437. border-radius: 10rpx;
  438. }
  439. .shopCont {
  440. width: 405rpx;
  441. padding-left: 20rpx;
  442. }
  443. .shopName {
  444. font-size: 30rpx;
  445. font-weight: bold;
  446. color: #3C3C3C;
  447. line-height: 45rpx;
  448. }
  449. .Address {
  450. color: #999999;
  451. font-size: 24rpx;
  452. margin-top: 10rpx;
  453. }
  454. .shopRihgtTxt {
  455. color: #999999;
  456. font-size: 24rpx;
  457. }
  458. .shopRightBox {
  459. padding-left: 28rpx;
  460. }
  461. .peopleCont {
  462. font-size: 28rpx;
  463. color: #3C3C3C;
  464. padding-left: 20rpx;
  465. }
  466. .people {
  467. display: flex;
  468. padding-left: 20rpx;
  469. padding-top: 30rpx;
  470. padding-bottom: 36rpx;
  471. }
  472. .PlateNumberBox {
  473. display: flex;
  474. padding-left: 20rpx;
  475. padding-bottom: 30rpx;
  476. }
  477. .PlateNumbercx {
  478. font-size: 28rpx;
  479. color: #3C3C3C;
  480. padding-left: 20rpx;
  481. }
  482. .PlateNumber {
  483. width: 130rpx;
  484. height: 32rpx;
  485. border-radius: 4rpx;
  486. border: 1px solid #F19D01;
  487. line-height: 32rpx;
  488. text-align: center;
  489. font-size: 22rpx;
  490. color: #F19D01;
  491. margin-left: 26rpx;
  492. }
  493. .PlateNumberBoxTop {
  494. display: flex;
  495. }
  496. .CarModel {
  497. font-size: 26rpx;
  498. color: #999999;
  499. padding-left: 20rpx;
  500. padding-top: 6rpx;
  501. padding-right: 20rpx;
  502. padding-bottom: 15rpx;
  503. width: 600rpx;
  504. }
  505. .detailedBox {
  506. background: #FFFFFF;
  507. border-radius: 10px;
  508. margin: 20rpx 24rpx;
  509. padding-bottom: 20rpx;
  510. }
  511. .itemBox {
  512. margin-top: 20rpx;
  513. }
  514. .carMes {
  515. padding: 23rpx 20rpx;
  516. display: flex;
  517. align-items: center;
  518. justify-content: flex-start;
  519. border-bottom: 1rpx solid #EEEEEE;
  520. }
  521. .plate {
  522. font-size: 30rpx;
  523. color: #3C3C3C;
  524. font-weight: bold;
  525. margin-right: 20rpx;
  526. }
  527. .mileage {
  528. font-size: 24rpx;
  529. color: #F19D01;
  530. padding: 0rpx 10rpx;
  531. border: 1rpx solid #F19D01;
  532. border-radius: 4rpx;
  533. height: 36rpx;
  534. }
  535. .detailedTitle {
  536. padding: 23rpx 20rpx;
  537. display: flex;
  538. text-align: center;
  539. align-content: flex-start;
  540. border-bottom: 1rpx solid #EEEEEE;
  541. font-size: 30rpx;
  542. font-weight: bold;
  543. color: #3C3C3C;
  544. }
  545. .detailedLine {
  546. padding: 20rpx 20rpx 0rpx;
  547. }
  548. .detailedImg {
  549. width: 120rpx;
  550. height: 120rpx;
  551. border-radius: 10rpx;
  552. }
  553. .detailedName {
  554. font-size: 26rpx;
  555. color: #3C3C3C;
  556. }
  557. .kaColor {
  558. background: #F19D01;
  559. border-radius: 4rpx;
  560. color: #FFFFFF;
  561. font-size: 24rpx;
  562. margin-right: 8rpx;
  563. padding: 3rpx 5rpx;
  564. }
  565. .qty {
  566. font-size: 24rpx;
  567. font-weight: 400;
  568. color: #999999;
  569. }
  570. .secondBox {
  571. display: flex;
  572. padding: 20rpx 0rpx;
  573. justify-content: space-between;
  574. align-items: baseline;
  575. border-bottom: 1rpx solid #EEEEEE;
  576. }
  577. .noLine {
  578. border-bottom: 0 solid #FFFFFF;
  579. }
  580. .comment {
  581. margin-right: 20rpx;
  582. font-size: 24rpx;
  583. font-weight: 400;
  584. color: #999999;
  585. flex-grow: 1;
  586. }
  587. .secondRight {
  588. display: flex;
  589. justify-content: flex-end;
  590. align-items: baseline;
  591. }
  592. .grayPrice {
  593. font-size: 24rpx;
  594. font-weight: 400;
  595. color: #999999;
  596. text-decoration: line-through;
  597. }
  598. .price {
  599. font-size: 32rpx;
  600. font-weight: 500;
  601. color: #FF0000;
  602. display: flex;
  603. align-items: center;
  604. }
  605. span {
  606. font-size: 24rpx;
  607. }
  608. .goodTop {
  609. display: flex;
  610. justify-content: space-between;
  611. }
  612. .goodscost {
  613. background: #FFFFFF;
  614. border-radius: 10px;
  615. margin: 20rpx 24rpx;
  616. padding-bottom: 20rpx;
  617. }
  618. .goodscostLine {
  619. display: flex;
  620. justify-content: space-between;
  621. font-size: 26rpx;
  622. padding: 20rpx 20rpx;
  623. color: #333333;
  624. }
  625. .goodsCostNum {
  626. color: #FF0000;
  627. font-weight: bold;
  628. }
  629. .information {
  630. width: 702rpx;
  631. background: #FFFFFF;
  632. border-radius: 10px;
  633. margin-left: 24rpx;
  634. margin-top: 20rpx;
  635. padding: 0rpx 0 15rpx 0;
  636. }
  637. .informationLine {
  638. display: flex;
  639. font-size: 26rpx;
  640. padding: 15rpx 20rpx;
  641. }
  642. .informationTxt {
  643. width: 190rpx;
  644. color: #999999;
  645. }
  646. .informationNum {
  647. color: #333333;
  648. width: calc(100vw - 190rpx);
  649. }
  650. .copyBtn {
  651. width: 86rpx;
  652. height: 40rpx;
  653. background: #F4F5F7;
  654. border-radius: 20rpx;
  655. font-size: 24rpx;
  656. color: #333333;
  657. text-align: center;
  658. line-height: 40rpx;
  659. margin-left: 20rpx;
  660. }
  661. .orderBottom {
  662. width: 750rpx;
  663. height: 98rpx;
  664. background: #FFFFFF;
  665. position: fixed;
  666. left: 0;
  667. bottom: 0;
  668. display: flex;
  669. justify-content: flex-end;
  670. }
  671. .cancelBtn {
  672. width: 150rpx;
  673. height: 56rpx;
  674. border-radius: 36rpx;
  675. border: 2rpx solid #DDDDDD;
  676. text-align: center;
  677. line-height: 56rpx;
  678. font-size: 28rpx;
  679. color: #3C3C3C;
  680. margin-top: 21rpx;
  681. margin-right: 16rpx;
  682. margin-left: 20rpx;
  683. }
  684. .payBtn {
  685. width: 150rpx;
  686. height: 56rpx;
  687. border-radius: 36rpx;
  688. border: 2rpx solid #FF4F00;
  689. text-align: center;
  690. line-height: 56rpx;
  691. font-size: 28rpx;
  692. color: #FF4F00;
  693. margin-top: 21rpx;
  694. margin-right: 16rpx;
  695. margin-left: 20rpx;
  696. }
  697. .timeBox2 {
  698. width: 100vw;
  699. height: 100vh;
  700. background: rgba(0, 0, 0, 0.5);
  701. position: fixed;
  702. top: 0;
  703. left: 0;
  704. }
  705. .timeLeftActive {
  706. background: #FFFFFF;
  707. }
  708. .timeMain {
  709. width: 100vw;
  710. height: 70vh;
  711. margin-top: 30vh;
  712. background: #FFFFFF;
  713. border-radius: 24rpx 24rpx 0px 0px;
  714. }
  715. .timesfNo {
  716. background: #F5F5F5;
  717. }
  718. .timesfActive {
  719. background: #FF4F00;
  720. }
  721. .timesfActive .timeSfNum {
  722. color: #FFFFFF;
  723. }
  724. .timesfActive .timeyy {
  725. color: #FFFFFF;
  726. }
  727. .topBox {
  728. padding: 20rpx 24rpx;
  729. }
  730. .timeTop {
  731. display: flex;
  732. line-height: 90rpx;
  733. padding-left: 24rpx;
  734. padding-right: 24rpx;
  735. justify-content: space-between;
  736. }
  737. .timeTopTitle {
  738. font-size: 30rpx;
  739. font-family: PingFangSC-Medium, PingFang SC;
  740. font-weight: 600;
  741. color: #3C3C3C;
  742. }
  743. .close {
  744. color: #999999;
  745. font-size: 30rpx;
  746. padding-left: 30rpx;
  747. }
  748. .timeCont {
  749. height: calc(70vh - 210rpx);
  750. }
  751. .timeSv {
  752. height: calc(70vh - 210rpx);
  753. }
  754. .timeLeft2 {
  755. width: 162rpx;
  756. background: #F4F5F7;
  757. border-top: 1px soid #F4F5F7;
  758. border-right: 1px soid #F4F5F7;
  759. }
  760. .timeRight2 {
  761. width: 588rpx;
  762. }
  763. .timesf {
  764. width: 165rpx;
  765. height: 98rpx;
  766. border-radius: 7rpx;
  767. border: 2rpx solid #EEEEEE;
  768. text-align: center;
  769. margin-left: 20rpx;
  770. margin-bottom: 24rpx;
  771. }
  772. .timeBottom {
  773. width: 750rpx;
  774. height: 120rpx;
  775. background: #FFFFFF;
  776. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  777. display: flex;
  778. align-items: center;
  779. }
  780. .timerightBox {
  781. display: flex;
  782. flex-wrap: wrap;
  783. }
  784. .timeCont {
  785. display: flex;
  786. }
  787. .timeSfNum {
  788. color: #666666;
  789. font-size: 28rpx;
  790. padding-top: 15rpx;
  791. }
  792. .timeyy {
  793. font-size: 24rpx;
  794. color: #999999;
  795. }
  796. .timecomplete {
  797. width: 690rpx;
  798. height: 74rpx;
  799. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  800. border-radius: 37rpx;
  801. line-height: 74rpx;
  802. text-align: center;
  803. font-size: 30rpx;
  804. color: #FFFFFF;
  805. margin-left: 30rpx;
  806. }
  807. .timeleftLine {
  808. font-size: 30rpx;
  809. color: #999999;
  810. text-align: center;
  811. padding: 28rpx 10rpx;
  812. border-bottom: 1px solid #EEEEEE;
  813. }
  814. .yuyueBox {
  815. background: #FFFFFF;
  816. border-radius: 10rpx;
  817. margin-left: 24rpx;
  818. margin-right: 24rpx;
  819. }
  820. .yuyueTime {
  821. display: flex;
  822. padding-left: 20rpx;
  823. padding-top: 30rpx;
  824. padding-bottom: 36rpx;
  825. align-items: center;
  826. }
  827. .yuyueState {
  828. display: flex;
  829. padding-left: 20rpx;
  830. padding-top: 30rpx;
  831. padding-bottom: 36rpx;
  832. }
  833. .maBox {
  834. display: flex;
  835. justify-content: space-between;
  836. padding: 24rpx 20rpx;
  837. }
  838. .querenMa {
  839. margin: 20rpx 0;
  840. padding-bottom: 30rpx;
  841. }
  842. .maBoximg {
  843. width: 308rpx;
  844. height: 308rpx;
  845. margin: 30rpx 197rpx;
  846. }
  847. .rightShou {
  848. display: flex;
  849. justify-content: flex-start;
  850. align-items: center;
  851. }
  852. .authorizBox {
  853. width: 100vw;
  854. height: 100vh;
  855. background: rgba(0, 0, 0, 0.5);
  856. position: fixed;
  857. top: 0;
  858. left: 0;
  859. }
  860. .authorizCont {
  861. margin-top: 30vh;
  862. width: 564rpx;
  863. height: 408rpx;
  864. background: #FFFFFF;
  865. border-radius: 24rpx;
  866. margin-left: 93rpx;
  867. position: relative;
  868. }
  869. .authorizCloseImg {
  870. width: 62rpx;
  871. height: 62rpx;
  872. }
  873. .sqLogoBox {
  874. width: 180rpx;
  875. height: 180rpx;
  876. background: #FFFFFF;
  877. border-radius: 90rpx;
  878. text-align: center;
  879. position: absolute;
  880. top: -50rpx;
  881. left: 192rpx;
  882. }
  883. .authorizName {
  884. color: #333333;
  885. line-height: 42rpx;
  886. font-size: 30rpx;
  887. text-align: center;
  888. padding-top: 58rpx;
  889. }
  890. .authorizMs {
  891. color: #999999;
  892. line-height: 36rpx;
  893. font-size: 26rpx;
  894. width: 452rpx;
  895. padding-top: 24rpx;
  896. text-align: center;
  897. margin-left: 56rpx;
  898. }
  899. .authorizContbutton {
  900. width: 422rpx;
  901. height: 88rpx;
  902. background: #D53533;
  903. border-radius: 44rpx;
  904. line-height: 88rpx;
  905. text-align: center;
  906. font-size: 30rpx;
  907. color: #FFFFFF;
  908. margin-top: 62rpx;
  909. margin-left: 71rpx;
  910. }
  911. .bottom {
  912. position: fixed;
  913. width: 100%;
  914. padding: 20rpx 24rpx;
  915. right: 0;
  916. bottom: 0;
  917. background: #ffffff;
  918. font-size: 28rpx;
  919. display: flex;
  920. justify-content: flex-end;
  921. height: 58rpx;
  922. padding-bottom: constant(safe-area-inset-bottom);
  923. padding-bottom: env(safe-area-inset-bottom);
  924. }
  925. .ping {
  926. text-align: center;
  927. color: #FF4F00;
  928. width: 150rpx;
  929. height: 56rpx;
  930. line-height: 56rpx;
  931. border-radius: 36rpx;
  932. border: 2rpx solid #FF4F00;
  933. }
  934. .kan {
  935. text-align: center;
  936. color: #3C3C3C;
  937. width: 150rpx;
  938. height: 56rpx;
  939. line-height: 56rpx;
  940. border-radius: 36rpx;
  941. border: 2rpx solid #DDDDDD;
  942. }
  943. </style>