paintOrderDetail.vue 29 KB

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