rescueOrderDetail.vue 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498
  1. <template>
  2. <view class="box">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback"></image>
  9. </view>
  10. <view class="zdyNavTitle">订单详情</view>
  11. <view style="width: 50px;"></view>
  12. </view>
  13. </view>
  14. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  15. <view style="height: 44px;"></view>
  16. <view class="top">
  17. <view class="orderState">
  18. <image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  19. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 0">待确认</view>
  20. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 1">已接单</view>
  21. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 2">已出发</view>
  22. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 3">已完成</view>
  23. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 4">已取消</view>
  24. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 5">已评价</view>
  25. </view>
  26. </view>
  27. <!-- 拖车起始点 -->
  28. <view class="startPointBox" v-if="orderData.openShopHelpSheet.helpType==2">
  29. <div class="hStartAddressBox">
  30. <div class="hStartAddressYd"></div>
  31. <div class="startPointTitle">起点</div>
  32. <div class="hStartAddress">{{orderData.openShopHelpSheet.hStartAddress}}</div>
  33. <img src="../../static/img/icon_ditu.png" alt="" class="mapImg" @click="goMapStart"/>
  34. </div>
  35. <div class="hEndAddressBox">
  36. <div class="hEndAddressYd"></div>
  37. <div class="startPointTitle">终点</div>
  38. <div class="hStartAddress">{{orderData.openShopHelpSheet.hEndAddress}}</div>
  39. <img src="../../static/img/icon_ditu.png" alt="" class="mapImg" @click="goMapEnd"/>
  40. </div>
  41. </view>
  42. <!-- 救援信息 -->
  43. <!-- 救援信息 -->
  44. <view class="information">
  45. <view class="detailedTitle">救援信息</view>
  46. <view class="informationLine">
  47. <view class="informationTxt">救援单号:</view>
  48. <view class="informationNum">{{orderData.openShopHelpSheet.code}}<span class="codeCopy"
  49. @click="copy(orderData.openShopHelpSheet.code)">复制</span></view>
  50. </view>
  51. <view class="informationLine">
  52. <view class="informationTxt">救援时间:</view>
  53. <view class="informationNum" v-if="orderData.openShopHelpSheet.orderType==1">立刻</view>
  54. <view class="informationNum" v-else>{{orderData.openShopHelpSheet.hTime}}</view>
  55. </view>
  56. <view class="informationLine">
  57. <view class="informationTxt">救援类型:</view>
  58. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==1">搭电</view>
  59. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==2">拖车</view>
  60. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==3">换胎</view>
  61. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==4">未知原因</view>
  62. <view class="informationNum2">-</view>
  63. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==1">地面</view>
  64. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==2">车库</view>
  65. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==3">其他</view>
  66. </view>
  67. <view class="informationLine" v-if="orderData.openShopHelpSheet.plateNumber">
  68. <view class="informationTxt">车牌号:</view>
  69. <view class="informationNum">{{orderData.openShopHelpSheet.plateNumber}}</view>
  70. </view>
  71. <view class="informationLine">
  72. <view class="informationTxt">车型:</view>
  73. <view class="informationNum">{{orderData.openShopHelpSheet.carModel}}</view>
  74. </view>
  75. <view class="informationLine">
  76. <view class="informationTxt">救援联系人:</view>
  77. <view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/{{orderData.openShopHelpSheet.mobilePhone}}</view>
  78. </view>
  79. <view class="informationLine" >
  80. <view class="informationTxt">救援门店:</view>
  81. <view class="informationNum">{{orderData.shopInfo.shopName}}</view>
  82. </view>
  83. <view class="informationLine" >
  84. <view class="informationTxt">起点:</view>
  85. <view class="informationNum">{{orderData.openShopHelpSheet.hStartAddress}}</view>
  86. </view>
  87. <view class="informationLine">
  88. <view class="informationTxt">终点:</view>
  89. <view class="informationNum">{{orderData.openShopHelpSheet.hEndAddress}}</view>
  90. </view>
  91. </view>
  92. <view class="information">
  93. <view class="detailedTitle">订单信息</view>
  94. <view class="informationLine">
  95. <view class="informationTxt">下单时间:</view>
  96. <view class="informationNum" >{{orderData.openShopHelpSheet.createTime}}</view>
  97. </view>
  98. <view class="informationLine">
  99. <view class="informationTxt">下单人:</view>
  100. <view class="informationNum" >{{orderData.openUser.nickName|| '未知'}} / {{orderData.openUser.mobilePhone}}</view>
  101. </view>
  102. <view class="informationLine" v-if="orderData.openShopHelpSheet.confirmTime">
  103. <view class="informationTxt">确认时间:</view>
  104. <view class="informationNum" >{{orderData.openShopHelpSheet.confirmTime}}/{{orderData.openShopHelpSheet.confirmOperator}}</view>
  105. </view>
  106. <view class="informationLine" v-if="orderData.openShopHelpSheet.goingTime">
  107. <view class="informationTxt">出发时间:</view>
  108. <view class="informationNum" >{{orderData.openShopHelpSheet.goingTime}}/{{orderData.openShopHelpSheet.goingOperator}}</view>
  109. </view>
  110. <view class="informationLine" v-if="orderData.openShopHelpSheet.finishTime">
  111. <view class="informationTxt">完成时间:</view>
  112. <view class="informationNum" >{{orderData.openShopHelpSheet.finishTime}}/{{orderData.openShopHelpSheet.finishOperator}}</view>
  113. </view>
  114. <view class="informationLine" v-if="orderData.openShopHelpSheet.finishComment">
  115. <view class="informationTxt">完成备注:</view>
  116. <view class="informationNum" >{{orderData.openShopHelpSheet.finishComment}}</view>
  117. </view>
  118. <view class="informationLine" v-if="orderData.openShopHelpSheet.evaluateTime">
  119. <view class="informationTxt">评价时间:</view>
  120. <view class="informationNum">{{orderData.openShopHelpSheet.evaluateTime}}</view>
  121. </view>
  122. <view class="informationLine" v-if="orderData.openShopHelpSheet.evaluateComment">
  123. <view class="informationTxt">评价内容:</view>
  124. <view class="informationNum">{{orderData.openShopHelpSheet.evaluateComment}}</view>
  125. </view>
  126. <view class="informationLine" v-if="orderData.openShopHelpSheet.cancelTime">
  127. <view class="informationTxt">取消时间:</view>
  128. <view class="informationNum">{{orderData.openShopHelpSheet.cancelTime}}/{{orderData.openShopHelpSheet.cancelOperator}}</view>
  129. </view>
  130. <view class="informationLine" v-if="orderData.openShopHelpSheet.cancelComment">
  131. <view class="informationTxt">取消备注:</view>
  132. <view class="informationNum" >{{orderData.openShopHelpSheet.cancelComment}}</view>
  133. </view>
  134. </view>
  135. <!-- <view>iOSInfo</view>
  136. <view>{{iOSInfo}}</view> -->
  137. <view style="height: 50rpx;background-color: #F4F5F7;"></view>
  138. <!-- 待付款 -->
  139. <!-- <view class="bottom" v-if="orderData.openShopHelpSheet.sheetState == 0">
  140. <view class="cancel" @click="cancelBespeak">取消订单</view>
  141. </view> -->
  142. <!-- 待服务 -->
  143. <view class="bottom">
  144. <view v-if="iOSInfo.indexOf('Q060')!=-1||!iOSInfo">
  145. <view class="cancel" v-if="orderData.openShopHelpSheet.sheetState == 0||orderData.openShopHelpSheet.sheetState == 1||orderData.openShopHelpSheet.sheetState == 2" @click="cancelBespeak">取消订单</view>
  146. </view>
  147. <view v-if="iOSInfo.indexOf('Q061')!=-1||!iOSInfo">
  148. <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 0||orderData.openShopHelpSheet.sheetState == 1" @click="updateShop">更换门店</view>
  149. </view>
  150. <view v-if="iOSInfo.indexOf('Q057')!=-1||!iOSInfo">
  151. <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 0" @click="confirmOrder">确认</view>
  152. </view>
  153. <view v-if="iOSInfo.indexOf('Q059')!=-1||!iOSInfo">
  154. <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 1||orderData.openShopHelpSheet.sheetState == 2" @click="completeOrder">完成</view>
  155. </view>
  156. <view v-if="iOSInfo.indexOf('Q058')!=-1||!iOSInfo">
  157. <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 1" @click="goingOrder">出发</view>
  158. </view>
  159. </view>
  160. <!-- 完成-->
  161. <view class="tuikuanBox" v-if="completeShow">
  162. <view class="tuikuan">
  163. <view class="tuiTop">
  164. <view class="tuiTitle">完成</view>
  165. <image @click="completeShow=false" src="../../static/img/icon_close.png" mode="" style="width: 26rpx; height: 26rpx;"></image>
  166. </view>
  167. <view class="contLine">
  168. <view class="contlineRight">
  169. <textarea placeholder-style="color:#999999" placeholder="备注" v-model="finishComment"
  170. class="contlineRightInput" maxlength="-1" auto-height="true" />
  171. </view>
  172. </view>
  173. <view class="tuiBtns">
  174. <view class="btn" @click="completeShow=false">取消</view>
  175. <view class="btn2" @click="complete">确认完成</view>
  176. </view>
  177. </view>
  178. </view>
  179. <!-- 更换门店 -->
  180. <view class="tuikuanBox" v-if="updateShopShow">
  181. <view class="shopGhBox">
  182. <view class="shopGhTitle">更换门店</view>
  183. <view class="">
  184. <picker @change="bindPickerChange" :value="pickerindex" :range-key="'shopName'" :range="pickerarray">
  185. <view class="uniPicker">
  186. <view class="uniPickerName">
  187. {{shopName}}
  188. </view>
  189. <image src="../../static/img/arrow_down.png" mode=" " class="jtShopImg"></image>
  190. </view>
  191. </picker>
  192. </view>
  193. <view class="tuiBtns">
  194. <view class="btn" @click="updateShopShow=false">取消</view>
  195. <view class="btn2" @click="completeupdateShop">更换门店</view>
  196. </view>
  197. </view>
  198. </view>
  199. </view>
  200. </template>
  201. <script>
  202. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  203. export default {
  204. components: {
  205. tkiQrcode
  206. },
  207. data() {
  208. return {
  209. id: '',
  210. iStatusBarHeight:'',
  211. orderData: '',
  212. onval: true, // val值变化时自动重新生成二维码
  213. loadMake: true, // 组件加载完成后自动生成二维码
  214. size: 500,
  215. qrcodeShow: false,
  216. qrcodeTop: '-100vh',
  217. qrcodeTopVal: '',
  218. ifShow: false,
  219. val: '二维码', // 要生成的二维码值
  220. unit: 'upx', // 单位
  221. background: '#b4e9e2', // 背景色
  222. foreground: '#309286', // 前景色
  223. pdground: '#262637', // 角标色
  224. icon: '', // 二维码图标
  225. iconsize: 40, // 二维码图标大小
  226. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  227. src: '', // 二维码生成后的图片地址或base64
  228. isShowMa: false,
  229. quanMaList:[],
  230. completeShow: false,
  231. tuicauseList:[],
  232. tuikuanContent:'',
  233. index: 0,
  234. iOSInfo:'',
  235. swiperIndex:0,
  236. back:'',
  237. finishComment:'',
  238. shopName:'',
  239. shopId:'',
  240. pickerarray:'',
  241. pickerindex:'',
  242. changeOldShopID:'',
  243. updateShopShow:false,
  244. }
  245. },
  246. onLoad(opt) {
  247. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  248. this.id = opt.id
  249. this.back=opt.back;
  250. if (this.id) {
  251. this.getData()
  252. }
  253. //this.getTuiKuanData()
  254. this.getShopinfo();
  255. /* var qxnum = uni.getStorageSync("quanxian");
  256. if (qxnum == 1) {
  257. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  258. }else if(qxnum==2){
  259. window.getAndroid=this.getAndroid;
  260. } */
  261. /* var standalone = window.navigator.standalone
  262. var userAgent = window.navigator.userAgent.toLowerCase()
  263. var safari = /safari/.test(userAgent)
  264. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  265. var android = /android/.test(userAgent)
  266. if (ios) {
  267. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  268. } else if (android) {
  269. window.getAndroid=this.getAndroid;
  270. } */
  271. this.getpermission()
  272. },
  273. methods: {
  274. getpermission(){
  275. this.$http('openH5ShopHelpSheetOrder/permission', {
  276. },'POST').then(res => {
  277. this.iOSInfo=res.data;
  278. })
  279. },
  280. getAndroid(e){
  281. this.iOSInfo=e
  282. },
  283. goMapStart(){
  284. var obj={
  285. Lat:this.orderData.openShopHelpSheet.startLat,
  286. Lng:this.orderData.openShopHelpSheet.startLng,
  287. Address:this.orderData.openShopHelpSheet.hStartAddress
  288. }
  289. //app交互
  290. var standalone = window.navigator.standalone
  291. var userAgent = window.navigator.userAgent.toLowerCase()
  292. var safari = /safari/.test(userAgent)
  293. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  294. var android = /android/.test(userAgent)
  295. if (ios) {
  296. if ( true) {//!standalone&& !safari
  297. window.webkit.messageHandlers.goMap.postMessage(obj)
  298. }
  299. } else if (android) {
  300. window.android.goMap(JSON.stringify(obj))
  301. }
  302. },
  303. goMapEnd(){
  304. var obj={
  305. Lat:this.orderData.openShopHelpSheet.endLat,
  306. Lng:this.orderData.openShopHelpSheet.endLng,
  307. Address:this.orderData.openShopHelpSheet.hEndAddress
  308. }
  309. //app交互
  310. var standalone = window.navigator.standalone
  311. var userAgent = window.navigator.userAgent.toLowerCase()
  312. var safari = /safari/.test(userAgent)
  313. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  314. var android = /android/.test(userAgent)
  315. if (ios) {
  316. if ( true) {//!standalone&& !safari
  317. window.webkit.messageHandlers.goMap.postMessage(obj)
  318. }
  319. } else if (android) {
  320. window.android.goMap(JSON.stringify(obj))
  321. }
  322. },
  323. goingOrder(){
  324. var that = this
  325. uni.showModal({
  326. title: '提示',
  327. content: '是否出发',
  328. cancelText:'否',
  329. confirmText:'是',
  330. success: function (res) {
  331. if (res.confirm) {
  332. uni.showLoading({
  333. title: '加载中'
  334. })
  335. that.$http('openH5ShopHelpSheetOrder/goingOrder', {
  336. id: that.id,
  337. }, 'POST').then(res => {
  338. uni.hideLoading();
  339. if(res.code==0){
  340. uni.showToast({
  341. title: '操作成功',
  342. icon: 'none',
  343. duration: 2000
  344. });
  345. }else{
  346. uni.showToast({
  347. title: res.msg,
  348. icon: 'none',
  349. duration: 2000
  350. });
  351. }
  352. setTimeout(function() {
  353. that.getData();
  354. }, 1000);
  355. })
  356. } else if (res.cancel) {
  357. }
  358. }
  359. });
  360. },
  361. completeOrder(){
  362. var that = this
  363. uni.showModal({
  364. title: '提示',
  365. content: '是否完成该订单',
  366. cancelText:'否',
  367. confirmText:'是',
  368. success: function (res) {
  369. if (res.confirm) {
  370. uni.showLoading({
  371. title: '加载中'
  372. })
  373. that.$http('openH5ShopHelpSheetOrder/completeOrder', {
  374. id: that.id,
  375. }, 'POST').then(res => {
  376. uni.hideLoading();
  377. if(res.code==0){
  378. uni.showToast({
  379. title: '完成成功',
  380. icon: 'none',
  381. duration: 2000
  382. });
  383. }else{
  384. uni.showToast({
  385. title: res.msg,
  386. icon: 'none',
  387. duration: 2000
  388. });
  389. }
  390. setTimeout(function() {
  391. that.getData();
  392. }, 1000);
  393. })
  394. } else if (res.cancel) {
  395. }
  396. }
  397. });
  398. },
  399. bindPickerChange(e){
  400. console.log(e)
  401. this.shopName=this.pickerarray[e.detail.value].shopName
  402. this.shopId=this.pickerarray[e.detail.value].id
  403. },
  404. completeupdateShop(){
  405. uni.showLoading({
  406. title: '加载中'
  407. })
  408. this.$http('openH5ShopHelpSheetOrder/updateShop', {
  409. id: this.id,shopID:this.shopId,changeOldShopID:this.changeOldShopID,
  410. }, 'POST').then(res => {
  411. uni.hideLoading();
  412. this.updateShopShow=false;
  413. if(res.code==0){
  414. uni.showToast({
  415. title: '更换成功',
  416. icon: 'none',
  417. duration: 2000
  418. });
  419. }else{
  420. uni.showToast({
  421. title: res.msg,
  422. icon: 'none',
  423. duration: 2000
  424. });
  425. }
  426. setTimeout(function() {
  427. this.getData();
  428. }, 1000);
  429. })
  430. },
  431. confirmOrder(){
  432. var that = this
  433. uni.showModal({
  434. title: '提示',
  435. content: '是否确定该订单',
  436. cancelText:'否',
  437. confirmText:'是',
  438. success: function (res) {
  439. if (res.confirm) {
  440. uni.showLoading({
  441. title: '加载中'
  442. })
  443. that.$http('openH5ShopHelpSheetOrder/confirmOrder', {
  444. id: that.id,
  445. }, 'POST').then(res => {
  446. uni.hideLoading();
  447. // var list = res.data.Items
  448. uni.showToast({
  449. title: '确定成功',
  450. icon: 'none',
  451. duration: 2000
  452. });
  453. setTimeout(function() {
  454. that.getData();
  455. }, 1000);
  456. })
  457. } else if (res.cancel) {
  458. this.updateShopShow=false;
  459. }
  460. }
  461. });
  462. },
  463. getShopinfo(){
  464. this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
  465. this.shopName=res.data.shopName;
  466. this.shopId=res.data.id
  467. this.getShopList();
  468. })
  469. },
  470. getShopList(){
  471. this.$http('openH5SetTheGuest/getShopList', {
  472. },'GET').then(res => {
  473. this.pickerarray=res.data;
  474. })
  475. },
  476. complete(){
  477. this.completeShow=false;
  478. },
  479. updateShop(){
  480. this.updateShopShow=true;
  481. },
  482. isShowMaSHow(index){
  483. this.swiperIndex=index
  484. this.isShowMa=true
  485. },
  486. payDone(){
  487. var that = this
  488. uni.showModal({
  489. title: '提示',
  490. content: '确认已支付完成吗',
  491. success: function (res) {
  492. if (res.confirm) {
  493. uni.showLoading({
  494. title: '加载中'
  495. })
  496. that.$http('openH5Indent/complete', {
  497. id: that.id,
  498. }, 'POST').then(res => {
  499. uni.hideLoading();
  500. // var list = res.data.Items
  501. setTimeout(function() {
  502. that.getData();
  503. }, 1000);
  504. })
  505. } else if (res.cancel) {
  506. }
  507. }
  508. });
  509. },
  510. goTui(){
  511. let yuanyin = this.tuicauseList[this.index].contents
  512. if (!yuanyin) {
  513. uni.showToast({
  514. title: '请选择退款原因',
  515. icon: 'none',
  516. duration: 3000
  517. });
  518. return false;
  519. }
  520. uni.showLoading({
  521. title: '加载中'
  522. })
  523. var that = this
  524. this.$http('openH5Indent/reimburse', {
  525. id: this.id,
  526. refundReason: yuanyin,
  527. refundComment: this.tuikuanContent,
  528. realMoney:this.orderData.data.realMoney
  529. }, 'GET').then(res => {
  530. uni.hideLoading();
  531. // var list = res.data.Items
  532. // var list = res.data
  533. console.log("result+=", res);
  534. if (res.code == 1) {
  535. that.isShowTui = false
  536. uni.showToast({
  537. title: '退款成功',
  538. icon: 'none',
  539. duration: 2000
  540. });
  541. setTimeout(function() {
  542. that.getData();
  543. }, 1000);
  544. }
  545. })
  546. },
  547. bindChange(e) {
  548. console.log(e);
  549. this.index = e.detail.value
  550. },
  551. feedDone(e) {
  552. this.tuikuanContent = e.target.value
  553. },
  554. // 核销
  555. goHeXiao(){
  556. //app交互
  557. var standalone = window.navigator.standalone
  558. var userAgent = window.navigator.userAgent.toLowerCase()
  559. var safari = /safari/.test(userAgent)
  560. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  561. var android = /android/.test(userAgent)
  562. if (ios) {
  563. if ( true) {//!standalone&& !safari
  564. window.webkit.messageHandlers.goHeXiao.postMessage({"id":this.id?this.id:''})
  565. }
  566. } else if (android) {
  567. window.android.writeoff(this.id)
  568. }
  569. },
  570. getTuiKuanData() {
  571. uni.showLoading({
  572. title: '加载中'
  573. });
  574. this.$http('openH5Indent/getOpenReason', {
  575. // id: this.id,
  576. }, 'GET').then(res => {
  577. uni.hideLoading();
  578. this.tuicauseList = res.data;
  579. })
  580. },
  581. copy(txt) {
  582. uni.setClipboardData({
  583. data: txt,
  584. success: function() {
  585. uni.showToast({
  586. title: '复制成功',
  587. icon: 'none',
  588. duration: 2000
  589. });
  590. }
  591. });
  592. },
  593. upTime() {
  594. uni.showLoading({
  595. title: '加载中'
  596. })
  597. var that = this
  598. this.$http('openH5Indent/carOwner/updateTimeOfAppointment', {
  599. id: this.id,
  600. shopId: this.orderData.shopInfo.id,
  601. billDate: this.billDate
  602. }, 'POST').then(res => {
  603. uni.hideLoading();
  604. // var list = res.data.Items
  605. var list = res.data
  606. console.log("result+=", res.data);
  607. uni.showToast({
  608. title: '延期成功',
  609. icon: 'none',
  610. duration: 2000
  611. });
  612. setTimeout(function() {
  613. that.getData();
  614. }, 1000);
  615. })
  616. },
  617. cancelBespeak(){
  618. var that = this
  619. uni.showModal({
  620. title: '提示',
  621. content: '是否取消该订单',
  622. cancelText:'否',
  623. confirmText:'是',
  624. success: function (res) {
  625. if (res.confirm) {
  626. uni.showLoading({
  627. title: '加载中'
  628. })
  629. that.$http('openH5ShopHelpSheetOrder/cancelOrder', {
  630. id: that.id,
  631. }, 'POST').then(res => {
  632. uni.hideLoading();
  633. // var list = res.data.Items
  634. uni.showToast({
  635. title: '取消成功',
  636. icon: 'none',
  637. duration: 2000
  638. });
  639. setTimeout(function() {
  640. that.getData();
  641. }, 1000);
  642. })
  643. } else if (res.cancel) {
  644. }
  645. }
  646. });
  647. },
  648. map() {
  649. console.log("打开地图")
  650. var that = this;
  651. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  652. uni.showToast({
  653. title: '该店铺未设置定位',
  654. icon: 'none',
  655. duration: 3000
  656. });
  657. } else {
  658. uni.openLocation({
  659. latitude: Number(that.orderData.shopInfo.lat),
  660. longitude: Number(that.orderData.shopInfo.lng),
  661. name: that.orderData.shopInfo.shopName,
  662. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  663. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  664. success: function() {
  665. console.log('success');
  666. },
  667. fail(err) {
  668. console.log(err)
  669. }
  670. });
  671. }
  672. },
  673. call() {
  674. uni.makePhoneCall({
  675. phoneNumber: this.orderData.shopInfo.mobilePhone
  676. });
  677. },
  678. getData() {
  679. uni.showLoading({
  680. title: '加载中'
  681. });
  682. this.$http('openH5ShopHelpSheetOrder/getOpenShopHelpSheetOrderInfo', {
  683. id: this.id,
  684. }, 'GET').then(res => {
  685. uni.hideLoading();
  686. this.orderData = res.data;
  687. this.changeOldShopID=res.data.shopInfo.id;
  688. if (this.quanMaList) {
  689. this.quanMaList = [];
  690. }
  691. let maList = this.orderData.OpenSheetQRCode;
  692. if (maList) {
  693. maList.forEach(item =>{
  694. if (item.writeoffState==1) {
  695. this.quanMaList.push(item.qrCode);
  696. }
  697. })
  698. }
  699. console.log('可用券码--',this.quanMaList);
  700. })
  701. },
  702. goback() {
  703. if(this.back==1){
  704. uni.navigateBack({
  705. delta: 1
  706. })
  707. }else{
  708. var standalone = window.navigator.standalone
  709. var userAgent = window.navigator.userAgent.toLowerCase()
  710. var safari = /safari/.test(userAgent)
  711. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  712. var android = /android/.test(userAgent)
  713. if (ios) {
  714. if ( true) {//!standalone&& !safari
  715. window.webkit.messageHandlers.goMyNav.postMessage(null)
  716. }
  717. } else if (android) {
  718. window.android.postMessage()
  719. }
  720. }
  721. },
  722. gohome(){
  723. uni.switchTab({
  724. url:'../../index/index'
  725. })
  726. },
  727. },
  728. onPullDownRefresh() {
  729. this.getData()
  730. setTimeout(function() {
  731. uni.stopPullDownRefresh();
  732. }, 1000);
  733. },
  734. }
  735. </script>
  736. <style scoped>
  737. .informationNum2{
  738. color: #333333;
  739. font-size: 26rpx;
  740. }
  741. .startPointBox{
  742. width: 678rpx;
  743. background: #FFFFFF;
  744. border-radius: 10rpx;
  745. margin-top: 20rpx;
  746. margin-left: 24rpx;
  747. padding:30rpx 12rpx ;
  748. }
  749. .mapImg{
  750. width: 44rpx;height: 44rpx;
  751. }
  752. .hStartAddressBox{
  753. border-bottom: 1px solid #EEEEEE;
  754. display: flex;padding-bottom: 30rpx;
  755. }
  756. .hEndAddressBox{
  757. display: flex;padding-top: 30rpx;
  758. }
  759. .hEndAddressYd{
  760. width: 14rpx;
  761. height: 14rpx;
  762. background: #F03B3B;
  763. border-radius: 50%;
  764. margin-top: 12rpx;
  765. margin-right: 20rpx;
  766. }
  767. .hStartAddressYd{
  768. width: 14rpx;
  769. height: 14rpx;
  770. background: #3F90F7;
  771. border-radius: 50%;
  772. margin-top: 12rpx;
  773. margin-right: 20rpx;
  774. }
  775. .hStartAddress{
  776. font-weight: 400;font-size: 28rpx;
  777. color: #333333;padding-left: 30rpx;
  778. line-height: 40rpx;
  779. width: 500rpx;
  780. }
  781. .startPointTitle{
  782. color: #666666;line-height: 40rpx;font-size: 28rpx;
  783. }
  784. .shopGhTitle{
  785. font-size: 30rpx;color: #333333;padding: 24rpx;
  786. }
  787. .jtShopImg{
  788. width: 24rpx;height: 24rpx;margin-top: 26rpx;margin-right: 26rpx;
  789. }
  790. .uniPicker{
  791. display: flex;
  792. }
  793. .uniPickerName{
  794. padding: 16rpx;font-size: 28rpx;color: #666666;
  795. }
  796. .box {
  797. min-height: 100vh;
  798. background: #F4F5F7;
  799. padding-bottom: 135rpx;
  800. }
  801. .zdyNavBox{
  802. width: 100vw;
  803. background: #FFFFFF;
  804. position: fixed;
  805. top: 0;
  806. left: 0;
  807. z-index: 9999999;
  808. }
  809. .zdyNav{
  810. height: 44px;
  811. display: flex;
  812. justify-content: space-between;
  813. align-items: center;
  814. }
  815. .backImg{
  816. width: 44rpx;
  817. height: 44rpx;
  818. margin-left: 10rpx;
  819. margin-right: 20rpx;
  820. }
  821. .homeImg{
  822. width: 44rpx;
  823. height: 44rpx;
  824. }
  825. .zdyNavLeft{
  826. display: flex;
  827. align-items: center;
  828. }
  829. .zdyNavTitle{
  830. height: 44px;
  831. background: #FFFFFF;
  832. text-align: center;
  833. font-size: 34rpx;
  834. line-height: 44px;
  835. }
  836. .top {
  837. height: 190rpx;
  838. background-color: #FF0000;
  839. }
  840. .orderState {
  841. display: flex;
  842. justify-content: center;
  843. align-items: center;
  844. padding-top: 40rpx;
  845. }
  846. .SheetState {
  847. display: flex;
  848. justify-content: center;
  849. font-size: 36rpx;
  850. font-weight: 500;
  851. color: #FFFFFF;
  852. margin-left: 15rpx;
  853. }
  854. .timeEditImg {
  855. width: 25rpx;
  856. height: 25rpx;
  857. padding-left: 20rpx;
  858. }
  859. .shopBoximg {
  860. width: 40rpx;
  861. height: 40rpx;
  862. }
  863. .shopRightImg {
  864. width: 44rpx;
  865. height: 45rpx;
  866. }
  867. .shopsx {
  868. width: 1px;
  869. height: 50rpx;
  870. background: #EEEEEE;
  871. margin-top: 30rpx;
  872. margin-left: 28rpx;
  873. }
  874. .shopBox {
  875. display: flex;
  876. padding: 30rpx 20rpx;
  877. margin: 0rpx 24rpx;
  878. margin-top: -60rpx;
  879. background-color: #FFFFFF;
  880. border-radius: 10rpx;
  881. }
  882. .shopCont {
  883. width: 405rpx;
  884. padding-left: 20rpx;
  885. }
  886. .shopName {
  887. font-size: 30rpx;
  888. font-weight: bold;
  889. color: #3C3C3C;
  890. line-height: 42rpx;
  891. }
  892. .Address {
  893. color: #999999;
  894. font-size: 24rpx;
  895. margin-top: 10rpx;
  896. }
  897. .shopRihgtTxt {
  898. color: #999999;
  899. font-size: 24rpx;
  900. }
  901. .shopRightBox {
  902. padding-left: 28rpx;
  903. }
  904. .detailedTitle {
  905. padding: 23rpx 20rpx;
  906. display: flex;
  907. text-align: center;
  908. align-content: flex-start;
  909. border-bottom: 1rpx solid #EEEEEE;
  910. font-size: 30rpx;
  911. font-weight: bold;
  912. color: #3C3C3C;
  913. }
  914. .detailedLine {
  915. display: flex;
  916. padding: 16rpx 20rpx;
  917. justify-content: space-between;
  918. align-items: center;
  919. }
  920. .detailedImg {
  921. width: 120rpx;
  922. height: 120rpx;
  923. border-radius: 10rpx;
  924. }
  925. .detailedName {
  926. display: flex;
  927. align-items: center;
  928. }
  929. .code {
  930. font-size: 26rpx;
  931. color: #333333;
  932. font-weight: bold;
  933. width: 180rpx
  934. }
  935. .old {
  936. color: #999999;
  937. font-weight: 400;
  938. text-decoration: line-through;
  939. }
  940. .redPoint {
  941. width: 10rpx;
  942. height: 10rpx;
  943. background: #FF0000;
  944. border-radius: 10rpx;
  945. margin-right: 10rpx;
  946. }
  947. .quanState {
  948. font-size: 22rpx;
  949. color: #F19D01;
  950. padding: 0 10rpx;
  951. border: 1rpx solid #F19D01;
  952. border-radius: 4rpx;
  953. margin-left: 20rpx;
  954. }
  955. .quanState2{
  956. font-size: 22rpx;
  957. color: #999999;
  958. padding: 0 10rpx;
  959. border: 1rpx solid #DDDDDD;
  960. border-radius: 4rpx;
  961. margin-left: 20rpx;
  962. }
  963. .information {
  964. background: #FFFFFF;
  965. border-radius: 10rpx;
  966. margin: 20rpx 24rpx;
  967. padding-bottom: 15rpx;
  968. }
  969. .informationLine {
  970. display: flex;
  971. padding: 15rpx 20rpx;
  972. }
  973. .informationLine2 {
  974. display: flex;
  975. justify-content: space-between;
  976. font-size: 26rpx;
  977. padding: 20rpx;
  978. align-items: center;
  979. padding-bottom: 0;
  980. }
  981. .salePrice {
  982. font-size: 26rpx;
  983. font-weight: 500;
  984. color: #333333;
  985. line-height: 45rpx;
  986. }
  987. .money {
  988. background: #FFFFFF;
  989. border-radius: 10rpx;
  990. margin: 20rpx 24rpx;
  991. display: flex;
  992. justify-content: space-between;
  993. font-size: 26rpx;
  994. padding: 30rpx 20rpx;
  995. }
  996. .informationTxt {
  997. width: 190rpx;
  998. font-size: 26rpx;
  999. color: #999999;
  1000. }
  1001. .line {
  1002. height: 20rpx;
  1003. background-color: #FFFFFF;
  1004. border-bottom: 1rpx solid #EEEEEE;
  1005. }
  1006. .goodsName {
  1007. width: 80%;
  1008. color: #333333;
  1009. font-size: 26rpx;
  1010. }
  1011. .goodsName2{
  1012. padding: 20rpx 20rpx 15rpx;
  1013. color: #333333;
  1014. font-size: 26rpx;
  1015. }
  1016. .informationNum {
  1017. color: #333333;
  1018. font-size: 26rpx;
  1019. width: 500rpx;
  1020. }
  1021. .codeCopy {
  1022. width: 77rpx;
  1023. height: 36rpx;
  1024. background: #F4F5F7;
  1025. border-radius: 22rpx;
  1026. font-size: 24rpx;
  1027. color: #333333;
  1028. text-align: center;
  1029. line-height: 33rpx;
  1030. padding: 0 15rpx;
  1031. margin-left: 20rpx;
  1032. }
  1033. .bottom {
  1034. display: flex;
  1035. justify-content: flex-end;
  1036. padding: 20rpx;
  1037. background-color: #FFFFFF;
  1038. align-items: center;
  1039. height: 98rpx;
  1040. width: 100vw;
  1041. position: fixed;
  1042. bottom: 0rpx;
  1043. padding-bottom: constant(safe-area-inset-bottom);
  1044. padding-bottom: env(safe-area-inset-bottom);
  1045. }
  1046. .cancel {
  1047. color: #3C3C3C;
  1048. font-size: 28rpx;
  1049. width: 150rpx;
  1050. height: 56rpx;
  1051. border-radius: 36rpx;
  1052. border: 1rpx solid #DDDDDD;
  1053. text-align: center;
  1054. line-height: 56rpx;
  1055. margin-right: 40rpx;
  1056. }
  1057. .defer {
  1058. color: #D53533;
  1059. font-size: 28rpx;
  1060. width: 150rpx;
  1061. height: 56rpx;
  1062. border-radius: 36rpx;
  1063. border: 1rpx solid #D53533;
  1064. text-align: center;
  1065. line-height: 56rpx;
  1066. margin-right: 40rpx;
  1067. }
  1068. .itemBox {
  1069. margin: 20rpx;
  1070. border-radius: 10rpx;
  1071. border: 2rpx solid #EEEEEE;
  1072. }
  1073. .itemTop {
  1074. padding: 18rpx 20rpx;
  1075. padding-right: 0;
  1076. background-color: #FFEFD5;
  1077. display: flex;
  1078. justify-content: space-between;
  1079. align-content: center;
  1080. }
  1081. .topTitle {
  1082. width: 104rpx;
  1083. font-size: 26rpx;
  1084. color: #333333;
  1085. margin-right: 20rpx;
  1086. text-align: right;
  1087. }
  1088. .leftItem {
  1089. font-size: 26rpx;
  1090. color: #333333;
  1091. margin-right: 20rpx;
  1092. flex-grow: 1;
  1093. /* 隐藏文字显示 ...不换行 */
  1094. overflow: hidden;
  1095. text-overflow: ellipsis;
  1096. white-space: nowrap;
  1097. }
  1098. .itemContent {
  1099. padding: 20rpx;
  1100. padding-right: 0;
  1101. background-color: #FFFFFF;
  1102. display: flex;
  1103. justify-content: space-between;
  1104. align-content: center;
  1105. }
  1106. .maBox {
  1107. width: 100%;
  1108. height: 100vh;
  1109. background: rgba(0, 0, 0, 0.4);
  1110. position: fixed;
  1111. left: 0;
  1112. top: 0;
  1113. z-index: 9999;
  1114. }
  1115. .querenMa {
  1116. width: 578;
  1117. height: 640rpx;
  1118. background: #ffffff;
  1119. margin: 0 86rpx;
  1120. margin-top: 50%;
  1121. border-radius: 24rpx;
  1122. }
  1123. .maTop {
  1124. display: flex;
  1125. justify-content: space-between;
  1126. align-items: center;
  1127. padding: 30rpx 20rpx 15rpx;
  1128. }
  1129. .maTitle {
  1130. color: #666666;
  1131. font-size: 26rpx;
  1132. text-align: center;
  1133. padding-left: 100rpx;
  1134. }
  1135. .swiper{
  1136. width: 100%;
  1137. height: 85%;
  1138. background: #FFFFFF;
  1139. }
  1140. .swiper-item{
  1141. width: 100%;
  1142. height: 100%;
  1143. }
  1144. .maCode {
  1145. font-size: 30rpx;
  1146. font-weight: 500;
  1147. color: #333333;
  1148. line-height: 42rpx;
  1149. margin-bottom: 40rpx;
  1150. text-align: center;
  1151. }
  1152. .maBoximg {
  1153. width: 400rpx;
  1154. height: 400rpx;
  1155. margin-left: 86rpx;
  1156. }
  1157. .tuikuanBox {
  1158. width: 100%;
  1159. height: 100vh;
  1160. background: rgba(0, 0, 0, 0.4);
  1161. position: fixed;
  1162. left: 0;
  1163. top: 0;
  1164. z-index: 999;
  1165. }
  1166. .shopGhBox{
  1167. width: 638rpx;
  1168. height: 300rpx;
  1169. background: #ffffff;
  1170. margin: 0 36rpx;
  1171. margin-top: 50%;
  1172. border-radius: 24rpx;
  1173. padding: 30rpx 20rpx;
  1174. }
  1175. .tuikuan {
  1176. width: 638rpx;
  1177. height: 500rpx;
  1178. background: #ffffff;
  1179. margin: 0 36rpx;
  1180. margin-top: 50%;
  1181. border-radius: 24rpx;
  1182. padding: 30rpx 20rpx;
  1183. }
  1184. .tuiTop {
  1185. display: flex;
  1186. justify-content: space-between;
  1187. margin-bottom: 36rpx;
  1188. }
  1189. .tuiTitle {
  1190. width: 56rpx;
  1191. height: 40rpx;
  1192. font-size: 28rpx;
  1193. font-weight: 500;
  1194. color: #3C3C3C;
  1195. line-height: 40rpx;
  1196. }
  1197. .contLine {
  1198. display: flex;
  1199. justify-content: space-between;
  1200. font-size: 28rpx;
  1201. padding: 30rpx 0;
  1202. border-bottom: 1px solid #EEEEEE;
  1203. }
  1204. .contlineLeft {
  1205. color: #666666;
  1206. line-height: 40rpx;
  1207. align-items: center;
  1208. }
  1209. .star {
  1210. width: 14rpx;
  1211. height: 14rpx;
  1212. padding-bottom: 5rpx;
  1213. }
  1214. .carModel {
  1215. width: 350rpx;
  1216. text-align: left;
  1217. }
  1218. .noColor {
  1219. color: #CCCCCC;
  1220. }
  1221. .carModelRight {
  1222. display: flex;
  1223. justify-content: flex-start;
  1224. align-items: center;
  1225. }
  1226. .contlineRight {
  1227. color: #333333;
  1228. line-height: 40rpx;
  1229. width: 400rpx;
  1230. text-align: right;
  1231. }
  1232. .contlineRightInput {
  1233. color: #333333;
  1234. text-align: left;
  1235. font-size: 28rpx;
  1236. min-height: 182rpx;
  1237. width: 600rpx;
  1238. }
  1239. .contlineRightJt {
  1240. width: 30rpx;
  1241. height: 30rpx;
  1242. }
  1243. .tuiBtns {
  1244. display: flex;
  1245. padding: 40rpx 20rpx 10rpx;
  1246. }
  1247. .btn {
  1248. width: 288rpx;
  1249. height: 98rpx;
  1250. background: #F4F5F7;
  1251. border-radius: 10rpx;
  1252. margin-right: 22rpx;
  1253. font-size: 30rpx;
  1254. font-weight: 500;
  1255. color: #3C3C3C;
  1256. line-height: 98rpx;
  1257. text-align: center;
  1258. }
  1259. .btn2 {
  1260. width: 288rpx;
  1261. height: 98rpx;
  1262. background: #3F90F7;
  1263. border-radius: 10rpx;
  1264. font-size: 30rpx;
  1265. font-weight: 500;
  1266. color: #FFFFFF;
  1267. line-height: 98rpx;
  1268. text-align: center;
  1269. }
  1270. .writeoffLine{
  1271. display: flex;justify-content: space-between;
  1272. color: #999999;font-size: 24rpx;
  1273. line-height: 33rpx;padding-top: 8rpx;
  1274. }
  1275. .writeoffLineBox{
  1276. padding: 0 20rpx;
  1277. }
  1278. .detailedLineBox .detailedLine{
  1279. padding-bottom: 0rpx;
  1280. }
  1281. .writeoffXx .informationNum{
  1282. width: 500rpx;
  1283. }
  1284. .detailedLineBox{
  1285. padding-bottom: 10rpx;
  1286. }
  1287. </style>