From 64ceaad4dbb725e633bacf2a85cbed2aed468985 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Tue, 2 Apr 2024 09:30:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/companyAdmin/supplierManage/index.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/companyAdmin/supplierManage/index.vue b/src/views/companyAdmin/supplierManage/index.vue index 3f3b3f3e..2b2e2556 100644 --- a/src/views/companyAdmin/supplierManage/index.vue +++ b/src/views/companyAdmin/supplierManage/index.vue @@ -295,9 +295,13 @@ export default { }, //获取列表数据 getListData() { - let data = this.treeSelectData; - let sn = this.$store.state.userInfo.sn; - getUserAuditListApi({ sn: sn, accountType: 2 }).then((res) => { + let requestData = { + headquartersSn: this.$store.state.userInfo.headquartersSn, + pageNo:this.pageNo, + pageSize: this.pageSize, + accountType: 2 + } + getUserAuditListApi(requestData).then((res) => { this.userAuditList = res.result.records; this.total = res.result.total; });