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() + // } }, } }