historyDetail.vue 30 KB

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