From 149cc67e240b69585a562ba16c288bfb75f56fda Mon Sep 17 00:00:00 2001 From: cy <1664593601@qq.com> Date: 星期六, 09 十二月 2023 17:19:06 +0800 Subject: [PATCH] feat: 根据分发单查询使用人 --- admin-web/src/views/departmentitem/itemdis/distribution/index.vue | 10 +++------- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/admin-web/src/views/departmentitem/itemdis/distribution/index.vue b/admin-web/src/views/departmentitem/itemdis/distribution/index.vue index 6ded764..1adbf96 100644 --- a/admin-web/src/views/departmentitem/itemdis/distribution/index.vue +++ b/admin-web/src/views/departmentitem/itemdis/distribution/index.vue @@ -114,7 +114,7 @@ }, { type: 'select', - dataIndex: 'inAgencyId', + dataIndex: 'departmentId', label: '鍒嗗彂閮ㄩ棬', placeholder: '璇烽�夋嫨', optionsConfig: { @@ -172,18 +172,14 @@ qryType: 1, pageNum: this.pageNum, pageSize: this.pageSize, - outAgencyId: this.userInfo.tenantId, + departmentId: this.userInfo.tenantId, ...this.filterFrom, }).then((res) => { this.list = res.datas; this.total = res.totalRows; this.loading = false; }); - }, - fifterForm(params) { - this.filterFrom = Object.assign(this.filterFrom, params); - this.search(1); - }, + } }, }; </script> -- Gitblit v1.9.1