From fadd2972110e5e4b2b390fc322354321f3de56cd Mon Sep 17 00:00:00 2001 From: A0010407 Date: Tue, 28 May 2024 15:46:08 +0800 Subject: [PATCH] =?UTF-8?q?2024-05-28=20=E8=AE=BE=E5=A4=87-=E4=BF=9D?= =?UTF-8?q?=E5=85=BB-=E7=BB=93=E6=9E=9C=E6=A3=80=E9=AA=8C=E5=90=8E?= =?UTF-8?q?=E5=8F=91=E9=80=81=E5=BE=AE=E4=BF=A1=E6=8F=90=E9=86=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/device/upkeepOrder/index.vue | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/views/device/upkeepOrder/index.vue b/src/views/device/upkeepOrder/index.vue index 77d729bc..314b2d55 100644 --- a/src/views/device/upkeepOrder/index.vue +++ b/src/views/device/upkeepOrder/index.vue @@ -447,6 +447,14 @@ /> + + + - - - { @@ -2137,6 +2140,9 @@ export default { // 多选框选中数据 handleSelectionChange(selection) { this.ids = selection.map((item) => item.orderId); + this.orderCodes = selection.map((item) => item.orderCode); + console.log('this.ids',this.ids); + console.log('this.orderCodes',this.orderCodes); this.single = selection.length !== 1; this.multiple = !selection.length; },