tangjie 2026-08-05 21:34:01 +08:00
parent abf89d4b76
commit aee347f000
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ const ControlContent = ({ readOnly, ...props }) => {
const fetchDetail = () => { const fetchDetail = () => {
props.evalProcessControlDetail({ projectId }).then((res) => { props.evalProcessControlDetail({ projectId }).then((res) => {
if (res?.success) { if (res?.success) {
if (res?.data?.signTaskPersonCo) { if (res?.data?.orgHeadSignTaskPersonCo) {
setSelectPeople({ setSelectPeople({
value: res?.data?.signTaskPersonCo?.signerPersonnelId, value: res?.data?.orgHeadSignTaskPersonCo?.signerPersonnelId,
label: res?.data?.signTaskPersonCo?.signerName, label: res?.data?.orgHeadSignTaskPersonCo?.signerName,
}); });
} }
} }