|
@@ -85,10 +85,10 @@
|
|
|
<CellCom
|
|
<CellCom
|
|
|
ref="managerIdRef"
|
|
ref="managerIdRef"
|
|
|
title="项目负责人:"
|
|
title="项目负责人:"
|
|
|
- type="managerId"
|
|
|
|
|
|
|
+ type="managerIds"
|
|
|
:text-style="{ width: '100px' }"
|
|
:text-style="{ width: '100px' }"
|
|
|
:style="{ marginLeft: 0, marginBottom: 0 }"
|
|
:style="{ marginLeft: 0, marginBottom: 0 }"
|
|
|
- @click="showUserListPopup('项目负责人', 'managerId')"
|
|
|
|
|
|
|
+ @click="showUserListPopup('项目负责人', 'managerIds')"
|
|
|
/>
|
|
/>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -208,7 +208,7 @@ const reset = () => {
|
|
|
equipCode: '',
|
|
equipCode: '',
|
|
|
projectNo: '',
|
|
projectNo: '',
|
|
|
unitName: '',
|
|
unitName: '',
|
|
|
- managerId: '',
|
|
|
|
|
|
|
+ managerIds: '',
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
// 清空人员选择缓存
|
|
// 清空人员选择缓存
|
|
@@ -262,9 +262,9 @@ const handleUserConfirm = (users: any[]) => {
|
|
|
} else if (type === 'checkUserStrIds') {
|
|
} else if (type === 'checkUserStrIds') {
|
|
|
checkUserStrIdsRef.value?.setInputContent(displayNames)
|
|
checkUserStrIdsRef.value?.setInputContent(displayNames)
|
|
|
params.checkUserStrIds = ids
|
|
params.checkUserStrIds = ids
|
|
|
- } else if (type === 'managerId') {
|
|
|
|
|
|
|
+ } else if (type === 'managerIds') {
|
|
|
managerIdRef.value?.setInputContent(displayNames)
|
|
managerIdRef.value?.setInputContent(displayNames)
|
|
|
- params.managerId = ids
|
|
|
|
|
|
|
+ params.managerIds = ids
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|