mallOrderDetail.vue 31 KB

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