From 583f0b0df83876e68e8729d9872f83af08b8ae27 Mon Sep 17 00:00:00 2001 From: futian.liu <liufutianyoo@163.com> Date: 星期五, 08 十二月 2023 10:35:06 +0800 Subject: [PATCH] 部门使用人重复显示修改 --- admin-web/src/views/departmentitem/itemdis/distribution/index.vue | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/admin-web/src/views/departmentitem/itemdis/distribution/index.vue b/admin-web/src/views/departmentitem/itemdis/distribution/index.vue index 8be3bbe..4cd1a5a 100644 --- a/admin-web/src/views/departmentitem/itemdis/distribution/index.vue +++ b/admin-web/src/views/departmentitem/itemdis/distribution/index.vue @@ -135,7 +135,7 @@ optionsConfig: { label: 'goodsName', value: 'id', - url: SettingIplatform.apiBaseURL + '/pc/base/goods/template/query/goodsTemplate', + url: SettingIplatform.apiBaseURL + `/pc/base/goods/template/query/goodsTemplate?tenantId=${getUserDetail().tenantId}`, }, }, { @@ -172,17 +172,14 @@ qryType: 1, pageNum: this.pageNum, pageSize: this.pageSize, + outAgencyId: 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