activityOrderDetail.vue 28 KB

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