mallOrderDetail.vue 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382
  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.newCustomer){
  414. uni.showModal({
  415. title: '提示',
  416. content: data.newCustomerMsg,
  417. success: function(resTK) {
  418. }
  419. });
  420. var token=res.data.token
  421. data.loginInfo={}
  422. data.loginInfo.token=token
  423. this.$store.commit('mutationswxOpenData', data);
  424. return false;
  425. }
  426. if(data.loginInfo){
  427. this.userInfo=data.loginInfo.openUser;
  428. this.wxOpenData=data.loginInfo;
  429. this.$store.commit('mutationswxOpenData', data)
  430. this.$store.commit('mutationsuserInfo', this.userInfo)
  431. this.getData()
  432. }
  433. })
  434. },
  435. pay(){
  436. this.$http('openMallOrder/unifiedPay', {
  437. sheetId:this.id
  438. },'POST').then(res => {
  439. if(res.code==0){
  440. this.requestPayment(res.data)
  441. }else{
  442. uni.showToast({
  443. title: res.msg,
  444. icon: 'none',
  445. duration: 3000
  446. });
  447. }
  448. })
  449. },
  450. requestPayment(res){
  451. var payInfo=res;
  452. //console.log(payInfo)
  453. //console.log(String(Date.now()))
  454. var that=this;
  455. uni.requestPayment({
  456. provider: 'wxpay',
  457. //timeStamp: String(Date.now()),
  458. timeStamp: payInfo.timeStamp,
  459. nonceStr: payInfo.nonceStr,
  460. package:payInfo.package,
  461. signType: payInfo.signType,
  462. paySign: payInfo.paySign,
  463. appid:payInfo.appId,
  464. success: function (res) {
  465. console.log('success:' + JSON.stringify(res));
  466. uni.showToast({
  467. title: '支付成功',
  468. icon:'none',
  469. duration: 2000
  470. });
  471. that.getData()
  472. },
  473. fail: function (err) {
  474. console.log(err)
  475. uni.showToast({
  476. title: '支付失败',
  477. icon:'none',
  478. duration: 2000
  479. });
  480. }
  481. });
  482. },
  483. copy(txt) {
  484. uni.setClipboardData({
  485. data: txt,
  486. success: function() {
  487. uni.showToast({
  488. title: '复制成功',
  489. icon: 'none',
  490. duration: 2000
  491. });
  492. }
  493. });
  494. },
  495. upTime() {
  496. uni.showLoading({
  497. title: '加载中'
  498. })
  499. var that = this
  500. this.$http('openreservation/carOwner/updateTimeOfAppointment', {
  501. id: this.id,
  502. shopId: this.orderData.shopInfo.id,
  503. billDate: this.billDate
  504. }, 'POST').then(res => {
  505. uni.hideLoading();
  506. // var list = res.data.Items
  507. var list = res.data
  508. console.log("result+=", res.data);
  509. uni.showToast({
  510. title: '延期成功',
  511. icon: 'none',
  512. duration: 2000
  513. });
  514. setTimeout(function() {
  515. that.getData();
  516. }, 1000);
  517. })
  518. },
  519. cancelBespeak(){
  520. var that = this
  521. uni.showModal({
  522. title: '提示',
  523. content: '是否取消该订单',
  524. cancelText:'否',
  525. confirmText:'是',
  526. success: function (res) {
  527. if (res.confirm) {
  528. uni.showLoading({
  529. title: '加载中'
  530. })
  531. that.$http('openOrderManagement/updateSheetState', {
  532. id: that.id,
  533. }, 'POST').then(res => {
  534. uni.hideLoading();
  535. // var list = res.data.Items
  536. uni.showToast({
  537. title: '取消成功',
  538. icon: 'none',
  539. duration: 2000
  540. });
  541. setTimeout(function() {
  542. that.getData();
  543. }, 1000);
  544. })
  545. } else if (res.cancel) {
  546. }
  547. }
  548. });
  549. },
  550. map() {
  551. console.log("打开地图")
  552. var that = this;
  553. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  554. uni.showToast({
  555. title: '该店铺未设置定位',
  556. icon: 'none',
  557. duration: 3000
  558. });
  559. } else {
  560. uni.openLocation({
  561. latitude: Number(that.orderData.shopInfo.lat),
  562. longitude: Number(that.orderData.shopInfo.lng),
  563. name: that.orderData.shopInfo.shopName,
  564. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  565. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  566. success: function() {
  567. console.log('success');
  568. },
  569. fail(err) {
  570. console.log(err)
  571. }
  572. });
  573. }
  574. },
  575. call() {
  576. uni.makePhoneCall({
  577. phoneNumber: this.orderData.shopInfo.mobilePhone
  578. });
  579. },
  580. getData() {
  581. uni.showLoading({
  582. title: '加载中'
  583. });
  584. this.$http('openOrderManagement/queryOpenSheet', {
  585. id: this.id,
  586. }, 'GET').then(res => {
  587. uni.hideLoading();
  588. this.orderData = res.data;
  589. if (this.quanMaList) {
  590. this.quanMaList = [];
  591. }
  592. let maList = this.orderData.OpenSheetQRCode;
  593. if (maList) {
  594. maList.forEach(item =>{
  595. if (item.writeoffState==1) {
  596. this.quanMaList.push(item.qrCode);
  597. }
  598. })
  599. }
  600. console.log('可用券码--',this.quanMaList);
  601. })
  602. },
  603. goback() {
  604. uni.navigateBack({
  605. delta: 1
  606. })
  607. },
  608. gohome(){
  609. uni.switchTab({
  610. url:'../../index/index'
  611. })
  612. },
  613. },
  614. onPullDownRefresh() {
  615. this.getData()
  616. setTimeout(function() {
  617. uni.stopPullDownRefresh();
  618. }, 1000);
  619. },
  620. }
  621. </script>
  622. <style scoped>
  623. .box {
  624. min-height: 100vh;
  625. background: #F4F5F7;
  626. padding-bottom: 135rpx;
  627. }
  628. .zdyNavBox{
  629. width: 100vw;
  630. background: #FFFFFF;
  631. position: fixed;
  632. top: 0;
  633. left: 0;
  634. z-index: 9999999;
  635. }
  636. .zdyNav{
  637. height: 44px;
  638. display: flex;
  639. justify-content: space-between;
  640. align-items: center;
  641. }
  642. .backImg{
  643. width: 44rpx;
  644. height: 44rpx;
  645. margin-left: 10rpx;
  646. margin-right: 20rpx;
  647. }
  648. .homeImg{
  649. width: 44rpx;
  650. height: 44rpx;
  651. }
  652. .zdyNavLeft{
  653. display: flex;
  654. align-items: center;
  655. }
  656. .zdyNavTitle{
  657. width: 100vw;
  658. height: 44px;
  659. background: #FFFFFF;
  660. text-align: center;
  661. font-size: 34rpx;
  662. line-height: 44px;
  663. }
  664. .top {
  665. height: 190rpx;
  666. background: #FF0000;
  667. }
  668. .orderState {
  669. display: flex;
  670. justify-content: center;
  671. align-items: center;
  672. padding-top: 40rpx;
  673. }
  674. .SheetState {
  675. display: flex;
  676. justify-content: center;
  677. font-size: 36rpx;
  678. font-weight: 500;
  679. color: #FFFFFF;
  680. margin-left: 15rpx;
  681. }
  682. .timeEditImg {
  683. width: 25rpx;
  684. height: 25rpx;
  685. padding-left: 20rpx;
  686. }
  687. .shopBoximg {
  688. width: 40rpx;
  689. height: 40rpx;
  690. }
  691. .shopRightImg {
  692. width: 44rpx;
  693. height: 45rpx;
  694. }
  695. .shopsx {
  696. width: 1px;
  697. height: 50rpx;
  698. background: #EEEEEE;
  699. margin-top: 30rpx;
  700. margin-left: 28rpx;
  701. }
  702. .shopBox {
  703. display: flex;
  704. padding: 30rpx 20rpx;
  705. margin: 0rpx 24rpx;
  706. margin-top: -60rpx;
  707. background-color: #FFFFFF;
  708. border-radius: 10rpx;
  709. }
  710. .shopCont {
  711. width: 405rpx;
  712. padding-left: 20rpx;
  713. }
  714. .shopName {
  715. font-size: 30rpx;
  716. font-weight: bold;
  717. color: #3C3C3C;
  718. line-height: 42rpx;
  719. }
  720. .Address {
  721. color: #999999;
  722. font-size: 24rpx;
  723. margin-top: 10rpx;
  724. }
  725. .shopRihgtTxt {
  726. color: #999999;
  727. font-size: 24rpx;
  728. }
  729. .shopRightBox {
  730. padding-left: 28rpx;
  731. }
  732. .detailedTitle {
  733. padding: 23rpx 20rpx;
  734. display: flex;
  735. text-align: center;
  736. align-content: flex-start;
  737. border-bottom: 1rpx solid #EEEEEE;
  738. font-size: 30rpx;
  739. font-weight: bold;
  740. color: #3C3C3C;
  741. }
  742. .detailedLine {
  743. display: flex;
  744. padding: 16rpx 20rpx;
  745. justify-content: space-between;
  746. align-items: center;
  747. }
  748. .detailedImg {
  749. width: 120rpx;
  750. height: 120rpx;
  751. border-radius: 10rpx;
  752. }
  753. .detailedName {
  754. display: flex;
  755. align-items: center;
  756. }
  757. .code {
  758. font-size: 26rpx;
  759. color: #333333;
  760. font-weight: bold;
  761. width: 180rpx
  762. }
  763. .old {
  764. color: #999999;
  765. font-weight: 400;
  766. text-decoration: line-through;
  767. }
  768. .redPoint {
  769. width: 10rpx;
  770. height: 10rpx;
  771. background: #FF0000;
  772. border-radius: 10rpx;
  773. margin-right: 10rpx;
  774. }
  775. .quanState {
  776. font-size: 22rpx;
  777. color: #F19D01;
  778. padding: 0 10rpx;
  779. border: 1rpx solid #F19D01;
  780. border-radius: 4rpx;
  781. margin-left: 20rpx;
  782. }
  783. .quanState2{
  784. font-size: 22rpx;
  785. color: #999999;
  786. padding: 0 10rpx;
  787. border: 1rpx solid #DDDDDD;
  788. border-radius: 4rpx;
  789. margin-left: 20rpx;
  790. }
  791. .information {
  792. background: #FFFFFF;
  793. border-radius: 10rpx;
  794. margin: 20rpx 24rpx;
  795. padding-bottom: 15rpx;
  796. }
  797. .informationLine {
  798. display: flex;
  799. padding: 15rpx 20rpx;
  800. }
  801. .informationLine2 {
  802. display: flex;
  803. justify-content: space-between;
  804. font-size: 26rpx;
  805. padding: 0 20rpx;
  806. }
  807. .salePrice {
  808. font-size: 26rpx;
  809. font-weight: 500;
  810. color: #333333;
  811. line-height: 45rpx;
  812. }
  813. .money {
  814. background: #FFFFFF;
  815. border-radius: 10rpx;
  816. margin: 20rpx 24rpx;
  817. display: flex;
  818. justify-content: space-between;
  819. font-size: 26rpx;
  820. padding: 30rpx 20rpx;
  821. }
  822. .informationTxt {
  823. width: 190rpx;
  824. font-size: 26rpx;
  825. color: #999999;
  826. }
  827. .line {
  828. height: 20rpx;
  829. background-color: #FFFFFF;
  830. border-bottom: 1rpx solid #EEEEEE;
  831. }
  832. .goodsName {
  833. padding: 20rpx 20rpx 15rpx;
  834. color: #333333;
  835. font-size: 26rpx;
  836. }
  837. .informationNum {
  838. color: #333333;
  839. font-size: 26rpx;
  840. }
  841. .codeCopy {
  842. width: 77rpx;
  843. height: 36rpx;
  844. background: #F4F5F7;
  845. border-radius: 22rpx;
  846. font-size: 24rpx;
  847. color: #333333;
  848. text-align: center;
  849. line-height: 33rpx;
  850. padding: 0 15rpx;
  851. margin-left: 20rpx;
  852. }
  853. .orderBottom {
  854. width: 750rpx;
  855. height: 98rpx;
  856. background: #FFFFFF;
  857. position: fixed;
  858. left: 0;
  859. bottom: 0;
  860. display: flex;
  861. justify-content: flex-end;
  862. }
  863. .bottom {
  864. display: flex;
  865. justify-content: flex-end;
  866. padding: 20rpx;
  867. background-color: #FFFFFF;
  868. align-items: center;
  869. height: 98rpx;
  870. width: 100vw;
  871. position: fixed;
  872. bottom: 0rpx;
  873. padding-bottom: constant(safe-area-inset-bottom);
  874. padding-bottom: env(safe-area-inset-bottom);
  875. }
  876. .cancel {
  877. color: #3C3C3C;
  878. font-size: 28rpx;
  879. width: 150rpx;
  880. height: 56rpx;
  881. border-radius: 36rpx;
  882. border: 1rpx solid #DDDDDD;
  883. text-align: center;
  884. line-height: 56rpx;
  885. margin-right: 40rpx;
  886. }
  887. .defer {
  888. color: #D53533;
  889. font-size: 28rpx;
  890. width: 150rpx;
  891. height: 56rpx;
  892. border-radius: 36rpx;
  893. border: 1rpx solid #D53533;
  894. text-align: center;
  895. line-height: 56rpx;
  896. margin-right: 40rpx;
  897. }
  898. .itemBox {
  899. margin: 20rpx;
  900. border-radius: 10rpx;
  901. border: 2rpx solid #EEEEEE;
  902. }
  903. .itemTop {
  904. padding: 18rpx 20rpx;
  905. padding-right: 0;
  906. background-color: #FFEFD5;
  907. display: flex;
  908. justify-content: space-between;
  909. align-content: center;
  910. }
  911. .topTitle {
  912. width: 104rpx;
  913. font-size: 26rpx;
  914. color: #333333;
  915. margin-right: 20rpx;
  916. text-align: right;
  917. }
  918. .leftItem {
  919. font-size: 26rpx;
  920. color: #333333;
  921. margin-right: 20rpx;
  922. flex-grow: 1;
  923. /* 隐藏文字显示 ...不换行 */
  924. overflow: hidden;
  925. text-overflow: ellipsis;
  926. white-space: nowrap;
  927. }
  928. .itemContent {
  929. padding: 20rpx;
  930. padding-right: 0;
  931. background-color: #FFFFFF;
  932. display: flex;
  933. justify-content: space-between;
  934. align-content: center;
  935. }
  936. .maBox {
  937. width: 100%;
  938. height: 100vh;
  939. background: rgba(0, 0, 0, 0.4);
  940. position: fixed;
  941. left: 0;
  942. top: 0;
  943. z-index: 9999;
  944. }
  945. .querenMa {
  946. width: 578;
  947. height: 640rpx;
  948. background: #ffffff;
  949. margin: 0 86rpx;
  950. margin-top: 50%;
  951. border-radius: 24rpx;
  952. }
  953. .maTop {
  954. display: flex;
  955. justify-content: space-between;
  956. align-items: center;
  957. padding: 30rpx 20rpx 15rpx;
  958. }
  959. .maTitle {
  960. color: #666666;
  961. font-size: 26rpx;
  962. text-align: center;
  963. padding-left: 100rpx;
  964. }
  965. .swiper{
  966. width: 100%;
  967. height: 85%;
  968. background: #FFFFFF;
  969. }
  970. .swiper-item{
  971. width: 100%;
  972. height: 100%;
  973. }
  974. .maCode {
  975. font-size: 30rpx;
  976. font-weight: 500;
  977. color: #333333;
  978. line-height: 42rpx;
  979. margin-bottom: 40rpx;
  980. text-align: center;
  981. }
  982. .maBoximg {
  983. width: 400rpx;
  984. height: 400rpx;
  985. margin-left: 86rpx;
  986. }
  987. .authorizBox{
  988. width: 100vw;
  989. height: 100vh;
  990. background: rgba(0, 0, 0, 0.5);
  991. position: fixed;
  992. top: 0;
  993. left: 0;
  994. }
  995. .authorizCont{
  996. margin-top: 30vh;
  997. width: 564rpx;
  998. height: 408rpx;
  999. background: #FFFFFF;
  1000. border-radius: 24rpx;
  1001. margin-left: 93rpx;
  1002. position: relative;
  1003. }
  1004. .authorizCloseImg{
  1005. width: 62rpx;
  1006. height: 62rpx;
  1007. }
  1008. .sqLogoBox{
  1009. width: 180rpx;
  1010. height: 180rpx;
  1011. background: #FFFFFF;
  1012. border-radius: 90rpx;
  1013. text-align: center;
  1014. position: absolute;
  1015. top: -50rpx;
  1016. left: 192rpx;
  1017. }
  1018. .authorizName{
  1019. color: #333333;
  1020. line-height: 42rpx;
  1021. font-size: 30rpx;
  1022. text-align: center;
  1023. padding-top: 58rpx;
  1024. }
  1025. .authorizMs{
  1026. color: #999999;
  1027. line-height: 36rpx;
  1028. font-size: 26rpx;
  1029. width: 452rpx;
  1030. padding-top: 24rpx;
  1031. text-align: center;
  1032. margin-left: 56rpx;
  1033. }
  1034. .authorizContbutton{
  1035. width: 422rpx;
  1036. height: 88rpx;
  1037. background: #D53533;
  1038. border-radius: 44rpx;
  1039. line-height: 88rpx;
  1040. text-align: center;
  1041. font-size:30rpx;
  1042. color: #FFFFFF;
  1043. margin-top: 62rpx;
  1044. margin-left:71rpx;
  1045. }
  1046. .tuikuanBox {
  1047. width: 100%;
  1048. height: 100vh;
  1049. background: rgba(0, 0, 0, 0.4);
  1050. position: fixed;
  1051. left: 0;
  1052. top: 0;
  1053. z-index: 999;
  1054. }
  1055. .tuikuan {
  1056. width: 638rpx;
  1057. height: 664rpx;
  1058. background: #ffffff;
  1059. margin: 0 36rpx;
  1060. margin-top: 50%;
  1061. border-radius: 24rpx;
  1062. padding: 30rpx 20rpx;
  1063. }
  1064. .tuiTop {
  1065. display: flex;
  1066. justify-content: space-between;
  1067. margin-bottom: 36rpx;
  1068. }
  1069. .tuiTitle {
  1070. width: 56rpx;
  1071. height: 40rpx;
  1072. font-size: 28rpx;
  1073. font-weight: 500;
  1074. color: #3C3C3C;
  1075. line-height: 40rpx;
  1076. }
  1077. .contLine {
  1078. display: flex;
  1079. justify-content: space-between;
  1080. font-size: 28rpx;
  1081. padding: 30rpx 0;
  1082. border-bottom: 1px solid #EEEEEE;
  1083. }
  1084. .contlineLeft {
  1085. color: #666666;
  1086. line-height: 40rpx;
  1087. align-items: center;
  1088. }
  1089. .star {
  1090. width: 14rpx;
  1091. height: 14rpx;
  1092. padding-bottom: 5rpx;
  1093. }
  1094. .carModel {
  1095. width: 350rpx;
  1096. text-align: left;
  1097. }
  1098. .noColor {
  1099. color: #CCCCCC;
  1100. }
  1101. .carModelRight {
  1102. display: flex;
  1103. justify-content: flex-start;
  1104. align-items: center;
  1105. }
  1106. .contlineRight {
  1107. color: #333333;
  1108. line-height: 40rpx;
  1109. width: 400rpx;
  1110. text-align: right;
  1111. }
  1112. .contlineRightInput {
  1113. color: #333333;
  1114. text-align: left;
  1115. font-size: 28rpx;
  1116. min-height: 182rpx;
  1117. width: 400rpx;
  1118. }
  1119. .contlineRightJt {
  1120. width: 30rpx;
  1121. height: 30rpx;
  1122. }
  1123. .tuiBtns {
  1124. display: flex;justify-content: space-around;
  1125. padding: 40rpx 20rpx 10rpx;
  1126. }
  1127. .btn {
  1128. width: 250rpx;
  1129. height: 70rpx;
  1130. background: #F4F5F7;
  1131. border-radius: 10rpx;
  1132. font-size: 28rpx;
  1133. font-weight: 500;
  1134. color: #3C3C3C;
  1135. line-height: 70rpx;
  1136. text-align: center;
  1137. }
  1138. .btn2 {
  1139. width: 250rpx;
  1140. height: 70rpx;
  1141. background: #3F90F7;
  1142. border-radius: 10rpx;
  1143. font-size: 28rpx;
  1144. font-weight: 500;
  1145. color: #FFFFFF;
  1146. line-height: 70rpx;
  1147. text-align: center;
  1148. }
  1149. .writeoffLine{
  1150. display: flex;justify-content: space-between;
  1151. color: #999999;font-size: 24rpx;
  1152. line-height: 33rpx;padding-top: 8rpx;
  1153. }
  1154. .writeoffLineBox{
  1155. padding: 0 20rpx;
  1156. }
  1157. .detailedLineBox .detailedLine{
  1158. padding-bottom: 0rpx;
  1159. }
  1160. .writeoffXx .informationNum{
  1161. width: 500rpx;
  1162. }
  1163. .detailedLineBox{
  1164. padding-bottom: 10rpx;
  1165. }
  1166. </style>