This commit is contained in:
2025-09-03 15:42:10 +08:00
parent a95d18906f
commit 055811702b
3 changed files with 91 additions and 72 deletions

View File

@ -425,7 +425,7 @@ const cancel = () => {
};
// 获取人员列表
const getDesignUserList = async () => {
const res = await copyUserList({});
const res = await copyUserList({ projectId: currentProject.value?.id, userType: 2 });
if (res.code === 200) {
userCoryList.value = res.data;
}