historyDetail.vue 29 KB

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