mallOrderDetail.vue 29 KB

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