mallOrderDetail.vue 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301
  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. }
  309. },
  310. onLoad(opt) {
  311. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  312. this.id = opt.id
  313. this.SheetType = opt.SheetType
  314. if (this.id) {
  315. this.getData()
  316. }
  317. this.getTuiKuanData()
  318. var qxnum = uni.getStorageSync("quanxian");
  319. if (qxnum == 1) {
  320. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  321. }else if(qxnum==2){
  322. window.getAndroid=this.getAndroid;
  323. }
  324. },
  325. methods: {
  326. isShowMaSHow(index){
  327. this.swiperIndex=index
  328. this.isShowMa=true
  329. },
  330. getAndroid(e){
  331. this.iOSInfo=e
  332. },
  333. goTui() {
  334. let yuanyin = this.tuicauseList[this.index].contents
  335. if (!yuanyin) {
  336. uni.showToast({
  337. title: '请选择退款原因',
  338. icon: 'none',
  339. duration: 3000
  340. });
  341. return false;
  342. }
  343. uni.showLoading({
  344. title: '加载中'
  345. })
  346. var that = this
  347. this.$http('openH5Indent/reimburse', {
  348. id: this.id,
  349. refundReason: yuanyin,
  350. refundComment: this.tuikuanContent,
  351. realMoney: this.orderData.data.realMoney
  352. }, 'GET').then(res => {
  353. uni.hideLoading();
  354. // var list = res.data.Items
  355. // var list = res.data
  356. console.log("result+=", res);
  357. if (res.code == 0) {
  358. that.isShowTui = false
  359. uni.showToast({
  360. title: '退款成功',
  361. icon: 'none',
  362. duration: 2000
  363. });
  364. setTimeout(function() {
  365. that.getData();
  366. }, 1000);
  367. }
  368. })
  369. },
  370. bindChange(e) {
  371. console.log(e);
  372. this.index = e.detail.value
  373. },
  374. feedDone(e) {
  375. this.tuikuanContent = e.target.value
  376. },
  377. // 核销
  378. goHeXiao() {
  379. console.log(this.id)
  380. //app交互
  381. var standalone = window.navigator.standalone
  382. var userAgent = window.navigator.userAgent.toLowerCase()
  383. var safari = /safari/.test(userAgent)
  384. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  385. var android = /android/.test(userAgent)
  386. if (ios) {
  387. if (true) { //!standalone&& !safari
  388. window.webkit.messageHandlers.goHeXiao.postMessage({
  389. "id": this.id ? this.id : ''
  390. })
  391. }
  392. } else if (android) {
  393. window.android.writeoff(this.id)
  394. }
  395. },
  396. getTuiKuanData() {
  397. uni.showLoading({
  398. title: '加载中'
  399. });
  400. this.$http('openH5Indent/getOpenReason', {
  401. // id: this.id,
  402. }, 'GET').then(res => {
  403. uni.hideLoading();
  404. this.tuicauseList = res.data;
  405. })
  406. },
  407. pay() {
  408. this.$http('openMallOrder/unifiedPay', {
  409. sheetId: this.id
  410. }, 'POST').then(res => {
  411. if (res.code == 0) {
  412. this.requestPayment(res.data)
  413. } else {
  414. uni.showToast({
  415. title: res.msg,
  416. icon: 'none',
  417. duration: 3000
  418. });
  419. }
  420. })
  421. },
  422. requestPayment(res) {
  423. var payInfo = res;
  424. //console.log(payInfo)
  425. //console.log(String(Date.now()))
  426. var that = this;
  427. uni.requestPayment({
  428. provider: 'wxpay',
  429. //timeStamp: String(Date.now()),
  430. timeStamp: payInfo.timeStamp,
  431. nonceStr: payInfo.nonceStr,
  432. package: payInfo.package,
  433. signType: payInfo.signType,
  434. paySign: payInfo.paySign,
  435. appid: payInfo.appId,
  436. success: function(res) {
  437. console.log('success:' + JSON.stringify(res));
  438. uni.showToast({
  439. title: '支付成功',
  440. icon: 'none',
  441. duration: 2000
  442. });
  443. that.getData()
  444. },
  445. fail: function(err) {
  446. console.log(err)
  447. uni.showToast({
  448. title: '支付失败',
  449. icon: 'none',
  450. duration: 2000
  451. });
  452. }
  453. });
  454. },
  455. copy(txt) {
  456. uni.setClipboardData({
  457. data: txt,
  458. success: function() {
  459. uni.showToast({
  460. title: '复制成功',
  461. icon: 'none',
  462. duration: 2000
  463. });
  464. }
  465. });
  466. },
  467. upTime() {
  468. uni.showLoading({
  469. title: '加载中'
  470. })
  471. var that = this
  472. this.$http('openH5Indent/carOwner/updateTimeOfAppointment', {
  473. id: this.id,
  474. shopId: this.orderData.shopInfo.id,
  475. billDate: this.billDate
  476. }, 'POST').then(res => {
  477. uni.hideLoading();
  478. // var list = res.data.Items
  479. var list = res.data
  480. console.log("result+=", res.data);
  481. uni.showToast({
  482. title: '延期成功',
  483. icon: 'none',
  484. duration: 2000
  485. });
  486. setTimeout(function() {
  487. that.getData();
  488. }, 1000);
  489. })
  490. },
  491. cancelBespeak() {
  492. var that = this
  493. uni.showModal({
  494. title: '提示',
  495. content: '是否取消该订单',
  496. cancelText: '否',
  497. confirmText: '是',
  498. success: function(res) {
  499. if (res.confirm) {
  500. uni.showLoading({
  501. title: '加载中'
  502. })
  503. that.$http('openH5Indent/updateSheetState', {
  504. id: that.id,
  505. }, 'POST').then(res => {
  506. uni.hideLoading();
  507. // var list = res.data.Items
  508. uni.showToast({
  509. title: '取消成功',
  510. icon: 'none',
  511. duration: 2000
  512. });
  513. setTimeout(function() {
  514. that.getData();
  515. }, 1000);
  516. })
  517. } else if (res.cancel) {
  518. }
  519. }
  520. });
  521. },
  522. map() {
  523. console.log("打开地图")
  524. var that = this;
  525. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  526. uni.showToast({
  527. title: '该店铺未设置定位',
  528. icon: 'none',
  529. duration: 3000
  530. });
  531. } else {
  532. uni.openLocation({
  533. latitude: Number(that.orderData.shopInfo.lat),
  534. longitude: Number(that.orderData.shopInfo.lng),
  535. name: that.orderData.shopInfo.shopName,
  536. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  537. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  538. success: function() {
  539. console.log('success');
  540. },
  541. fail(err) {
  542. console.log(err)
  543. }
  544. });
  545. }
  546. },
  547. call() {
  548. uni.makePhoneCall({
  549. phoneNumber: this.orderData.shopInfo.mobilePhone
  550. });
  551. },
  552. getData() {
  553. uni.showLoading({
  554. title: '加载中'
  555. });
  556. this.$http('openH5Indent/queryOpenSheet', {
  557. id: this.id,
  558. }, 'GET').then(res => {
  559. uni.hideLoading();
  560. this.orderData = res.data;
  561. if (this.quanMaList) {
  562. this.quanMaList = [];
  563. }
  564. let maList = this.orderData.OpenSheetQRCode;
  565. if (maList) {
  566. maList.forEach(item => {
  567. if (item.writeoffState == 1) {
  568. this.quanMaList.push(item.qrCode);
  569. }
  570. })
  571. }
  572. console.log('可用券码--', this.quanMaList);
  573. })
  574. },
  575. goback() {
  576. uni.navigateBack({
  577. delta: 1
  578. })
  579. },
  580. },
  581. onPullDownRefresh() {
  582. this.getData()
  583. setTimeout(function() {
  584. uni.stopPullDownRefresh();
  585. }, 1000);
  586. },
  587. }
  588. </script>
  589. <style scoped>
  590. .box {
  591. min-height: 100vh;
  592. background: #F4F5F7;
  593. padding-bottom: 135rpx;
  594. }
  595. .zdyNavBox {
  596. width: 100vw;
  597. background: #FFFFFF;
  598. position: fixed;
  599. top: 0;
  600. left: 0;
  601. z-index: 9999999;
  602. }
  603. .zdyNav {
  604. height: 44px;
  605. display: flex;
  606. justify-content: space-between;
  607. align-items: center;
  608. }
  609. .backImg {
  610. width: 44rpx;
  611. height: 44rpx;
  612. margin-left: 10rpx;
  613. margin-right: 20rpx;
  614. }
  615. .homeImg {
  616. width: 44rpx;
  617. height: 44rpx;
  618. }
  619. .zdyNavLeft {
  620. display: flex;
  621. align-items: center;
  622. }
  623. .zdyNavTitle {
  624. height: 44px;
  625. background: #FFFFFF;
  626. text-align: center;
  627. font-size: 34rpx;
  628. line-height: 44px;
  629. }
  630. .top {
  631. height: 190rpx;
  632. background-color: #FF0000;
  633. }
  634. .orderState {
  635. display: flex;
  636. justify-content: center;
  637. align-items: center;
  638. padding-top: 40rpx;
  639. }
  640. .SheetState {
  641. display: flex;
  642. justify-content: center;
  643. font-size: 36rpx;
  644. font-weight: 500;
  645. color: #FFFFFF;
  646. margin-left: 15rpx;
  647. }
  648. .timeEditImg {
  649. width: 25rpx;
  650. height: 25rpx;
  651. padding-left: 20rpx;
  652. }
  653. .shopBoximg {
  654. width: 40rpx;
  655. height: 40rpx;
  656. }
  657. .shopRightImg {
  658. width: 44rpx;
  659. height: 45rpx;
  660. }
  661. .shopsx {
  662. width: 1px;
  663. height: 50rpx;
  664. background: #EEEEEE;
  665. margin-top: 30rpx;
  666. margin-left: 28rpx;
  667. }
  668. .shopBox {
  669. display: flex;
  670. padding: 30rpx 20rpx;
  671. margin: 0rpx 24rpx;
  672. margin-top: -60rpx;
  673. background-color: #FFFFFF;
  674. border-radius: 10rpx;
  675. }
  676. .shopCont {
  677. width: 405rpx;
  678. padding-left: 20rpx;
  679. }
  680. .shopName {
  681. font-size: 30rpx;
  682. font-weight: bold;
  683. color: #3C3C3C;
  684. line-height: 42rpx;
  685. }
  686. .Address {
  687. color: #999999;
  688. font-size: 24rpx;
  689. margin-top: 10rpx;
  690. }
  691. .shopRihgtTxt {
  692. color: #999999;
  693. font-size: 24rpx;
  694. }
  695. .shopRightBox {
  696. padding-left: 28rpx;
  697. }
  698. .detailedTitle {
  699. padding: 23rpx 20rpx;
  700. display: flex;
  701. text-align: center;
  702. align-content: flex-start;
  703. border-bottom: 1rpx solid #EEEEEE;
  704. font-size: 30rpx;
  705. font-weight: bold;
  706. color: #3C3C3C;
  707. }
  708. .detailedLine {
  709. display: flex;
  710. padding: 16rpx 20rpx;
  711. justify-content: space-between;
  712. align-items: center;
  713. }
  714. .detailedImg {
  715. width: 120rpx;
  716. height: 120rpx;
  717. border-radius: 10rpx;
  718. }
  719. .detailedName {
  720. display: flex;
  721. align-items: center;
  722. }
  723. .code {
  724. font-size: 26rpx;
  725. color: #333333;
  726. font-weight: bold;
  727. width: 180rpx
  728. }
  729. .old {
  730. color: #999999;
  731. font-weight: 400;
  732. text-decoration: line-through;
  733. }
  734. .redPoint {
  735. width: 10rpx;
  736. height: 10rpx;
  737. background: #FF0000;
  738. border-radius: 10rpx;
  739. margin-right: 10rpx;
  740. }
  741. .quanState {
  742. font-size: 22rpx;
  743. color: #F19D01;
  744. padding: 0 10rpx;
  745. border: 1rpx solid #F19D01;
  746. border-radius: 4rpx;
  747. margin-left: 20rpx;
  748. }
  749. .quanState2 {
  750. font-size: 22rpx;
  751. color: #999999;
  752. padding: 0 10rpx;
  753. border: 1rpx solid #DDDDDD;
  754. border-radius: 4rpx;
  755. margin-left: 20rpx;
  756. }
  757. .information {
  758. background: #FFFFFF;
  759. border-radius: 10rpx;
  760. margin: 20rpx 24rpx;
  761. padding-bottom: 15rpx;
  762. }
  763. .informationLine {
  764. display: flex;
  765. padding: 15rpx 20rpx;
  766. }
  767. .informationLine2 {
  768. display: flex;
  769. justify-content: space-between;
  770. font-size: 26rpx;
  771. padding: 0 20rpx;
  772. }
  773. .salePrice {
  774. font-size: 26rpx;
  775. font-weight: 500;
  776. color: #333333;
  777. line-height: 45rpx;
  778. }
  779. .money {
  780. background: #FFFFFF;
  781. border-radius: 10rpx;
  782. margin: 20rpx 24rpx;
  783. display: flex;
  784. justify-content: space-between;
  785. font-size: 26rpx;
  786. padding: 30rpx 20rpx;
  787. }
  788. .informationTxt {
  789. width: 190rpx;
  790. font-size: 26rpx;
  791. color: #999999;
  792. }
  793. .line {
  794. height: 20rpx;
  795. background-color: #FFFFFF;
  796. border-bottom: 1rpx solid #EEEEEE;
  797. }
  798. .goodsName {
  799. padding: 20rpx 20rpx 15rpx;
  800. color: #333333;
  801. font-size: 26rpx;
  802. }
  803. .informationNum {
  804. color: #333333;
  805. font-size: 26rpx;
  806. }
  807. .codeCopy {
  808. width: 77rpx;
  809. height: 36rpx;
  810. background: #F4F5F7;
  811. border-radius: 22rpx;
  812. font-size: 24rpx;
  813. color: #333333;
  814. text-align: center;
  815. line-height: 33rpx;
  816. padding: 0 15rpx;
  817. margin-left: 20rpx;
  818. }
  819. .bottom {
  820. display: flex;
  821. justify-content: flex-end;
  822. padding: 20rpx;
  823. background-color: #FFFFFF;
  824. align-items: center;
  825. height: 98rpx;
  826. width: 100vw;
  827. position: fixed;
  828. bottom: 0rpx;
  829. padding-bottom: constant(safe-area-inset-bottom);
  830. padding-bottom: env(safe-area-inset-bottom);
  831. }
  832. .cancel {
  833. color: #3C3C3C;
  834. font-size: 28rpx;
  835. width: 150rpx;
  836. height: 56rpx;
  837. border-radius: 36rpx;
  838. border: 1rpx solid #DDDDDD;
  839. text-align: center;
  840. line-height: 56rpx;
  841. margin-right: 40rpx;
  842. }
  843. .defer {
  844. color: #D53533;
  845. font-size: 28rpx;
  846. width: 150rpx;
  847. height: 56rpx;
  848. border-radius: 36rpx;
  849. border: 1rpx solid #D53533;
  850. text-align: center;
  851. line-height: 56rpx;
  852. margin-right: 40rpx;
  853. }
  854. .itemBox {
  855. margin: 20rpx;
  856. border-radius: 10rpx;
  857. border: 2rpx solid #EEEEEE;
  858. }
  859. .itemTop {
  860. padding: 18rpx 20rpx;
  861. padding-right: 0;
  862. background-color: #FFEFD5;
  863. display: flex;
  864. justify-content: space-between;
  865. align-content: center;
  866. }
  867. .topTitle {
  868. width: 104rpx;
  869. font-size: 26rpx;
  870. color: #333333;
  871. margin-right: 20rpx;
  872. text-align: right;
  873. }
  874. .leftItem {
  875. font-size: 26rpx;
  876. color: #333333;
  877. margin-right: 20rpx;
  878. flex-grow: 1;
  879. /* 隐藏文字显示 ...不换行 */
  880. overflow: hidden;
  881. text-overflow: ellipsis;
  882. white-space: nowrap;
  883. }
  884. .itemContent {
  885. padding: 20rpx;
  886. padding-right: 0;
  887. background-color: #FFFFFF;
  888. display: flex;
  889. justify-content: space-between;
  890. align-content: center;
  891. }
  892. .maBox {
  893. width: 100%;
  894. height: 100vh;
  895. background: rgba(0, 0, 0, 0.4);
  896. position: fixed;
  897. left: 0;
  898. top: 0;
  899. z-index: 9999;
  900. }
  901. .querenMa {
  902. width: 578rpx;
  903. height: 640rpx;
  904. background: #ffffff;
  905. margin: 0 86rpx;
  906. margin-top: 50%;
  907. border-radius: 24rpx;
  908. }
  909. .maTop {
  910. display: flex;
  911. justify-content: space-between;
  912. align-items: center;
  913. padding: 30rpx 20rpx 15rpx;
  914. }
  915. .maTitle {
  916. color: #666666;
  917. font-size: 26rpx;
  918. text-align: center;
  919. padding-left: 100rpx;
  920. }
  921. .swiper {
  922. width: 100%;
  923. height: 85%;
  924. background: #FFFFFF;
  925. }
  926. .swiper-item {
  927. width: 100%;
  928. height: 100%;
  929. }
  930. .maCode {
  931. font-size: 30rpx;
  932. font-weight: 500;
  933. color: #333333;
  934. line-height: 42rpx;
  935. margin-bottom: 40rpx;
  936. text-align: center;
  937. }
  938. .maBoximg {
  939. width: 400rpx;
  940. height: 400rpx;
  941. margin-left: 86rpx;
  942. }
  943. .tuikuanBox {
  944. width: 100%;
  945. height: 100vh;
  946. background: rgba(0, 0, 0, 0.4);
  947. position: fixed;
  948. left: 0;
  949. top: 0;
  950. z-index: 999;
  951. }
  952. .tuikuan {
  953. width: 638rpx;
  954. height: 664rpx;
  955. background: #ffffff;
  956. margin: 0 36rpx;
  957. margin-top: 50%;
  958. border-radius: 24rpx;
  959. padding: 30rpx 20rpx;
  960. }
  961. .tuiTop {
  962. display: flex;
  963. justify-content: space-between;
  964. margin-bottom: 36rpx;
  965. }
  966. .tuiTitle {
  967. width: 56rpx;
  968. height: 40rpx;
  969. font-size: 28rpx;
  970. font-weight: 500;
  971. color: #3C3C3C;
  972. line-height: 40rpx;
  973. }
  974. .contLine {
  975. display: flex;
  976. justify-content: space-between;
  977. font-size: 28rpx;
  978. padding: 30rpx 0;
  979. border-bottom: 1px solid #EEEEEE;
  980. }
  981. .contlineLeft {
  982. color: #666666;
  983. line-height: 40rpx;
  984. align-items: center;
  985. }
  986. .star {
  987. width: 14rpx;
  988. height: 14rpx;
  989. padding-bottom: 5rpx;
  990. }
  991. .carModel {
  992. width: 350rpx;
  993. text-align: left;
  994. }
  995. .noColor {
  996. color: #CCCCCC;
  997. }
  998. .carModelRight {
  999. display: flex;
  1000. justify-content: flex-start;
  1001. align-items: center;
  1002. }
  1003. .contlineRight {
  1004. color: #333333;
  1005. line-height: 40rpx;
  1006. width: 400rpx;
  1007. text-align: right;
  1008. }
  1009. .contlineRightInput {
  1010. color: #333333;
  1011. text-align: left;
  1012. font-size: 28rpx;
  1013. min-height: 182rpx;
  1014. width: 400rpx;
  1015. }
  1016. .contlineRightJt {
  1017. width: 30rpx;
  1018. height: 30rpx;
  1019. }
  1020. .tuiBtns {
  1021. display: flex;
  1022. padding: 40rpx 20rpx 10rpx;
  1023. }
  1024. .btn {
  1025. width: 288rpx;
  1026. height: 98rpx;
  1027. background: #F4F5F7;
  1028. border-radius: 10rpx;
  1029. margin-right: 22rpx;
  1030. font-size: 30rpx;
  1031. font-weight: 500;
  1032. color: #3C3C3C;
  1033. line-height: 98rpx;
  1034. text-align: center;
  1035. }
  1036. .btn2 {
  1037. width: 288rpx;
  1038. height: 98rpx;
  1039. background: #3F90F7;
  1040. border-radius: 10rpx;
  1041. font-size: 30rpx;
  1042. font-weight: 500;
  1043. color: #FFFFFF;
  1044. line-height: 98rpx;
  1045. text-align: center;
  1046. }
  1047. .writeoffLine{
  1048. display: flex;justify-content: space-between;
  1049. color: #999999;font-size: 24rpx;
  1050. line-height: 33rpx;padding-top: 8rpx;
  1051. }
  1052. .writeoffLineBox{
  1053. padding: 0 20rpx;
  1054. }
  1055. .detailedLineBox .detailedLine{
  1056. padding-bottom: 0rpx;
  1057. }
  1058. .writeoffXx .informationNum{
  1059. width: 500rpx;
  1060. }
  1061. .detailedLineBox{
  1062. padding-bottom: 10rpx;
  1063. }
  1064. </style>