historyDetail.vue 35 KB

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