mallOrderDetail.vue 32 KB

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