From e950c38ba82e5e6bc8b0c50c35e5dbb6a180165a Mon Sep 17 00:00:00 2001
From: 13404089107 <puwei@sinata.cn>
Date: 星期二, 20 五月 2025 16:43:06 +0800
Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory

---
 laboratory/src/components/SelectMember/index.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/laboratory/src/components/SelectMember/index.vue b/laboratory/src/components/SelectMember/index.vue
index 96ca265..621e526 100644
--- a/laboratory/src/components/SelectMember/index.vue
+++ b/laboratory/src/components/SelectMember/index.vue
@@ -59,7 +59,7 @@
 </template>
 
 <script>
-import { getRoleList, getUserList } from './service'
+import { getRoleList, getUserList, listByRole } from './service'
 export default {
     props: {
         projectId: {
@@ -118,7 +118,8 @@
             if (this.projectId) {
                 params.projectId = this.projectId;
                 // TODO: 这里需要替换为新的接口调用
-                // const res = await getProjectUserList(params);
+                const res = await listByRole(params);
+                this.tableData = res.records;
             } else {
                 const res = await getUserList(params);
                 this.tableData = res.records;

--
Gitblit v1.7.1