From 79484f4279f6a908822324ecf58570ac4aaf4816 Mon Sep 17 00:00:00 2001 From: "382696293@qq.com" <382696293@qq.com> Date: Tue, 6 Feb 2024 11:42:42 +0800 Subject: [PATCH] =?UTF-8?q?bug:=E3=80=90ID1000401=E3=80=91=20=20=20=20=20?= =?UTF-8?q?=E4=BB=AA=E5=99=A8=E7=AE=A1=E7=90=86-=E5=BA=8F=E5=88=97?= =?UTF-8?q?=E5=8F=B7=E8=AE=B0=E5=BD=95=E3=80=81=E7=94=A8=E6=88=B7=E7=BB=91?= =?UTF-8?q?=E5=AE=9A=E8=AE=B0=E5=BD=95=E6=89=B9=E9=87=8F=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flossom-ui/src/views/system/instrumentSerial/index.vue | 3 ++- flossom-ui/src/views/system/userInstrument/index.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/flossom-ui/src/views/system/instrumentSerial/index.vue b/flossom-ui/src/views/system/instrumentSerial/index.vue index 1928894..d1b6810 100644 --- a/flossom-ui/src/views/system/instrumentSerial/index.vue +++ b/flossom-ui/src/views/system/instrumentSerial/index.vue @@ -602,7 +602,8 @@ export default { }, // 批量操作 batchOperate() { - if (this.batchOperateValue == null) { + console.log(this.batchOperateValue) + if (this.batchOperateValue == null || this.batchOperateValue == '') { this.$message.error("请选择您的操作"); return; } diff --git a/flossom-ui/src/views/system/userInstrument/index.vue b/flossom-ui/src/views/system/userInstrument/index.vue index c261c70..57f88c4 100644 --- a/flossom-ui/src/views/system/userInstrument/index.vue +++ b/flossom-ui/src/views/system/userInstrument/index.vue @@ -694,7 +694,7 @@ export default { }, // 批量操作 batchOperate() { - if (this.batchOperateValue == null) { + if (this.batchOperateValue == null || this.batchOperateValue == '') { this.$message.error("请选择您的操作"); return; }