order.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="我的订单"
  5. :placeholder="true"
  6. :autoBack="false"
  7. @leftClick="leftClick"
  8. :safeAreaInsetTop="true"
  9. >
  10. </u-navbar>
  11. <view class="tabs-wrap">
  12. <u-tabs
  13. :list="tabsList"
  14. lineColor="#EE0D0D"
  15. :current="tabsCurrent"
  16. :activeStyle="{color:'#EE0D0D','font-weight': '600','font-size':'30rpx'}"
  17. :inactiveStyle="{color:'#7F7F7F'}"
  18. itemStyle="width:20%;box-sizing:border-box;padding:24rpx"
  19. @click="tabsClick"></u-tabs>
  20. </view>
  21. <view class="page-wrap">
  22. <mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  23. <view class="order">
  24. <view v-for="(item,index) in orderListWithClass" class="order-item"
  25. :class="item.class"
  26. @click="goOrderDetails(item)" :key="item.id">
  27. <view class="top u-flex u-row-between">
  28. <text>{{item.theatreName}}</text>
  29. <text>{{item.status|filterOrderState}}</text>
  30. </view>
  31. <view class="info u-flex u-col-top">
  32. <image class="img" :src="item.performImg"></image>
  33. <view class="text">
  34. <view class="name">{{item.performName}} - {{item.goodsName}}</view>
  35. <view class="time">{{item.performDate}} {{item.performTimeStart}}</view>
  36. <!-- <view class="position">{{item.performDate}}</view> -->
  37. <view class="statistics">
  38. <text>共{{item.viewerNum}}张</text>
  39. <text class="label">合计:</text>
  40. <text class="price">¥{{item.realPrice}}</text>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="btn-wrap u-flex u-row-right">
  45. <view
  46. class="btn"
  47. :class="btn.class"
  48. @click.stop="clickEven(btn.fun,item)"
  49. v-for="(btn,index) in statusBtn[item.status]" :key="index">
  50. {{btn.name}}
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </mescroll-body>
  56. </view>
  57. <u-toast ref="uToast"></u-toast>
  58. <tabbar :tabbarIndexProps="1" />
  59. </view>
  60. </template>
  61. <script>
  62. import tabbar from "../components/tabbar.vue";
  63. // 引入mescroll-mixins.js
  64. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  65. // #ifdef H5
  66. import wxH5 from "weixin-jsapi";
  67. // #endif
  68. export default {
  69. mixins: [MescrollMixin], // 使用mixin
  70. components:{
  71. tabbar
  72. },
  73. data() {
  74. return {
  75. staticUrl:this.$commonConfig.staticUrl,
  76. goodsKey:1,
  77. hasfetch:false,
  78. tabsCurrent:1,
  79. tabsList:[
  80. {name:'全部',status:null,},
  81. {name:'待支付',status:'0',badge:{isDot:false,value:null}},
  82. {name:'待使用',status:'3',badge:{isDot:false,value:null}},
  83. {name:'已完成',status:'7',badge:{isDot:false,value:null}},
  84. {name:'售后',status:'4,5,6',badge:{isDot:false,value:null}}
  85. ],
  86. status:'',
  87. dataList:[],
  88. statusBtn:{// 状态(0待支付,2超时取消,3支付完成,待使用,4退款中,5己退款,6退款失败,7己使用,8己超期 9关闭)
  89. 0:[{name:'取消订单',fun:'cancelOrder',class:''},{name:'去支付',fun:'pay',class:'red'}],
  90. 1:[],
  91. 2:[],
  92. 3:[{name:'出示二维码',fun:'goOrderDetails',class:'red'}],
  93. //,{name:'评价',fun:'evaluate',class:'green'}
  94. 4:[],
  95. 5:[],
  96. 6:[],
  97. // ,{name:'查看评价',fun:'viewEvaluate',class:'green'}
  98. 7:[],
  99. 8:[],
  100. 9:[]
  101. },
  102. orderBadge:{
  103. noPayNum:0,
  104. deliverNum:0,
  105. collectNum:0,
  106. commentNum:0,
  107. refundNum:0,
  108. },
  109. templateIdList:[],//微信小程序订阅消息
  110. }
  111. },
  112. computed: {
  113. orderListWithClass() {
  114. return this.dataList.map(order => {
  115. // let spliceData = order.detailList.splice(0,2);
  116. // let moreData = order.detailList.splice(2,order.detailList.length);
  117. // let moreData = order.detailList.slice(2);
  118. // if(order.detailList.length>2){
  119. // moreData = order.detailList;
  120. // }
  121. return {
  122. ...order,
  123. // spliceData:spliceData,
  124. // moreData:moreData,
  125. // showMore:false,
  126. class: {
  127. 0: 'status-0',
  128. 1: 'status-1',
  129. 2: 'status-2',
  130. 3: 'status-3',
  131. 4: 'status-4',
  132. 5: 'status-5',
  133. 6: 'status-6',
  134. 7: 'status-7',
  135. 8: 'status-8'
  136. }[order.status] || ''
  137. }
  138. })
  139. }
  140. },
  141. onLoad(page) {
  142. // console.log('page',page);
  143. const status = page.status;
  144. const index = this.tabsList.findIndex(item => item.status === status);
  145. this.tabsCurrent = index>=0?index:0;
  146. this.getTemplateIdList();//获取模板列表
  147. },
  148. onShow() {
  149. setTimeout(()=>{
  150. this.hasfetch&&this.reloadList()
  151. },500);
  152. // this.statisticsOrder();
  153. },
  154. methods: {
  155. leftClick(){
  156. uni.reLaunch({url: '/center/center'});
  157. },
  158. /*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
  159. downCallback(){
  160. this.mescroll.resetUpScroll();
  161. },
  162. /*上拉加载的回调*/
  163. upCallback(page) {
  164. // this.statisticsOrder();
  165. // 此处可以继续请求其他接口
  166. // if(page.num == 1){
  167. // // 请求其他接口...
  168. // }
  169. // 如果希望先请求其他接口,再触发upCallback,可参考以下写法
  170. // if(!this.hasTypeId){
  171. // this.shopNewsType();
  172. // return // 此处return,先获取xx
  173. // }
  174. let pageNum = page.num; // 页码, 默认从1开始
  175. let pageSize = page.size; // 页长, 默认每页10条
  176. let params = {
  177. pageNum : page.num,
  178. pageSize : page.size,
  179. statusIn : this.tabsList[this.tabsCurrent]?.status||'',
  180. userid:this.vuex_member_info.id
  181. // status : this.tabsList[this.tabsCurrent].status,
  182. }
  183. // console.log('this.params',params);
  184. this.$u.api.orderList(params).then(data => {
  185. this.hasfetch = true;
  186. console.log('data',JSON.parse(JSON.stringify(data)));
  187. // 接口返回的当前页数据列表 (数组)
  188. let curPageData = data.data.rows;
  189. // console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
  190. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  191. let curPageLen = curPageData.length;
  192. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  193. // let totalPage = data.data.data.totalPage;
  194. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  195. let totalSize = data.data.total;
  196. // 接口返回的是否有下一页 (true/false)
  197. // let hasNext = data.xxx;
  198. // console.log('totalPage',totalPage,'curPageLen',curPageLen);
  199. //设置列表数据
  200. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  201. this.dataList = this.dataList.concat(curPageData); //追加新数据
  202. // 请求成功,隐藏加载状态
  203. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  204. // this.mescroll.endByPage(curPageLen, totalPage);
  205. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  206. this.mescroll.endBySize(curPageLen, totalSize);
  207. }).catch(err => {
  208. this.mescroll.endErr()
  209. console.log(err)
  210. });
  211. },
  212. /*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
  213. reloadList() {
  214. this.mescroll.resetUpScroll();
  215. },
  216. tabsClick(item){
  217. // this.status = item.status;
  218. this.tabsCurrent = item.index;
  219. this.reloadList()
  220. // console.log('item',item);
  221. },
  222. goOrderDetails(item){
  223. uni.$u.route('/center/orderdetails', {
  224. id: item.id
  225. });
  226. },
  227. toggleMore(item,index){
  228. // console.log('toggleMore',item);
  229. this.orderListWithClass[index].showMore = !this.orderListWithClass[index].showMore
  230. this.goodsKey++;
  231. },
  232. clickEven(fun,item){
  233. // console.log('fun',fun);
  234. let funObj = {
  235. pay: this.pay,
  236. goOrderDetails:this.goOrderDetails,
  237. evaluate:this.evaluate,
  238. refund:this.refund,
  239. cancelOrder:this.cancelOrder,
  240. viewRefund:this.viewRefund,
  241. confirmReceipt:this.confirmReceipt,
  242. viewEvaluate:this.viewEvaluate
  243. };
  244. // console.log('funObj[fun]',funObj[fun]);
  245. if (fun in funObj) {
  246. funObj[fun](item);
  247. }
  248. },
  249. getTemplateIdList(){
  250. this.$u.api.templateIdList({templateLabel:'order_pay'}).then(res=>{
  251. console.log('getTemplateIdList',res.data);
  252. this.templateIdList = res.data.list.map(item=>{
  253. return item.templateId
  254. });
  255. // if(this.templateIdList.length>0){
  256. // this.templateEven();
  257. // }
  258. }).catch(err=>{
  259. console.log('getTemplateIdList',err);
  260. })
  261. },
  262. pay(item){
  263. console.log('pay',item);
  264. // #ifdef H5
  265. this.gotoPay(item.id);
  266. // #endif
  267. // #ifdef MP
  268. this.setTemplate(item.id);
  269. // #endif
  270. // uni.$u.route('/shopping/pay', {
  271. // orderId: item.id,
  272. // // openid: that.vuex_wechatOpenid,
  273. // payAmount:item.orderPrice
  274. // });
  275. },
  276. evaluate(item){
  277. // console.log('logistics',item);
  278. uni.$u.route('/shopping/evaluate', {
  279. id: item.id
  280. });
  281. },
  282. comment(orderId,orderDetailId,goodsId){
  283. uni.$u.route('/shopping/addcomment', {
  284. orderId,
  285. orderDetailId,
  286. goodsId
  287. });
  288. },
  289. viewComment(orderDetailId,goodsId,goods){
  290. uni.$u.route('/shopping/viewcomment', {
  291. orderDetailId,
  292. goodsId,
  293. goods:JSON.stringify(goods)
  294. });
  295. },
  296. refund(item){
  297. // console.log('logistics',item);
  298. uni.$u.route('/shopping/refund', {
  299. id: item.id
  300. });
  301. },
  302. cancelOrder(item){
  303. let that = this;
  304. uni.showModal({
  305. title: '提示',
  306. content: '确认取消吗!',
  307. success: res => {
  308. if (res.confirm) {
  309. this.$u.api.cancelOrder({orderId:item.id}).then(res=>{
  310. this.$refs.uToast.show({
  311. message:res.msg,
  312. complete() {
  313. that.reloadList();
  314. }
  315. });
  316. // uni.$u.toast(res.msg);
  317. console.log('res',res.data);
  318. }).catch(err=>{
  319. console.log('cancelOrder',err);
  320. })
  321. }
  322. }
  323. });
  324. // console.log('logistics',item);
  325. },
  326. viewRefund(item){
  327. uni.$u.route('/center/viewRefund', {
  328. orderId: item.id
  329. });
  330. },
  331. confirmReceipt(item){
  332. let that = this;
  333. uni.showModal({
  334. title: '提示',
  335. content: '确认收货吗!',
  336. success: res => {
  337. if (res.confirm) {
  338. this.$u.api.confirmReceipt({orderId:item.id}).then(res=>{
  339. uni.showToast({
  340. title:res.msg,
  341. duration:2000,
  342. complete() {
  343. that.reloadList();
  344. }
  345. });
  346. console.log('res',res.data);
  347. }).catch(err=>{
  348. console.log('confirmReceipt',err);
  349. })
  350. }
  351. }
  352. })
  353. },
  354. viewEvaluate(item){
  355. uni.$u.route('/shopping/orderdetails', {
  356. id: item.id
  357. });
  358. },
  359. // 设置小程序订阅消息
  360. setTemplate(orderId) {
  361. let that = this;
  362. console.log('templateIdList',this.templateIdList);
  363. uni.requestSubscribeMessage({
  364. tmplIds: that.templateIdList,
  365. success (res) {
  366. // that.gotoPay();
  367. console.log("success:",res);
  368. },
  369. fail (res) {
  370. console.log("fail:",res);
  371. },
  372. complete (res) {
  373. that.gotoPay(orderId);
  374. console.log("complete:",res);
  375. }
  376. })
  377. },
  378. gotoPay(orderId){
  379. this.$u.api.gotoPay({orderId:orderId,openid:''}).then(res=>{
  380. this.payResult = res.data.payInfo;
  381. this.payResult.package = res.data.payInfo.packageValue;
  382. // #ifdef H5
  383. this.initConfig(this.payResult)
  384. // #endif
  385. // #ifdef MP
  386. this.wxPay()
  387. // #endif
  388. // if(this.params.paymentMode==1||this.params.paymentMode==4){
  389. // this.wxPay()
  390. // }else{
  391. // uni.$u.route('/shopping/paysuccess');
  392. // }
  393. console.log('gotoPayres',res.data);
  394. }).catch(err=>{
  395. this.paypass = '';
  396. this.checkPassShow = false;
  397. console.log('gotoPay',err);
  398. })
  399. },
  400. wxPay(){
  401. let that = this;
  402. uni.requestPayment({
  403. ... this.payResult,
  404. "provider": "wxpay",
  405. "orderInfo": {
  406. // "appid": "wx499********7c70e", // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  407. // "noncestr": "c5sEwbaNPiXAF3iv", // 随机字符串
  408. // "package": "Sign=WXPay", // 固定值
  409. // "partnerid": "148*****52", // 微信支付商户号
  410. // "prepayid": "wx202254********************fbe90000", // 统一下单订单号
  411. // "timestamp": 1597935292, // 时间戳(单位:秒)
  412. // "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // 签名,这里用的 MD5/RSA 签名
  413. },
  414. success(res) {
  415. that.payQuery();
  416. },
  417. fail(e) {
  418. console.log('wxPayfail',e);
  419. }
  420. })
  421. },
  422. payQuery(){
  423. let that = this;
  424. let retryCount = 0;
  425. let maxRetryCount = 5; // 设置最大重试次数
  426. let interval = 2000; // 设置间隔时间为2秒
  427. let timeout = 10000; // 设置超时时间为10秒
  428. let timer;
  429. uni.showLoading({
  430. title:'支付结果查询中'
  431. })
  432. timer = setInterval(() => {
  433. retryCount++;
  434. if (retryCount > maxRetryCount || retryCount * interval > timeout) {
  435. clearInterval(timer);
  436. uni.hideLoading();
  437. console.log("支付查询超时或达到最大重试次数");
  438. // 在这里添加超时或达到最大重试次数的处理逻辑
  439. this.reloadList()
  440. } else {
  441. console.log("第" + retryCount + "次查询");
  442. // 调用查询支付状态的方法
  443. // 如果支付状态为成功,则清除定时器并处理成功的逻辑
  444. // 如果支付状态为失败,则清除定时器并处理失败的逻辑
  445. this.$u.api.payQuery({orderId:this.orderId}).then(res=>{
  446. // 0-未支付 1-已支付 2-支付中 3-支付失败 4-支付退款
  447. let payStatus = res.data.payStatus;
  448. if(payStatus===1){
  449. uni.$u.route('/center/paysuccess');
  450. }else if(payStatus===0||payStatus===2){
  451. this.payQuery()
  452. }else if(payStatus===3){
  453. uni.toast('支付失败')
  454. }
  455. clearInterval(timer);
  456. }).catch(err=>{
  457. console.log('payQuery',err);
  458. }).finally(()=>{
  459. uni.hideLoading()
  460. })
  461. }
  462. }, interval);
  463. },
  464. statisticsOrder(){
  465. this.$u.api.statisticsOrder().then(res=>{
  466. let data = res.data || {};
  467. this.orderBadge = Object.assign(this.orderBadge,data);
  468. let {noPayNum,deliverNum,collectNum,commentNum,refundNum} = res.data;
  469. let noPayNumindex = this.tabsList.findIndex(item => item.status == 0);
  470. this.tabsList[1].badge.isDot = false;
  471. this.tabsList[1].badge.value = noPayNum;
  472. this.tabsList[2].badge.isDot = false;
  473. this.tabsList[2].badge.value = deliverNum;
  474. this.tabsList[3].badge.isDot = false;
  475. this.tabsList[3].badge.value = collectNum;
  476. this.tabsList[4].badge.isDot = false;
  477. this.tabsList[4].badge.value = commentNum;
  478. this.tabsList[5].badge.isDot = false;
  479. this.tabsList[5].badge.value = refundNum;
  480. // console.log('statisticsOrder',res.data);
  481. // console.log('this.orderBadge',this.orderBadge);
  482. }).catch(err=>{
  483. console.log('memberInfo',err.data);
  484. })
  485. },
  486. /**
  487. * 公众号微信支付
  488. */
  489. initConfig() {
  490. // #ifdef H5
  491. let that = this
  492. wxH5.config({
  493. debug: false, // 这里一般在测试阶段先用ture,等打包给后台的时候就改回false,
  494. appId: that.payResult.appId, // 必填,公众号的唯一标识
  495. timestamp: that.payResult.timeStamp, // 必填,生成签名的时间戳
  496. nonceStr: that.payResult.nonceStr, // 必填,生成签名的随机串
  497. signature: that.payResult.paySign, // 必填,签名
  498. jsApiList: ['chooseWXPay', 'checkJsApi'] // 必填,需要使用的JS接口列表
  499. })
  500. wxH5.ready(() => {
  501. wxH5.chooseWXPay({
  502. timestamp: that.payResult.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  503. nonceStr: that.payResult.nonceStr, // 支付签名随机串,不长于 32 位
  504. package: that.payResult.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  505. signType: 'SHA1', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  506. paySign: that.payResult.paySign, // 支付签名
  507. success: () => {
  508. that.payQuery();
  509. },
  510. fail: (e) => {
  511. uni.$u.route('/center/order', {
  512. status: 0
  513. });
  514. console.log('wxPayfail', e);
  515. },
  516. cancel: () => {
  517. that.cansubmit = true;
  518. }
  519. })
  520. })
  521. // #endif
  522. }
  523. }
  524. }
  525. </script>
  526. <style>
  527. page{
  528. background-color: #F5F5F5;
  529. }
  530. </style>
  531. <style lang="scss" scoped>
  532. .tabs-wrap{
  533. background-color: #fff;
  534. margin-bottom: 10rpx;
  535. }
  536. .list-item{
  537. overflow: hidden;
  538. width: 48%;
  539. margin-bottom: 30rpx;
  540. background-color: #fff;
  541. .image-wrap{
  542. margin-bottom: 20rpx;
  543. }
  544. }
  545. .order-item{
  546. margin-bottom: 20rpx;
  547. background: #FFFFFF;
  548. box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(221,221,221,0.5);
  549. border-radius: 20rpx;
  550. padding: 32rpx;
  551. content-visibility: auto;
  552. contain-intrinsic-size: 346rpx;
  553. .top{
  554. font-size: 24rpx;
  555. font-weight: 400;
  556. color: #7F7F7F;
  557. line-height: 36rpx;
  558. margin-bottom: 36rpx;
  559. }
  560. .info{
  561. margin-bottom: 30rpx;
  562. .img{
  563. width: 180rpx;
  564. height: 160rpx;
  565. }
  566. .text{
  567. font-size: 24rpx;
  568. font-weight: 400;
  569. color: #7F7F7F;
  570. padding-left: 26rpx;
  571. flex: 1;
  572. .name{
  573. font-size: 28rpx;
  574. font-weight: bold;
  575. color: #363636;
  576. margin-bottom: 20rpx;
  577. }
  578. .time{
  579. margin-bottom: 20rpx;
  580. }
  581. .position{
  582. margin-bottom: 20rpx;
  583. }
  584. .statistics{
  585. text-align: right;
  586. }
  587. .label{
  588. font-size: 24rpx;
  589. font-weight: 400;
  590. color: #363636;
  591. margin-left: 10rpx;
  592. }
  593. .price{
  594. font-size: 32rpx;
  595. font-weight: bold;
  596. color: #ED0000;
  597. }
  598. }
  599. }
  600. .btn-wrap{
  601. }
  602. .btn{
  603. padding: 12rpx 40rpx;
  604. border: 1px solid #E5E5E5;
  605. color: #7F7F7F;
  606. text-align: center;
  607. border-radius: 8rpx;
  608. font-size: 24rpx;
  609. &.red{border-color: #ED0000;color: #ED0000;}
  610. &.red.solid{border-color: #ED0000;background-color:#ED0000;color: #fff;}
  611. &.green{color: #00A447;border-color: #00A447;}
  612. &:not(:first-child){
  613. margin-left: 20rpx;
  614. }
  615. }
  616. &.status-0{.status{color:#FF3C3F;}}
  617. &.status-1{.status{color:#FF3C3F;}}
  618. &.status-2{.status{color:#0099EB;}}
  619. &.status-3{.status{color:#00A447;}}
  620. &.status-4{.status{color:#FF3C3F;}}
  621. &.status-5{.status{color:#FF3C3F;}}
  622. &.status-6{.status{color:#FF3C3F;}}
  623. &.status-7{.status{color:#FFB100;}}
  624. }
  625. </style>