rescueOrderDetail.vue 31 KB

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