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; });