From b47fe1c5c2d4826c751cacd1bfb78bd559a4dbac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E7=A3=8A?= <45566618@qq.com> Date: Fri, 16 Aug 2024 15:18:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=85=E8=A1=A5=E5=8D=95=E5=A4=87=E6=B3=A8?= =?UTF-8?q?=EF=BC=8C=E9=92=B1=E5=8C=85=E6=98=8E=E7=BB=86=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- my/order/payModifyDd.vue | 64 +++++++++++++++++++++++++++++++++++-- my/wallet/mymoneydetail.vue | 2 +- 2 files changed, 62 insertions(+), 4 deletions(-) diff --git a/my/order/payModifyDd.vue b/my/order/payModifyDd.vue index ac7aeaa..5766996 100644 --- a/my/order/payModifyDd.vue +++ b/my/order/payModifyDd.vue @@ -150,7 +150,16 @@ - 备注 + + 给技师捎句话 + + + + + {{item.title}} + + @@ -333,7 +342,15 @@ couponDataList:'', orderXm:[], number:1, - technicianRate:'' + technicianRate:'', + selected:[], + selectedString:'', + fuwuBtn: [ + {'title':'请速回电'}, + {'title':'勿大声敲门'}, + {'title':'尽快上门服务'}, + {'title':'直接来即可'}, + ], } }, onLoad(e) { @@ -357,7 +374,7 @@ this.youhuiF(this.couponId) } this.orderXm=this.$queue.getData('xiangmu');//上一个页面带过来的全部数据 - this.textareaData=this.orderXm.remark + // this.textareaData=this.orderXm.remark this.number=this.orderXm.massageNum console.log('this.orderXm',this.orderXm) this.youhui() @@ -408,6 +425,19 @@ // #endif }, methods: { + gukeBtn(item) { + var index = this.selected.indexOf(item); + if (index === -1) { + this.selected.push(item); + } else { + this.selected.splice(index, 1); + } + var data = []; + for (var i = 0; i < this.selected.length; i++) { + data.push(this.selected[i].title) + } + this.textareaData = data.join(",") + }, changeValue(value){ this.number=value }, @@ -1369,6 +1399,34 @@