paintOrderDetail.vue 32 KB

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