From e4ffb2e23c86c452c81d485d4eb613f17ddaea97 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Thu, 20 Mar 2025 16:01:28 +0800
Subject: [PATCH] 修改签名
---
src/views/signProject/components/circulation.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/signProject/components/circulation.vue b/src/views/signProject/components/circulation.vue
index 7b0be49..887a7c2 100644
--- a/src/views/signProject/components/circulation.vue
+++ b/src/views/signProject/components/circulation.vue
@@ -25,7 +25,7 @@
filterable
remote
reserve-keyword
- placeholder="请输入签署人名称(可多选)"
+ placeholder="请输入签署人名称"
remote-show-suffix
:remote-method="(val)=>getUserList(val,state.form.signDeptId)"
style="width: 100%"
@@ -95,7 +95,6 @@
const getDept = () => {
listDept().then(response => {
state.options = proxy.handleTree(response.data, "deptId",'parentId','children');
- console.log('response',state.options)
});
}
@@ -148,12 +147,13 @@
}
const getUserList = async (val,deptId)=>{
if(deptId == '' || deptId == null){
- ElMessage.warning("请选择部门!")
+ // ElMessage.warning("请选择部门!")
return;
}
if(val != ""){
const queryParams = {
- name: val,
+ deptId: deptId,
+ nickName: val,
}
const res = await listUser(queryParams)
if (res.code == 200) {
--
Gitblit v1.9.2