paintOrderDetail.vue 30 KB

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