From 0867e4cc4796065d8b198588f0133f699ea5f09b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Wed, 11 Mar 2026 15:21:12 +0800 Subject: [PATCH] =?UTF-8?q?chooselist=E8=BF=87=E6=BB=A4=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/common/Chooselist_eam.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/modules/common/Chooselist_eam.vue b/src/views/modules/common/Chooselist_eam.vue index f28f3e5..9ad7613 100644 --- a/src/views/modules/common/Chooselist_eam.vue +++ b/src/views/modules/common/Chooselist_eam.vue @@ -226,11 +226,13 @@ export default { if (this.param6 ) { sql += " and active like '%" + this.param6 + "%'" } + //500以内自动增加site和BU过滤 if (this.tagNo <= 500 && this.tagNo !== 93 && this.tagNo !== 201) { if (this.param7) { sql += " and site in (select site from eam_access_site where username = '" + this.param7 + "') " + " and bu_no in (select a.bu_no from AccessBu as a left join eam_access_site as b on a.site = b.site and a.username = b.username where a.username = '" + this.param7 + "')" } } + //500-1000自动增加site过滤 if (this.tagNo > 500 && this.tagNo < 1000) { if (this.param7) { sql += " and site in (select site from eam_access_site where username = '" + this.param7 + "') "