historyDetail.vue 30 KB

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