From 44bb5f51d146a5ab07bb8da53c2c426986224c37 Mon Sep 17 00:00:00 2001 From: zyn Date: Thu, 14 Sep 2023 10:54:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF-=E5=9B=BD=E5=86=85/?= =?UTF-8?q?=E6=B5=B7=E5=A4=96/=E4=BC=81=E6=A0=87-=E6=A0=87=E5=87=86?= =?UTF-8?q?=E4=BD=93=E7=B3=BB=E5=8F=AF=E4=B8=8D=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../phone/components/standardSystemPopup.vue | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/pages/phone/components/standardSystemPopup.vue b/src/pages/phone/components/standardSystemPopup.vue index 4af9e17ac..bf33f569c 100644 --- a/src/pages/phone/components/standardSystemPopup.vue +++ b/src/pages/phone/components/standardSystemPopup.vue @@ -51,22 +51,22 @@ export default { this.checkedKeys = val }, handleOk () { - if (this.checkedKeys.length > 0) { + // if (this.checkedKeys.length > 0) { this.popupShow = false this.$emit('standSystemKeys', this.checkedKeys) - } else { - // this.$toast('请至少选择一项'); - this.$message.error('请至少选择一项') - this.popupShow = true - } + // } else { + // // this.$toast('请至少选择一项'); + // this.$message.error('请至少选择一项') + // this.popupShow = true + // } }, handleCancel () { - if (this.initKeys.length > 0) { + // if (this.initKeys.length > 0) { this.hide() - } else { - this.$message.error('请至少选择一项') - this.open() - } + // } else { + // this.$message.error('请至少选择一项') + // this.open() + // } }, } }