From f9cf652f45119be24a073c65de4743f0c05b3347 Mon Sep 17 00:00:00 2001 From: chenkainan Date: Sat, 14 Sep 2024 17:57:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/user/user.vue | 2 +- subPackages/order/trades.vue | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/user/user.vue b/pages/user/user.vue index 4a24399..6c0ff40 100644 --- a/pages/user/user.vue +++ b/pages/user/user.vue @@ -84,7 +84,7 @@ { src: 'https://static.ticket.sz-trip.com/yandu/images/user/dsh.png', title: '待收货', - status: 'WAIT_CONFIRM' + status: 'POST' }, // { // src: 'https://static.ticket.sz-trip.com/yandu/images/user/dpj.png', diff --git a/subPackages/order/trades.vue b/subPackages/order/trades.vue index a0f334d..c67c411 100644 --- a/subPackages/order/trades.vue +++ b/subPackages/order/trades.vue @@ -84,7 +84,7 @@ export default { name: '待发货' }, { - id: 'WAIT_CONFIRM', + id: 'POST', name: '待收货' }, // { @@ -299,7 +299,8 @@ export default { status: this.typeList[this.typeIndex].id == 'ALL' ? '' : this.typeList[this.typeIndex].true_id || this.typeList[this.typeIndex].id, offset: this.list.length, limit: 5, - name: this.keywords + name: this.keywords, + type: this.typeList[this.typeIndex].name == '待使用' ? 1 : (this.typeList[this.typeIndex].name == '待发货' ? 2 : '') }; this.Post(data, '/api/order/orderList').then(res => { this.list = [...this.list, ...res.data] @@ -352,6 +353,7 @@ view { margin: auto; color: #666; overflow-x: scroll; + overflow-y: hidden; padding: 0 27rpx; }