From 98f2a3c24d38aab807ee37b4c3ac82029cd06657 Mon Sep 17 00:00:00 2001 From: "YEJIAXING-PC\\lenovo" <591141169@qq.com> Date: Thu, 29 May 2025 13:38:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E4=BD=8D=E6=A0=87=E7=AD=BE=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/eam/basic/location/index.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/eam/basic/location/index.vue b/src/views/eam/basic/location/index.vue index 7db9845..00e0dd4 100644 --- a/src/views/eam/basic/location/index.vue +++ b/src/views/eam/basic/location/index.vue @@ -137,8 +137,10 @@ message.error('请选择要生成标签的数据') return } - const qrCodeList = selections.map(item => `'${item?.number}'`).join(', ') - window.open(src.value + "&number=" + qrCodeList) + const qrCodeList = selections.map(item => `'${item?.id}'`).join(',') + console.log("yeyeyeeye",qrCodeList); + + window.open(src.value + "&ids=" + qrCodeList) } // 列表-操作按钮 @@ -153,7 +155,7 @@ if (val == 'edit') { // 编辑 openForm('update', row) } else if (val == 'qrCode') { - window.open(src.value + "&number='" + row.number + "'") + window.open(src.value + "&ids='" + row.id + "'") } else if (val == 'delete') { // 删除 handleDelete(row.id) }