historyDetail.vue 32 KB

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