historyDetail.vue 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361
  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" style="padding-bottom: 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" v-if="itemWorkHours&&itemWorkHours" :class="{nopb:ItemComment&&item.Comment}">
  150. <view class="itemWorkHours" v-if="itemWorkHours">
  151. 工时:{{item.SaleQty}}
  152. </view>
  153. <view class="itemPrice" v-if="itemWorkHours">
  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" v-if="item.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" v-if="GoodsComment" :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. this.myPower();
  529. this.showPower();
  530. setTimeout(function() {
  531. uni.stopPullDownRefresh();
  532. }, 1000);
  533. },
  534. }
  535. </script>
  536. <style scoped>
  537. .itemWorkHoursBox{
  538. display: flex;
  539. font-size: 24rpx;
  540. font-weight: 400;
  541. color: #999999;
  542. padding-top: 20rpx;padding-bottom: 20rpx;
  543. }
  544. .nopb{
  545. padding-bottom: 0px;
  546. }
  547. .itemWorkHours{
  548. padding-right: 50rpx;
  549. }
  550. .itemPrice{
  551. }
  552. .newboxTop{
  553. display: flex;
  554. padding-left: 20rpx;
  555. font-size: 30rpx;
  556. border-bottom: 1rpx solid #EEEEEE;
  557. font-weight: bold;
  558. padding-bottom: 15rpx;
  559. }
  560. .baoyangtis{
  561. font-size: 26rpx;
  562. padding-left: 20rpx;
  563. }
  564. .CarModel{
  565. font-size: 26rpx;
  566. padding: 15rpx 20rpx;
  567. }
  568. .baoyangtis{
  569. padding: 15rpx 20rpx 0 15rpx;
  570. }
  571. .box {
  572. min-height: 100vh;
  573. background: #F4F5F7;
  574. padding-bottom: constant(safe-area-inset-bottom);
  575. padding-bottom: env(safe-area-inset-bottom);
  576. }
  577. .contentBox {
  578. background: #F4F5F7;
  579. padding-bottom: 100rpx;
  580. }
  581. .top {
  582. height: 190rpx;
  583. background: #FF0000;
  584. }
  585. .stateBox {
  586. display: flex;
  587. }
  588. .orderState {
  589. display: flex;
  590. justify-content: center;
  591. align-items: center;
  592. padding-top: 40rpx;
  593. }
  594. .SheetState {
  595. display: flex;
  596. justify-content: center;
  597. font-size: 36rpx;
  598. font-weight: 500;
  599. color: #FFFFFF;
  600. margin-left: 15rpx;
  601. }
  602. .timeEditImg {
  603. width: 25rpx;
  604. height: 25rpx;
  605. padding-left: 20rpx;
  606. }
  607. .shopBoximg {
  608. width: 40rpx;
  609. height: 40rpx;
  610. }
  611. .shopRightImg {
  612. width: 44rpx;
  613. height: 45rpx;
  614. }
  615. .shopsx {
  616. width: 1px;
  617. height: 50rpx;
  618. background: #EEEEEE;
  619. margin-top: 30rpx;
  620. margin-left: 28rpx;
  621. }
  622. .shopBox2{
  623. padding: 30rpx 20rpx;
  624. margin: 0rpx 24rpx;
  625. margin-top: -60rpx;
  626. background-color: #FFFFFF;
  627. border-radius: 10rpx;
  628. }
  629. .shopBox2 .informationTxt {
  630. width: 350rpx;
  631. }
  632. .shopBox {
  633. display: flex;
  634. padding: 30rpx 20rpx;
  635. margin: 0rpx 24rpx;
  636. margin-top: 20rpx;
  637. background-color: #FFFFFF;
  638. border-radius: 10rpx;
  639. }
  640. .shopCont {
  641. width: 405rpx;
  642. padding-left: 20rpx;
  643. }
  644. .shopName {
  645. font-size: 30rpx;
  646. font-weight: bold;
  647. color: #3C3C3C;
  648. line-height: 45rpx;
  649. }
  650. .Address {
  651. color: #999999;
  652. font-size: 24rpx;
  653. margin-top: 10rpx;
  654. }
  655. .shopRihgtTxt {
  656. color: #999999;
  657. font-size: 24rpx;
  658. }
  659. .shopRightBox {
  660. padding-left: 28rpx;
  661. }
  662. .peopleCont {
  663. font-size: 28rpx;
  664. color: #3C3C3C;
  665. padding-left: 20rpx;
  666. }
  667. .people {
  668. display: flex;
  669. padding-left: 20rpx;
  670. padding-top: 30rpx;
  671. padding-bottom: 36rpx;
  672. }
  673. .PlateNumberBox {
  674. display: flex;
  675. padding-left: 20rpx;
  676. padding-bottom: 30rpx;
  677. }
  678. .PlateNumbercx {
  679. font-size: 28rpx;
  680. color: #3C3C3C;
  681. padding-left: 20rpx;
  682. }
  683. .PlateNumber {
  684. width: 130rpx;
  685. height: 32rpx;
  686. border-radius: 4rpx;
  687. border: 1px solid #F19D01;
  688. line-height: 32rpx;
  689. text-align: center;
  690. font-size: 22rpx;
  691. color: #F19D01;
  692. margin-left: 26rpx;
  693. }
  694. .PlateNumberBoxTop {
  695. display: flex;
  696. }
  697. .CarModel {
  698. font-size: 26rpx;
  699. color: #999999;
  700. padding-left: 20rpx;
  701. padding-top: 6rpx;
  702. padding-right: 20rpx;
  703. padding-bottom: 15rpx;
  704. width: 600rpx;
  705. }
  706. .detailedBox {
  707. background: #FFFFFF;
  708. border-radius: 10px;
  709. margin: 20rpx 24rpx;
  710. padding-bottom: 20rpx;
  711. }
  712. .itemBox {
  713. margin-top: 20rpx;
  714. }
  715. .carMes {
  716. padding: 23rpx 20rpx;
  717. display: flex;
  718. align-items: center;
  719. justify-content: flex-start;
  720. border-bottom: 1rpx solid #EEEEEE;
  721. }
  722. .plate {
  723. font-size: 30rpx;
  724. color: #3C3C3C;
  725. font-weight: bold;
  726. margin-right: 20rpx;
  727. }
  728. .mileage {
  729. font-size: 24rpx;
  730. color: #F19D01;
  731. padding: 0rpx 10rpx;
  732. border: 1rpx solid #F19D01;
  733. border-radius: 4rpx;
  734. height: 36rpx;
  735. }
  736. .detailedTitle {
  737. padding: 23rpx 20rpx;
  738. display: flex;
  739. text-align: center;
  740. align-content: flex-start;
  741. border-bottom: 1rpx solid #EEEEEE;
  742. font-size: 30rpx;
  743. font-weight: bold;
  744. color: #3C3C3C;
  745. }
  746. .detailedLine {
  747. padding: 20rpx 20rpx 0rpx;
  748. }
  749. .detailedImg {
  750. width: 120rpx;
  751. height: 120rpx;
  752. border-radius: 10rpx;
  753. }
  754. .detailedName {
  755. font-size: 26rpx;
  756. color: #3C3C3C;
  757. }
  758. .kaColor {
  759. background: #F19D01;
  760. border-radius: 4rpx;
  761. color: #FFFFFF;
  762. font-size: 24rpx;
  763. margin-right: 8rpx;
  764. padding: 3rpx 5rpx;
  765. }
  766. .qty {
  767. font-size: 24rpx;
  768. font-weight: 400;
  769. color: #999999;
  770. }
  771. .secondBox {
  772. display: flex;
  773. /* padding: 20rpx 0rpx; */
  774. justify-content: space-between;
  775. align-items: baseline;
  776. border-bottom: 1rpx solid #EEEEEE;
  777. }
  778. .noLine {
  779. border-bottom: 0 solid #FFFFFF;
  780. }
  781. .comment {
  782. margin-right: 20rpx;
  783. font-size: 24rpx;
  784. font-weight: 400;
  785. color: #999999;
  786. flex-grow: 1;
  787. padding: 20rpx 0rpx;
  788. }
  789. .secondRight {
  790. display: flex;
  791. justify-content: flex-end;
  792. align-items: baseline;
  793. }
  794. .grayPrice {
  795. font-size: 24rpx;
  796. font-weight: 400;
  797. color: #999999;
  798. text-decoration: line-through;
  799. }
  800. .price {
  801. font-size: 32rpx;
  802. font-weight: 500;
  803. /* color: #FF0000; */
  804. display: flex;
  805. align-items: center;
  806. }
  807. span {
  808. font-size: 24rpx;
  809. }
  810. .goodTop {
  811. display: flex;
  812. justify-content: space-between;
  813. }
  814. .goodscost {
  815. background: #FFFFFF;
  816. border-radius: 10px;
  817. margin: 20rpx 24rpx;
  818. padding-bottom: 20rpx;
  819. }
  820. .goodscostLine {
  821. display: flex;
  822. justify-content: space-between;
  823. font-size: 26rpx;
  824. padding: 20rpx 20rpx;
  825. color: #333333;
  826. }
  827. .goodsCostNum {
  828. color: #FF0000;
  829. font-weight: bold;
  830. }
  831. .goodsCostNumJsfs{
  832. color: #333333;
  833. }
  834. .goodsCostNum3{
  835. font-weight: bold;
  836. }
  837. .information {
  838. width: 702rpx;
  839. background: #FFFFFF;
  840. border-radius: 10px;
  841. margin-left: 24rpx;
  842. margin-top: 20rpx;
  843. padding: 0rpx 0 15rpx 0;
  844. }
  845. .informationLine {
  846. display: flex;
  847. font-size: 26rpx;
  848. padding: 15rpx 20rpx;
  849. }
  850. .informationTxt {
  851. width: 200rpx;
  852. color: #999999;
  853. }
  854. .informationNum {
  855. color: #333333;
  856. width: calc(100vw - 200rpx);
  857. }
  858. .copyBtn {
  859. width: 86rpx;
  860. height: 40rpx;
  861. background: #F4F5F7;
  862. border-radius: 20rpx;
  863. font-size: 24rpx;
  864. color: #333333;
  865. text-align: center;
  866. line-height: 40rpx;
  867. margin-left: 20rpx;
  868. }
  869. .orderBottom {
  870. width: 750rpx;
  871. height: 98rpx;
  872. background: #FFFFFF;
  873. position: fixed;
  874. left: 0;
  875. bottom: 0;
  876. display: flex;
  877. justify-content: flex-end;
  878. }
  879. .cancelBtn {
  880. width: 150rpx;
  881. height: 56rpx;
  882. border-radius: 36rpx;
  883. border: 2rpx solid #DDDDDD;
  884. text-align: center;
  885. line-height: 56rpx;
  886. font-size: 28rpx;
  887. color: #3C3C3C;
  888. margin-top: 21rpx;
  889. margin-right: 16rpx;
  890. margin-left: 20rpx;
  891. }
  892. .payBtn {
  893. width: 150rpx;
  894. height: 56rpx;
  895. border-radius: 36rpx;
  896. border: 2rpx solid #FF4F00;
  897. text-align: center;
  898. line-height: 56rpx;
  899. font-size: 28rpx;
  900. color: #FF4F00;
  901. margin-top: 21rpx;
  902. margin-right: 16rpx;
  903. margin-left: 20rpx;
  904. }
  905. .timeBox2 {
  906. width: 100vw;
  907. height: 100vh;
  908. background: rgba(0, 0, 0, 0.5);
  909. position: fixed;
  910. top: 0;
  911. left: 0;
  912. }
  913. .timeLeftActive {
  914. background: #FFFFFF;
  915. }
  916. .timeMain {
  917. width: 100vw;
  918. height: 70vh;
  919. margin-top: 30vh;
  920. background: #FFFFFF;
  921. border-radius: 24rpx 24rpx 0px 0px;
  922. }
  923. .timesfNo {
  924. background: #F5F5F5;
  925. }
  926. .timesfActive {
  927. background: #FF4F00;
  928. }
  929. .timesfActive .timeSfNum {
  930. color: #FFFFFF;
  931. }
  932. .timesfActive .timeyy {
  933. color: #FFFFFF;
  934. }
  935. .topBox {
  936. padding: 20rpx 24rpx;
  937. }
  938. .timeTop {
  939. display: flex;
  940. line-height: 90rpx;
  941. padding-left: 24rpx;
  942. padding-right: 24rpx;
  943. justify-content: space-between;
  944. }
  945. .timeTopTitle {
  946. font-size: 30rpx;
  947. font-family: PingFangSC-Medium, PingFang SC;
  948. font-weight: 600;
  949. color: #3C3C3C;
  950. }
  951. .close {
  952. color: #999999;
  953. font-size: 30rpx;
  954. padding-left: 30rpx;
  955. }
  956. .timeCont {
  957. height: calc(70vh - 210rpx);
  958. }
  959. .timeSv {
  960. height: calc(70vh - 210rpx);
  961. }
  962. .timeLeft2 {
  963. width: 162rpx;
  964. background: #F4F5F7;
  965. border-top: 1px soid #F4F5F7;
  966. border-right: 1px soid #F4F5F7;
  967. }
  968. .timeRight2 {
  969. width: 588rpx;
  970. }
  971. .timesf {
  972. width: 165rpx;
  973. height: 98rpx;
  974. border-radius: 7rpx;
  975. border: 2rpx solid #EEEEEE;
  976. text-align: center;
  977. margin-left: 20rpx;
  978. margin-bottom: 24rpx;
  979. }
  980. .timeBottom {
  981. width: 750rpx;
  982. height: 120rpx;
  983. background: #FFFFFF;
  984. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  985. display: flex;
  986. align-items: center;
  987. }
  988. .timerightBox {
  989. display: flex;
  990. flex-wrap: wrap;
  991. }
  992. .timeCont {
  993. display: flex;
  994. }
  995. .timeSfNum {
  996. color: #666666;
  997. font-size: 28rpx;
  998. padding-top: 15rpx;
  999. }
  1000. .timeyy {
  1001. font-size: 24rpx;
  1002. color: #999999;
  1003. }
  1004. .timecomplete {
  1005. width: 690rpx;
  1006. height: 74rpx;
  1007. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  1008. border-radius: 37rpx;
  1009. line-height: 74rpx;
  1010. text-align: center;
  1011. font-size: 30rpx;
  1012. color: #FFFFFF;
  1013. margin-left: 30rpx;
  1014. }
  1015. .timeleftLine {
  1016. font-size: 30rpx;
  1017. color: #999999;
  1018. text-align: center;
  1019. padding: 28rpx 10rpx;
  1020. border-bottom: 1px solid #EEEEEE;
  1021. }
  1022. .yuyueBox {
  1023. background: #FFFFFF;
  1024. border-radius: 10rpx;
  1025. margin-left: 24rpx;
  1026. margin-right: 24rpx;
  1027. }
  1028. .yuyueTime {
  1029. display: flex;
  1030. padding-left: 20rpx;
  1031. padding-top: 30rpx;
  1032. padding-bottom: 36rpx;
  1033. align-items: center;
  1034. }
  1035. .yuyueState {
  1036. display: flex;
  1037. padding-left: 20rpx;
  1038. padding-top: 30rpx;
  1039. padding-bottom: 36rpx;
  1040. }
  1041. .maBox {
  1042. display: flex;
  1043. justify-content: space-between;
  1044. padding: 24rpx 20rpx;
  1045. }
  1046. .querenMa {
  1047. margin: 20rpx 0;
  1048. padding-bottom: 30rpx;
  1049. }
  1050. .maBoximg {
  1051. width: 308rpx;
  1052. height: 308rpx;
  1053. margin: 30rpx 197rpx;
  1054. }
  1055. .rightShou {
  1056. display: flex;
  1057. justify-content: flex-start;
  1058. align-items: center;
  1059. }
  1060. .authorizBox {
  1061. width: 100vw;
  1062. height: 100vh;
  1063. background: rgba(0, 0, 0, 0.5);
  1064. position: fixed;
  1065. top: 0;
  1066. left: 0;
  1067. }
  1068. .authorizCont {
  1069. margin-top: 30vh;
  1070. width: 564rpx;
  1071. height: 408rpx;
  1072. background: #FFFFFF;
  1073. border-radius: 24rpx;
  1074. margin-left: 93rpx;
  1075. position: relative;
  1076. }
  1077. .authorizCloseImg {
  1078. width: 62rpx;
  1079. height: 62rpx;
  1080. }
  1081. .sqLogoBox {
  1082. width: 180rpx;
  1083. height: 180rpx;
  1084. background: #FFFFFF;
  1085. border-radius: 90rpx;
  1086. text-align: center;
  1087. position: absolute;
  1088. top: -50rpx;
  1089. left: 192rpx;
  1090. }
  1091. .authorizName {
  1092. color: #333333;
  1093. line-height: 42rpx;
  1094. font-size: 30rpx;
  1095. text-align: center;
  1096. padding-top: 58rpx;
  1097. }
  1098. .authorizMs {
  1099. color: #999999;
  1100. line-height: 36rpx;
  1101. font-size: 26rpx;
  1102. width: 452rpx;
  1103. padding-top: 24rpx;
  1104. text-align: center;
  1105. margin-left: 56rpx;
  1106. }
  1107. .authorizContbutton {
  1108. width: 422rpx;
  1109. height: 88rpx;
  1110. background: #D53533;
  1111. border-radius: 44rpx;
  1112. line-height: 88rpx;
  1113. text-align: center;
  1114. font-size: 30rpx;
  1115. color: #FFFFFF;
  1116. margin-top: 62rpx;
  1117. margin-left: 71rpx;
  1118. }
  1119. .bottom {
  1120. position: fixed;
  1121. width: 100%;
  1122. padding: 20rpx 24rpx;
  1123. right: 0;
  1124. bottom: 0;
  1125. background: #ffffff;
  1126. font-size: 28rpx;
  1127. display: flex;
  1128. justify-content: flex-end;
  1129. height: 58rpx;
  1130. padding-bottom: constant(safe-area-inset-bottom);
  1131. padding-bottom: env(safe-area-inset-bottom);
  1132. }
  1133. .ping {
  1134. text-align: center;
  1135. color: #FF4F00;
  1136. width: 150rpx;
  1137. height: 56rpx;
  1138. line-height: 56rpx;
  1139. border-radius: 36rpx;
  1140. border: 2rpx solid #FF4F00;
  1141. }
  1142. .kan {
  1143. text-align: center;
  1144. color: #3C3C3C;
  1145. width: 150rpx;
  1146. height: 56rpx;
  1147. line-height: 56rpx;
  1148. border-radius: 36rpx;
  1149. border: 2rpx solid #DDDDDD;
  1150. }
  1151. </style>