orderdetails.vue 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <view class="navbar-box">
  5. <u-navbar title="订单详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="transparent"></u-navbar>
  6. </view>
  7. <u-loading-page :loading="loadingPage"></u-loading-page>
  8. <view class="page-wrap">
  9. <view class="status-content">
  10. <view class="status-item" v-if="orderDetails.status==0">
  11. <view class="text"><text v-if="countdown!='支付超期'"> 请尽快完成付款,还剩 </text>{{countdown}}</view>
  12. <view class="btn-wrap u-flex u-row-center" v-if="countdown!='支付超期'">
  13. <view class="btn cancel" @click="cancelOrder">取消订单</view>
  14. <view class="btn" @click="gotoPay(orderDetails.id)">立即支付</view>
  15. </view>
  16. </view>
  17. <view class="status-item" v-else-if="orderDetails.status==3">
  18. <view class="text"><text v-if="countdown!='演出已开始'">距离演出开始,还剩 </text>{{countdown}}</view>
  19. </view>
  20. <view class="status-item" v-else-if="orderDetails.status==6">
  21. <view class="text"><text>退款失败: </text>{{refundInfo.errReason}}</view>
  22. </view>
  23. <view class="status-item" v-else-if="orderDetails.status==10">
  24. <view class="text">{{orderDetails.resubmit.resubmitType==2?'已升舱':'已改签'}}</view>
  25. </view>
  26. <view class="status-item" v-else>
  27. <view class="text">{{orderDetails.status|filterOrderState}}</view>
  28. </view>
  29. </view>
  30. <view class="base-info">
  31. <view class="top u-flex u-row-between">
  32. <view class="name">{{orderDetails.theatreName}}</view>
  33. <!-- <view class="icon-wrap u-flex">
  34. <u-icon name="phone-fill" color="#999999" size="42rpx"></u-icon>
  35. <u-icon name="map-fill" color="#999999" size="42rpx"></u-icon>
  36. </view> -->
  37. </view>
  38. <view class="info u-flex u-row-between">
  39. <image class="img" :src="orderDetails.performImg"></image>
  40. <view class="text">
  41. <view class="name u-flex u-row-between">
  42. {{orderDetails.performName}}
  43. <!-- <text class="status">{{orderDetails.status|filterOrderState}}</text> -->
  44. </view>
  45. <view class="time">{{orderDetails.performDate}} {{orderDetails.performTimeStart}}</view>
  46. <view class="position u-flex u-row-between">
  47. <view class="">{{orderDetails.goodsName}}/{{orderDetails.seatTypeName}}</view>
  48. <view class="">X {{orderDetails.viewerNum}}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="box qr-wrap" v-if="orderDetails.parentQrcodeStatus==0">
  54. <view class="title" v-if="orderDetails.supportQrcode">二维码</view>
  55. <template v-if="orderDetails.supportQrcode">
  56. <view class="qr-content">
  57. <view class="img-wrap">
  58. <view class="ayQrcode">
  59. <uv-qrcode :hide="hideMainQR" ref="qrcode" size="180px" :value="mainQR"></uv-qrcode>
  60. </view>
  61. </view>
  62. <view class="order-num">取票号:{{orderDetails.parentQrcodeNo}}</view>
  63. </view>
  64. </template>
  65. <template v-else-if="orderDetails.supportIdcard && !orderDetails.supportQrcode">
  66. <view class="qr-content">
  67. <!-- 禁止使用电子核销码核销入场,只能用身份证刷闸机入场 -->
  68. <view class="qrcode-tip">本票种需凭「取票码」至前台换票入场,或凭「身份证原件」入场</view>
  69. <view class="order-num">取票号:{{orderDetails.parentQrcodeNo}}</view>
  70. </view>
  71. </template>
  72. <template v-else>
  73. <view class="qr-content">
  74. <!-- 只能到前台提供身份证号码/取票号/订单号等信息进行取票 -->
  75. <view class="qrcode-tip">本票种需凭「取票码」至前台换票入场</view>
  76. <view class="order-num">取票号:{{orderDetails.parentQrcodeNo}}</view>
  77. </view>
  78. </template>
  79. </view>
  80. <view class="box viewers-list">
  81. <view class="title">观影人员</view>
  82. <view class="item u-flex u-row-between" v-for="(item,index) in orderDetails.viewersList" :key="index">
  83. <view class="viewers-wrap">
  84. <view class="viewer" v-for="(p,i) in item.nameList" :key="i">
  85. <!-- <text>观影人员{{index + 1}}</text> -->
  86. <text style="width: 96rpx;margin-right: 10px;min-width: 4em;display: inline-block;">{{p}}</text>
  87. <!-- style="width: 130rpx;" -->
  88. <text style="flex: 1;">{{orderDetails.status>2?item.seatName[i]:"-"}}</text>
  89. </view>
  90. </view>
  91. <view class="btn-box">
  92. <text v-if="item.status==3||item.status==4||item.status==6||item.status==7" @click="singleQR(item,index)" class="qrbtn" :style="{opacity:item.qrcodeStatus===0?'1':'0.5'}">查看二维码</text>
  93. <!--<text @click="showRefundInfoPopup(item)" v-if="item.status==4||item.status==5||item.status==6">退款信息</text>-->
  94. </view>
  95. </view>
  96. </view>
  97. <view class="box order-info">
  98. <view class="title u-flex u-row-between">
  99. 订单信息
  100. <view class="btn-box">
  101. <text class="btn" v-if="orderDetails.status==3&&orderDetails.allowReSubmit==1" @click="rebook">改签</text>
  102. <text class="btn" v-if="orderDetails.status==3&&orderDetails.allowReSubmit==1" @click="upgrade">升舱</text>
  103. <text class="btn" v-if="orderDetails.status==3&&orderDetails.ifReSubmit!==1" @click="refund">申请退款</text>
  104. <text class="btn" v-if="orderDetails.status==7||orderDetails.newOrderId" @click="invoice">申请发票</text>
  105. <text class="btn" v-if="orderDetails.orgOrderId" @click="viewOldOrder">查看原订单</text>
  106. <text class="btn" v-if="orderDetails.newOrderId" @click="viewNewOrder">查看新订单</text>
  107. </view>
  108. </view>
  109. <view class="order-info-item" v-for="(item,index) in orderInfo[orderDetails.status]" :key="index">
  110. <text class="til">{{item.name}}</text>
  111. <text class="con">
  112. <text v-if="item.key=='payType'">{{orderDetails[item.key]|filterPayType}}</text>
  113. <text v-else-if="item.key=='realPrice'"> ¥ {{orderDetails[item.key]}}</text>
  114. <text v-else>{{orderDetails[item.key]}}</text>
  115. <text class="copy-btn" @click="copyOrderNum(orderDetails[item.key])" v-if="item.key=='id'">复制</text>
  116. </text>
  117. </view>
  118. <!-- 改签信息 -->
  119. <view class="order-info-item rebook-info" v-if="orderDetails.resubmit">
  120. <text class="til">{{orderDetails.resubmit.resubmitType==2?'升舱':'改签'}}时间</text>
  121. <text class="con">{{orderDetails.resubmit.createTime}}</text>
  122. </view>
  123. <view class="order-info-item rebook-info" v-if="orderDetails.resubmit">
  124. <text class="til">{{orderDetails.resubmit.resubmitType==2?'升舱':'改签'}}费用</text>
  125. <text class="con">{{orderDetails.resubmit.remark }}</text>
  126. <!-- <text class="con" v-if="orderDetails.resubmit.diffType==0">补缴¥ {{orderDetails.resubmit.rebookPrice}}</text>
  127. <text class="con" v-else-if="orderDetails.resubmit.diffType==1">系统退款¥ {{orderDetails.resubmit.refundPrice}}</text>
  128. <text class="con" v-else>¥ {{orderDetails.resubmit.diffPrice}}</text> -->
  129. </view>
  130. </view>
  131. <view class="box order-info refund-list" v-if="orderDetails.refundList&&orderDetails.refundList.length>0">
  132. <view class="title u-flex u-row-between">
  133. 退款信息
  134. </view>
  135. <view class="item" v-for="(item,index) in orderDetails.refundList" :key="index">
  136. <view class="item-row u-flex u-row-between">
  137. <view class="left">
  138. <text class="til">退款单号</text>
  139. <text class="con">{{item.id}}</text>
  140. <image @click="copyOrderNum(item.id)" class="copy-icon" mode="widthFix" :src="staticUrl+'/img/copy-ico.svg'" ></image>
  141. <!-- <text class="copy-btn" @click="copyOrderNum(item.id)">复制</text> -->
  142. </view>
  143. <view class="right">
  144. <text class="con">{{item.status|filterRefundState}}</text>
  145. </view>
  146. </view>
  147. <view class="item-row u-flex u-row-between">
  148. <view class="left">
  149. <text class="til">退款金额</text>
  150. <text class="con">{{item.refundAmount}}</text>
  151. </view>
  152. <view class="right">
  153. <text class="con">{{item.refundReason}}</text>
  154. </view>
  155. </view>
  156. <view class="item-row u-flex u-row-between" v-if="item.errReason">
  157. <view class="left">
  158. <text class="til">驳回原因</text>
  159. <text class="con">{{item.errReason}}</text>
  160. </view>
  161. <view class="right">
  162. <!-- <text class="con">{{item.refundReason}}</text> -->
  163. </view>
  164. </view>
  165. </view>
  166. </view>
  167. <view class="box tips parse-content">
  168. <view class="title">观影须知</view>
  169. <u-parse :content="formerNotice"></u-parse>
  170. <!-- <view class="tips-item" v-for="(item,index) in tipsArr" :key="index">
  171. {{item}}
  172. </view> -->
  173. </view>
  174. </view>
  175. <u-popup :show="showSingleQR" @close="closeSingleQR" @open="openSingleQR" @touchmove.stop.prevent="handleMoveQrcode" :round="10" mode="center">
  176. <view class="singleQR-wrap">
  177. <view class="title">
  178. 二维码
  179. <!-- <u-icon class="close" @click="closeSingleQR" name="close" color="#333" size="36rpx"></u-icon> -->
  180. </view>
  181. <view class="single-info">
  182. <view class="item">姓名:{{singleInfo.name}}</view>
  183. <view class="item">身份证号码:{{singleInfo.idcard|maskID}}</view>
  184. <view class="item seat-name">座位:{{singleInfo.seatName}}</view>
  185. <view class="item">状态:{{singleInfo.qrcodeStatus|filterSingleState}}</view>
  186. </view>
  187. <template v-if="orderDetails.supportQrcode">
  188. <view class="singleQrcode">
  189. <uv-qrcode ref="singleQrcode" size="180px" :options="singleQrOptions" :value="singleQrContent" ></uv-qrcode>
  190. </view>
  191. </template>
  192. <template v-else-if="orderDetails.supportIdcard && !orderDetails.supportQrcode">
  193. <view class="qrcode-tip">本票种需凭「取票码」至前台换票入场,或凭「身份证原件」入场</view>
  194. </template>
  195. <template v-else>
  196. <view class="qrcode-tip">本票种需凭「取票码」至前台换票入场</view>
  197. </template>
  198. <view class="order-num" :class="{'del-line':singleInfo.qrcodeStatus!==0}">取票号:{{singleInfo.qrcodeNo}}</view>
  199. </view>
  200. </u-popup>
  201. <!-- 添加退款信息弹窗 -->
  202. <u-popup :show="showRefundInfo" @close="closeRefundInfo" :round="10" mode="center">
  203. <view class="refund-info-popup">
  204. <view class="title u-flex u-row-between">
  205. 退款信息
  206. <u-icon name="close" size="32" color="#333" @click="closeRefundInfo"></u-icon>
  207. </view>
  208. <view class="order-info-item">
  209. <text class="til">退款单号</text>
  210. <text class="con">{{refundInfo.id}}</text>
  211. <text class="copy-btn" @click="copyOrderNum(refundInfo.id)">复制</text>
  212. </view>
  213. <view class="order-info-item">
  214. <text class="til">申请时间</text>
  215. <text class="con">{{refundInfo.refundTime}}</text>
  216. </view>
  217. <!-- <view class="order-info-item">
  218. <text class="til">订单金额</text>
  219. <text class="con">¥ {{refundInfo.orderAmount}}</text>
  220. </view> -->
  221. <view class="order-info-item">
  222. <text class="til">退款金额</text>
  223. <text class="con">¥ {{refundInfo.refundAmount}}</text>
  224. </view>
  225. <view class="order-info-item">
  226. <text class="til">退款原因</text>
  227. <text class="con">{{refundInfo.refundReason}}</text>
  228. </view>
  229. <view class="order-info-item" v-if="orderDetails.status==6">
  230. <text class="til">失败原因</text>
  231. <text class="con">{{refundInfo.errReason}}</text>
  232. </view>
  233. <view class="order-info-item">
  234. <text class="til">退款状态</text>
  235. <text class="con">{{refundInfo.status|filterRefundState}}</text>
  236. </view>
  237. </view>
  238. </u-popup>
  239. <u-toast ref="uToast"></u-toast>
  240. </view>
  241. </template>
  242. <script>
  243. import { systemInfo } from "@/mixin.js";
  244. // #ifdef H5
  245. import wxH5 from "weixin-jsapi";
  246. // #endif
  247. export default {
  248. mixins:[systemInfo],
  249. components:{
  250. },
  251. data() {
  252. return {
  253. timer: null,
  254. mainQR:'无效值',
  255. id:'',
  256. loadingPage:true,
  257. staticUrl:this.$commonConfig.staticUrl,
  258. orderDetails:{},
  259. deadline: null, // 设置截止时间为某个日期的时间戳
  260. countdown: '', // 用于显示倒计时时间
  261. // 状态(0待支付,2超时取消,3支付完成,待使用,4退款中,5己退款,6退款失败,7己使用,8己超期)
  262. orderInfo:{
  263. 0:[{name:'需付金额',key:'realPrice'},{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'}],
  264. 1:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'}],
  265. 2:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'}],
  266. 3:[{name:'订单金额',key:'realPrice'},{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'}],
  267. 4:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'}],
  268. 5:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'},{name:'备注信息',key:'remark'}],
  269. 6:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'},{name:'备注信息',key:'remark'}],
  270. 7:[{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'支付方式',key:'payWay'},{name:'支付时间',key:'payTime'}],
  271. 8:[{name:'订单金额',key:'realPrice'},{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'备注信息',key:'remark'}],
  272. 9:[{name:'订单金额',key:'realPrice'},{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'备注信息',key:'remark'}],
  273. 10:[{name:'订单金额',key:'realPrice'},{name:'订单编号',key:'id'},{name:'下单时间',key:'createTime'},{name:'备注信息',key:'remark'}],
  274. },
  275. tipsArr:[
  276. '1.请提前到达影院现场,找到自助取票机,打印纸质电影票,完成取票',
  277. '2.如现场自助取票机无法打印电影票,请联系影院工作人员处理',
  278. '3.凭打印好的纸质电影票、检票入场观影',
  279. '4.如果订单使用了兑换券,或购买了特殊场次,暂不支持退票和改签'
  280. ],
  281. params:{
  282. },
  283. singleInfo:{idcard:''},//观影人信息
  284. showSingleQR:false,//显示单人二维码
  285. hideMainQR:false,
  286. singleModalQr:false,
  287. singleQrContent:'无效值',
  288. singleQrOptions:{
  289. foregroundColor: "#333333",
  290. },
  291. formerNotice:'',
  292. countdownTimer:null,//订单倒计时
  293. templateIdList:[],//微信小程序订阅消息
  294. refundInfo:{status:null},//退款信息
  295. showRefundInfo: false, // 控制退款信息弹窗显示
  296. }
  297. },
  298. onShow() {
  299. this.getOrderDetails(this.id);
  300. },
  301. onLoad(page) {
  302. console.log('page',page);
  303. this.id = page.id;
  304. this.getSystemInfo();
  305. this.getTemplateIdList();//获取模板列表
  306. },
  307. onUnload() {
  308. // 页面离开时停止计时器
  309. // clearInterval(this.timer)
  310. clearInterval(this.countdownTimer)
  311. },
  312. mounted() {
  313. // 每秒更新倒计时时间
  314. this.countdownTimer = setInterval(() => {
  315. const now = new Date().getTime();
  316. const distance = this.deadline - now;
  317. // console.log('distance',distance);
  318. if(this.orderDetails.status==0 && distance<0){
  319. this.countdown = '支付超期';
  320. return
  321. }else if(this.orderDetails.status==3 && distance<0){
  322. this.countdown = '演出已开始';
  323. return
  324. }
  325. // 计算倒计时时间,可以根据需求自定义显示方式
  326. const days = Math.floor(distance / (1000 * 60 * 60 * 24));
  327. const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  328. const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  329. const seconds = Math.floor((distance % (1000 * 60)) / 1000);
  330. // 更新倒计时时间
  331. this.countdown = `${days}天 ${hours}小时 ${minutes}分钟 ${seconds}秒`;
  332. }, 1000);
  333. },
  334. methods: {
  335. leftClick(e){
  336. let pages = getCurrentPages();
  337. if(pages.length==1){
  338. uni.$u.route('/pages/index/index')
  339. }else{
  340. let prePage = pages[pages.length-1];
  341. if(prePage.route=='center/orderdetails'){
  342. uni.navigateBack({
  343. delta: 2
  344. });
  345. }else{
  346. uni.navigateBack()
  347. }
  348. };
  349. },
  350. getTemplateIdList(){
  351. this.$u.api.templateIdList({templateLabel:'order_pay'}).then(res=>{
  352. console.log('getTemplateIdList',res.data);
  353. this.templateIdList = res.data.list.map(item=>{
  354. return item.templateId
  355. });
  356. // if(this.templateIdList.length>0){
  357. // this.templateEven();
  358. // }
  359. }).catch(err=>{
  360. console.log('getTemplateIdList',err);
  361. })
  362. },
  363. getOrderDetails(id){
  364. this.$u.api.orderDetails({id:id}).then(res=>{
  365. this.loadingPage = false;
  366. this.orderDetails = res.data;
  367. let viewersList = res.data.viewersList.map(item=>{
  368. return {
  369. ...item,
  370. nameList:item.nameList.split(',')||[],
  371. seatName:item.seatName.split(',')||[],
  372. }
  373. });
  374. this.orderDetails.viewersList = viewersList;
  375. this.refundInfo = res.data.refundInfo||{};
  376. if(res.data.status==0){//待支付
  377. this.deadline = new Date(`${res.data.cancelDateTime}`).getTime();
  378. }else if(res.data.status==3){//待使用
  379. this.deadline = new Date(`${res.data.performDateTime}`).getTime();
  380. }
  381. this.mainQR = res.data.parentQrcodeNo;
  382. this.getPerformerNotice();
  383. // console.log('this.deadline',this.deadline);
  384. // console.log('orderDetails',JSON.parse(JSON.stringify(res.data)));
  385. }).catch(err=>{
  386. uni.$u.toast('获取数据失败,!请重试')
  387. uni.navigateBack();
  388. console.log('getOrderDetails',err);
  389. })
  390. },
  391. singleQR(item,index){
  392. let that = this;
  393. // console.log('singleQR',item);
  394. this.showSingleQR = true;
  395. this.hideMainQR = true;
  396. this.singleInfo = item;
  397. if(item.qrcodeStatus!==0){
  398. this.singleQrOptions.foregroundColor='#BCBCBC';
  399. }else{
  400. this.singleQrOptions.foregroundColor='#333333';
  401. }
  402. // this.singleQrContent = {};
  403. // this.singleQrContent.qrcode = item.qrcodeNo;
  404. // this.singleQrContent = JSON.stringify(this.singleQrContent);
  405. this.singleQrContent = item.qrcodeNo
  406. },
  407. openSingleQR(){
  408. // console.log('this.singleInfo',this.singleInfo);
  409. },
  410. closeSingleQR(){
  411. this.showSingleQR = false;
  412. this.hideMainQR = false;
  413. },
  414. clickEven(fun,item){
  415. // console.log('fun',fun);
  416. let funObj = {
  417. pay: this.pay,
  418. logistics:this.logistics,
  419. evaluate:this.evaluate,
  420. refund:this.refund,
  421. cancelOrder:this.cancelOrder,
  422. viewRefund:this.viewRefund,
  423. confirmReceipt:this.confirmReceipt
  424. };
  425. // console.log('funObj[fun]',funObj[fun]);
  426. if (fun in funObj) {
  427. funObj[fun](item);
  428. }
  429. },
  430. pay(item){
  431. // #ifdef H5
  432. this.gotoPay(this.orderDetails.id);
  433. // #endif
  434. // #ifdef MP
  435. this.setTemplate(this.orderDetails.id);
  436. // #endif
  437. // console.log('pay',item);
  438. // uni.$u.route('/center/pay', {
  439. // orderId: item.id,
  440. // // openid: that.vuex_wechatOpenid,
  441. // payAmount:item.orderPrice
  442. // });
  443. },
  444. logistics(item){
  445. // console.log('logistics',item);
  446. uni.$u.route('/center/distribution', {
  447. orderId: item.id
  448. });
  449. },
  450. evaluate(item){
  451. // console.log('logistics',item);
  452. uni.$u.route('/shopping/evaluate', {
  453. id: item.id
  454. });
  455. },
  456. refund(item){
  457. console.log('this.orderDetails',this.orderDetails);
  458. uni.$u.route('/center/refundselect', {
  459. id: this.orderDetails.id,
  460. realPrice:this.orderDetails.realPrice
  461. });
  462. },
  463. cancelOrder(item){
  464. let that = this;
  465. uni.showModal({
  466. title: '提示',
  467. content: '确认取消吗!',
  468. success: res => {
  469. if (res.confirm) {
  470. this.$u.api.cancelOrder({orderId:that.orderDetails.id}).then(res=>{
  471. this.$refs.uToast.show({
  472. message:res.msg,
  473. complete() {
  474. that.getOrderDetails(that.orderDetails.id);
  475. }
  476. });
  477. // uni.$u.toast(res.msg);
  478. console.log('res',res.data);
  479. }).catch(err=>{
  480. console.log('cancelOrder',err);
  481. })
  482. }
  483. }
  484. });
  485. // console.log('logistics',item);
  486. },
  487. confirmReceipt(item){
  488. let that = this;
  489. uni.showModal({
  490. title: '提示',
  491. content: '确认收货吗!',
  492. success: res => {
  493. if (res.confirm) {
  494. this.$u.api.confirmReceipt({orderId:item.id}).then(res=>{
  495. uni.showToast({
  496. title:res.msg,
  497. duration:2000,
  498. complete() {
  499. that.evaluate(item)
  500. that.getOrderDetails(that.id);
  501. }
  502. });
  503. console.log('res',res.data);
  504. }).catch(err=>{
  505. console.log('confirmReceipt',err);
  506. })
  507. }
  508. }
  509. })
  510. },
  511. goMap(){
  512. uni.openLocation({
  513. latitude: Number(this.pickupInfo.pickupLatitude), //维度
  514. longitude: Number(this.pickupInfo.pickupLongitude), //经度
  515. name: "商行地址", //目的地定位名称
  516. scale: 15, //缩放比例
  517. address: this.pickupInfo.pickupAddress //导航详细地址
  518. })
  519. },
  520. copyOrderNum(orderNum){
  521. // console.log('copyOrderNum',orderNum);
  522. uni.setClipboardData({
  523. data: orderNum,
  524. success: function () {
  525. uni.showToast({
  526. title: '复制成功'
  527. });
  528. },
  529. fail(e) {
  530. // console.log('copyOrderNumfail',e);
  531. uni.showToast({
  532. title: '复制失败',
  533. icon:"error"
  534. });
  535. }
  536. });
  537. },
  538. // 设置小程序订阅消息
  539. setTemplate(orderId) {
  540. let that = this;
  541. console.log('templateIdList',this.templateIdList);
  542. uni.requestSubscribeMessage({
  543. tmplIds: that.templateIdList,
  544. success (res) {
  545. // that.gotoPay();
  546. console.log("success:",res);
  547. },
  548. fail (res) {
  549. console.log("fail:",res);
  550. },
  551. complete (res) {
  552. that.gotoPay(orderId);
  553. console.log("complete:",res);
  554. }
  555. })
  556. },
  557. gotoPay(orderId){
  558. this.$u.api.gotoPay({orderId:orderId,openid:''}).then(res=>{
  559. this.payResult = res.data.payInfo;
  560. this.payResult.package = res.data.payInfo.packageValue;
  561. // #ifdef H5
  562. this.initConfig(this.payResult)
  563. // #endif
  564. // #ifdef MP
  565. this.wxPay()
  566. // #endif
  567. // if(this.params.paymentMode==1||this.params.paymentMode==4){
  568. // this.wxPay()
  569. // }else{
  570. // uni.$u.route('/shopping/paysuccess');
  571. // }
  572. console.log('gotoPayres',res.data);
  573. }).catch(err=>{
  574. this.paypass = '';
  575. this.checkPassShow = false;
  576. console.log('gotoPay',err);
  577. })
  578. },
  579. wxPay(){
  580. let that = this;
  581. uni.requestPayment({
  582. ... this.payResult,
  583. "provider": "wxpay",
  584. "orderInfo": {
  585. // "appid": "wx499********7c70e", // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  586. // "noncestr": "c5sEwbaNPiXAF3iv", // 随机字符串
  587. // "package": "Sign=WXPay", // 固定值
  588. // "partnerid": "148*****52", // 微信支付商户号
  589. // "prepayid": "wx202254********************fbe90000", // 统一下单订单号
  590. // "timestamp": 1597935292, // 时间戳(单位:秒)
  591. // "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // 签名,这里用的 MD5/RSA 签名
  592. },
  593. success(res) {
  594. that.payQuery();
  595. },
  596. fail(e) {
  597. console.log('wxPayfail',e);
  598. }
  599. })
  600. },
  601. payQuery(){
  602. let that = this;
  603. let retryCount = 0;
  604. let maxRetryCount = 5; // 设置最大重试次数
  605. let interval = 2000; // 设置间隔时间为2秒
  606. let timeout = 10000; // 设置超时时间为10秒
  607. let timer;
  608. uni.showLoading({
  609. title:'支付结果查询中'
  610. })
  611. timer = setInterval(() => {
  612. retryCount++;
  613. if (retryCount > maxRetryCount || retryCount * interval > timeout) {
  614. clearInterval(timer);
  615. uni.hideLoading();
  616. console.log("支付查询超时或达到最大重试次数");
  617. // 在这里添加超时或达到最大重试次数的处理逻辑
  618. this.reloadList()
  619. } else {
  620. console.log("第" + retryCount + "次查询");
  621. // 调用查询支付状态的方法
  622. // 如果支付状态为成功,则清除定时器并处理成功的逻辑
  623. // 如果支付状态为失败,则清除定时器并处理失败的逻辑
  624. this.$u.api.payQuery({orderId:this.orderId}).then(res=>{
  625. // 0-未支付 1-已支付 2-支付中 3-支付失败 4-支付退款
  626. let payStatus = res.data.payStatus;
  627. if(payStatus===1){
  628. uni.$u.route('/center/paysuccess');
  629. }else if(payStatus===0||payStatus===2){
  630. this.payQuery()
  631. }else if(payStatus===3){
  632. uni.toast('支付失败')
  633. }
  634. clearInterval(timer);
  635. }).catch(err=>{
  636. console.log('payQuery',err);
  637. }).finally(()=>{
  638. uni.hideLoading()
  639. })
  640. }
  641. }, interval);
  642. },
  643. getPerformerNotice(){
  644. this.$u.api.performerNotice({performId:this.orderDetails.performId}).then(res=>{
  645. // console.log('getPerformerNotice',res.data);
  646. this.formerNotice = res.data.performNotice;
  647. }).catch(err=>{
  648. console.log('getPerformerNotice',err);
  649. })
  650. },
  651. handleMoveQrcode(){
  652. console.log('handleMoveQrcode');
  653. return false
  654. },
  655. /**
  656. * 公众号微信支付
  657. */
  658. initConfig() {
  659. // #ifdef H5
  660. let that = this
  661. wxH5.config({
  662. debug: false, // 这里一般在测试阶段先用ture,等打包给后台的时候就改回false,
  663. appId: that.payResult.appId, // 必填,公众号的唯一标识
  664. timestamp: that.payResult.timeStamp, // 必填,生成签名的时间戳
  665. nonceStr: that.payResult.nonceStr, // 必填,生成签名的随机串
  666. signature: that.payResult.paySign, // 必填,签名
  667. jsApiList: ['chooseWXPay', 'checkJsApi'] // 必填,需要使用的JS接口列表
  668. })
  669. wxH5.ready(() => {
  670. wxH5.chooseWXPay({
  671. timestamp: that.payResult.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  672. nonceStr: that.payResult.nonceStr, // 支付签名随机串,不长于 32 位
  673. package: that.payResult.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  674. signType: 'SHA1', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  675. paySign: that.payResult.paySign, // 支付签名
  676. success: () => {
  677. that.payQuery();
  678. },
  679. fail: (e) => {
  680. uni.$u.route('/center/order', {
  681. status: 0
  682. });
  683. console.log('wxPayfail', e);
  684. },
  685. cancel: () => {
  686. uni.$u.route('/center/order', {
  687. status: 0
  688. });
  689. that.cansubmit = true;
  690. }
  691. })
  692. })
  693. // #endif
  694. },
  695. async invoice(){
  696. console.log('orderDetails',this.orderDetails);
  697. if(this.orderDetails.ifInvoice===0){
  698. try{
  699. let invoiceInfo = await this.$u.api.getInvoiceInfo({orderId:this.id});
  700. uni.$u.route('/center/invoice', {
  701. id: this.orderDetails.id
  702. });
  703. console.log('invoiceInfo',invoiceInfo);
  704. }catch(err){
  705. console.log('invoice',err);
  706. }
  707. }else{
  708. uni.$u.route('/center/invoicedetails', {
  709. id: this.orderDetails.id
  710. });
  711. }
  712. },
  713. rebook(){
  714. uni.$u.route('pages/ticketlist',{performId:this.orderDetails.performId,orderId:this.orderDetails.id,fromPage:'rebook'})
  715. },
  716. upgrade(item){
  717. uni.$u.route('pages/ticketlist',{performId:item.orderDetails.performId,orderId:item.orderDetails.id,fromPage:'rebook',isUpgrade:true})
  718. },
  719. // 显示退款信息弹窗
  720. showRefundInfoPopup(item) {
  721. this.hideMainQR = true;
  722. this.showRefundInfo = true;
  723. },
  724. // 关闭退款信息弹窗
  725. closeRefundInfo() {
  726. this.hideMainQR = false;
  727. this.showRefundInfo = false;
  728. },
  729. viewOldOrder(){
  730. uni.$u.route('/center/orderdetails', {
  731. id: this.orderDetails.orgOrderId
  732. });
  733. },
  734. viewNewOrder(){
  735. uni.$u.route('/center/orderdetails', {
  736. id: this.orderDetails.newOrderId
  737. });
  738. }
  739. }
  740. }
  741. </script>
  742. <style>
  743. page{
  744. background: linear-gradient(180deg, #ED0000 0%, #F9FBFD 50%,#F9FBFD 100%);
  745. background-repeat: no-repeat;
  746. }
  747. </style>
  748. <style lang="scss" scoped>
  749. .status-content{
  750. text-align: center;
  751. padding-top: 30rpx;
  752. margin-bottom: 52rpx;
  753. .text{
  754. font-size: 32rpx;
  755. font-weight: 400;
  756. color: #FFFFFF;
  757. margin-bottom: 52rpx;
  758. }
  759. .btn-wrap{
  760. margin-bottom: 40rpx;
  761. .btn{
  762. height: 64rpx;
  763. line-height: 64rpx;
  764. padding: 0 42rpx;
  765. border-radius: 8rpx;
  766. border: 2rpx solid #FFFFFF;
  767. background-color: #ffffff;
  768. font-size: 24rpx;
  769. font-weight: bold;
  770. color: #EE0B0B;
  771. &.cancel{
  772. border-color: #FFE2E2;
  773. color: #FFE2E2;
  774. background-color: transparent;
  775. }
  776. &:not(:last-of-type){
  777. margin-right: 100rpx;
  778. }
  779. }
  780. }
  781. }
  782. .base-info{
  783. background: #FFFFFF;
  784. box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(221,221,221,0.5);
  785. border-radius: 20rpx;
  786. overflow: hidden;
  787. margin-bottom: 24rpx;
  788. .top{
  789. padding: 20rpx;
  790. background: #F9FAFD;
  791. font-size: 28rpx;
  792. font-weight: 400;
  793. color: #7F7F7F;
  794. }
  795. .info{
  796. padding: 28rpx 20rpx 30rpx 24rpx;
  797. .img{
  798. width: 180rpx;
  799. height: 160rpx;
  800. border-radius: 12rpx;
  801. }
  802. .text{
  803. font-size: 24rpx;
  804. font-weight: 400;
  805. color: #7F7F7F;
  806. padding-left: 26rpx;
  807. flex: 1;
  808. .name{
  809. font-size: 28rpx;
  810. font-weight: bold;
  811. color: #363636;
  812. margin-bottom: 20rpx;
  813. }
  814. .time{
  815. margin-bottom: 20rpx;
  816. }
  817. .position{
  818. margin-bottom: 20rpx;
  819. }
  820. .status{
  821. font-size: 24rpx;
  822. font-weight: 400;
  823. color: #EE0606;
  824. }
  825. }
  826. }
  827. }
  828. .box{
  829. margin-bottom: 24rpx;
  830. background: #FFFFFF;
  831. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(221,221,221,0.5);
  832. border-radius: 20rpx;
  833. padding: 36rpx 24rpx;
  834. .title{
  835. font-size: 30rpx;
  836. font-weight: bold;
  837. color: #2D2D2D;
  838. padding-bottom: 20rpx;
  839. margin-bottom: 24rpx;
  840. border-bottom: 1px solid #F4F4F4;
  841. .btn{
  842. height: 40rpx;
  843. line-height: 40rpx;
  844. padding: 0 20rpx;
  845. border-radius: 8rpx;
  846. border: 2rpx solid #606060;
  847. font-size: 24rpx;
  848. font-weight: 400;
  849. color: #606060;
  850. cursor: pointer;
  851. }
  852. }
  853. }
  854. .order-info{
  855. .order-info-item{
  856. font-size: 30rpx;
  857. font-weight: 400;
  858. color: #333333;
  859. padding: 10rpx 0;
  860. // &:not(:last-child){
  861. // border-bottom: 0.5px solid #eee;
  862. // }
  863. .til{
  864. font-size: 24rpx;
  865. font-weight: 400;
  866. color: #999999;
  867. margin-right: 40rpx;
  868. }
  869. .copy-btn{
  870. margin-left: 32rpx;
  871. height: 30rpx;
  872. line-height: 30rpx;
  873. padding: 0 14rpx;
  874. border-radius: 8rpx;
  875. font-size: 20rpx;
  876. font-weight: 400;
  877. color: #999999;
  878. background: #EDEDED;
  879. }
  880. }
  881. .btn-box{
  882. .btn:not(:first-of-type){
  883. margin-left: 10px;
  884. }
  885. }
  886. }
  887. .tips{
  888. .tips-item{
  889. font-size: 24rpx;
  890. font-weight: 400;
  891. color: #7F7F7F;
  892. line-height: 36rpx;
  893. margin-bottom: 20rpx;
  894. }
  895. }
  896. .qr-wrap{
  897. .qr-content{
  898. text-align: center;
  899. font-size: 24rpx;
  900. font-weight: 400;
  901. color: #7F7F7F;
  902. }
  903. .img-wrap{
  904. position: relative;
  905. }
  906. .ayQrcode,.img{
  907. width: 180px;
  908. height: 180px;
  909. display: block;
  910. margin: 0 auto 20rpx;
  911. }
  912. .refund-ico{
  913. width: 200rpx;
  914. height: 152rpx;
  915. position: absolute;
  916. bottom: -10rpx;
  917. right: 60rpx;
  918. }
  919. }
  920. .order-num{
  921. position: relative;
  922. margin: 30rpx auto 0;
  923. font-size: 24rpx;
  924. font-weight: 400;
  925. color: #363636;
  926. border: 1px solid #363636;
  927. padding: 5rpx 20rpx;
  928. border-radius: 8rpx;
  929. width: fit-content;
  930. &.del-line{
  931. color: #BCBCBC;
  932. border: 1px solid #BCBCBC;
  933. }
  934. &.del-line::after{
  935. content: '';
  936. width: 110%;
  937. height: 1px;
  938. background-color: #BCBCBC;
  939. position: absolute;
  940. top: 50%;
  941. left: -5%;
  942. }
  943. }
  944. .viewers-list{
  945. padding-bottom: 16rpx;
  946. .item{
  947. .viewers-wrap{
  948. .viewer:not(:first-of-type){
  949. margin-top: 8px;
  950. }
  951. }
  952. font-size: 28rpx;
  953. color: #333;
  954. margin-bottom: 10px;
  955. .qrbtn{
  956. color: #EE0606;
  957. }
  958. & + .item{
  959. border-top: 1px dashed #EDEDED;
  960. padding-top: 8px;
  961. }
  962. }
  963. }
  964. .singleQR-wrap{
  965. padding: 0 24rpx 50rpx;
  966. box-sizing: border-box;
  967. min-width: 80vw;
  968. .title{
  969. text-align: center;
  970. height: 94rpx;
  971. line-height: 94rpx;
  972. font-size: 28rpx;
  973. font-weight: bold;
  974. color: #2D2D2D;
  975. border-bottom: 2rpx solid #F4F4F4;
  976. margin-bottom: 24rpx;
  977. }
  978. .single-info{
  979. margin-bottom: 24rpx;
  980. .item{
  981. font-size: 24rpx;
  982. font-weight: 400;
  983. color: #363636;
  984. margin-bottom: 10rpx;
  985. &.seat-name{
  986. font-size: 28rpx;
  987. font-weight: bold;
  988. }
  989. }
  990. }
  991. .singleQrcode{
  992. width: 180px;
  993. height: 180px;
  994. margin: 24rpx auto 54rpx;
  995. position: relative;
  996. &.disabled{
  997. // /deep/ .canvas-qrcode{
  998. // opacity: 0.3;
  999. // }
  1000. }
  1001. }
  1002. }
  1003. .qrcode-tip{
  1004. margin-top: 10px;
  1005. text-align: center;
  1006. font-size: 24rpx;
  1007. font-weight: 400;
  1008. color: #7F7F7F;
  1009. }
  1010. .refund-info-popup {
  1011. padding: 30rpx;
  1012. min-width: 600rpx;
  1013. max-height: 80vh;
  1014. overflow-y: auto;
  1015. .title {
  1016. font-size: 32rpx;
  1017. font-weight: bold;
  1018. color: #333;
  1019. padding-bottom: 20rpx;
  1020. margin-bottom: 20rpx;
  1021. border-bottom: 1px solid #eee;
  1022. }
  1023. .order-info-item {
  1024. padding: 16rpx 0;
  1025. font-size: 28rpx;
  1026. .til {
  1027. color: #999;
  1028. margin-right: 20rpx;
  1029. }
  1030. .con {
  1031. color: #333;
  1032. }
  1033. }
  1034. }
  1035. .refund-list{
  1036. .title{
  1037. margin-bottom: 0;
  1038. }
  1039. .item{
  1040. font-size: 28rpx;
  1041. padding: 8px 0;
  1042. .copy-icon{
  1043. width: 35rpx;
  1044. // margin-left: 5px;
  1045. padding-left: 5px;
  1046. position: relative;
  1047. top: 3px;
  1048. }
  1049. & + .item{
  1050. border-top: 1px solid #EDEDED;
  1051. }
  1052. .item-row{
  1053. & + .item-row{
  1054. margin-top: 8px;
  1055. }
  1056. }
  1057. .til{
  1058. color: #999;
  1059. margin-right: 5px;
  1060. }
  1061. }
  1062. }
  1063. </style>