activityOrderDetail.vue 30 KB

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