From 74b10f4620d1204b681dd0a587feea83c061fc37 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Fri, 14 Aug 2020 14:38:43 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=9B=B4=E6=92=AD=E4=BA=BA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/release/zhibo.nvue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/release/zhibo.nvue b/pages/release/zhibo.nvue index 3fd7424..52c0660 100644 --- a/pages/release/zhibo.nvue +++ b/pages/release/zhibo.nvue @@ -41,7 +41,7 @@
{{info.member_nickname}} - {{time}} | {{room.onlineUsers.users.length}} + {{time}} | {{room.onlineUsers.users.length - 1 < 0 ? 0 : room.onlineUsers.users.length - 1}}
-- 2.45.2 From 8276bf358f5cc8c54826d8d551a30542eb0e0b73 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Fri, 14 Aug 2020 17:09:31 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/details.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pages/index/details.vue b/pages/index/details.vue index 591a6e9..59b02a9 100644 --- a/pages/index/details.vue +++ b/pages/index/details.vue @@ -75,6 +75,10 @@ 快递 骑手 + + {{cur == 0 ? '快递单号':'骑手信息'}} + {{ cur == 0 ? pushid ? companyidA.express_name + ": " + pushid : '' : selctcar ? selctcar.label : '' }} + 确认 @@ -147,7 +151,7 @@ export default { data() { return { status: 1, // 订单状态 - cur: Number, + cur: 2, showDelivery: false, // 填写骑手信息 showExpress: false, // 填写快递单号 showRefunds: false, // 平台退货处理 @@ -330,7 +334,7 @@ export default { // 选择快递公司 getselectcompany(e) { let obj = this.companylist[e[0]]; - this.companyidA = obj.express_id; + this.companyidA = obj; this.showExpress = true; }, // 绑定配送方式 @@ -355,7 +359,7 @@ export default { this.$u.api.bindpushid({ order_id: this.orderid, shipping_code: this.pushid, - shipping_express_id: this.companyidA + shipping_express_id: this.companyidA.express_id }).then(res => { if (res.errCode != 0) { this.$refs.uToast.show({ -- 2.45.2 From f57ebac022ee8d8846189f194f7e10880f23e005 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Fri, 14 Aug 2020 17:11:17 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E4=B8=8D?= =?UTF-8?q?=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/index/index.vue b/pages/index/index.vue index 2ea0062..4864c5f 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -152,6 +152,7 @@ export default { }, onShow() { this.publishstate = false; + this.tabsChange(this.current) }, onReachBottom() { this.num++; -- 2.45.2