diff --git a/epmet-oper-web/src/views/modules/dataExport/operStatic.vue b/epmet-oper-web/src/views/modules/dataExport/operStatic.vue index 81ec20a..592049e 100644 --- a/epmet-oper-web/src/views/modules/dataExport/operStatic.vue +++ b/epmet-oper-web/src/views/modules/dataExport/operStatic.vue @@ -288,8 +288,13 @@ export default { }, validate () { - if (!this.tableParams.customerId || this.agencyIdArray.length == 0) { - this.$message.info("请选择客户和组织") + if (!this.tableParams.customerId) { + this.$message.info("请选择客户") + return false + } + + if (this.agencyIdArray.length == 0) { + this.$message.info("请选择组织") return false }