|
@@ -4967,10 +4967,13 @@
|
|
|
}
|
|
|
domainItem.projectAuditorId = null;
|
|
|
domainItem.projectAuditorName = null;
|
|
|
-
|
|
|
- this.http.post('/project-auditor/getList',{
|
|
|
- projectId: domainItem.projectId,
|
|
|
- },
|
|
|
+ var param = { projectId: domainItem.projectId};
|
|
|
+ if (this.isSubstitude) {
|
|
|
+ if (this.workForm.userId != null && this.workForm.userId.length>0) {
|
|
|
+ param.userId = this.workForm.userId[0];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.http.post('/project-auditor/getList',param,
|
|
|
res => {
|
|
|
if (res.code == "ok") {
|
|
|
domainItem.auditUserList = res.data;
|