|
@@ -414,6 +414,9 @@ const initFill = async () => {
|
|
let now = Date.now();
|
|
let now = Date.now();
|
|
item.value = JSON.stringify({ value: now });
|
|
item.value = JSON.stringify({ value: now });
|
|
}
|
|
}
|
|
|
|
+ if (item.formName == 'region_manager_id_1') {
|
|
|
|
+ item.writable = false;
|
|
|
|
+ }
|
|
return item;
|
|
return item;
|
|
});
|
|
});
|
|
currFlowTaskResultSetup.value = res.currFlowTaskResult.setup;
|
|
currFlowTaskResultSetup.value = res.currFlowTaskResult.setup;
|
|
@@ -465,6 +468,10 @@ const initEdit = async () => {
|
|
if (v.formName === 'third_service_region_cb_1') {
|
|
if (v.formName === 'third_service_region_cb_1') {
|
|
v.writable = false;
|
|
v.writable = false;
|
|
}
|
|
}
|
|
|
|
+ //2024-08-26新增需求,填报和编辑时,项目初审里的大区经理置灰
|
|
|
|
+ if (v.formName == 'region_manager_id_1') {
|
|
|
|
+ v.writable = false;
|
|
|
|
+ }
|
|
if (
|
|
if (
|
|
props.sop?.status === 'FINISH' &&
|
|
props.sop?.status === 'FINISH' &&
|
|
[
|
|
[
|
|
@@ -479,6 +486,13 @@ const initEdit = async () => {
|
|
return v;
|
|
return v;
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+ //2024-08-26新增,编辑的时候,内审模块全部置灰
|
|
|
|
+ if (item.taskKey === 'f_usertask_cloudmark_inside_approve_3') {
|
|
|
|
+ item.formProperty = item.formProperty.map((v) => {
|
|
|
|
+ v.writable = false;
|
|
|
|
+ return v;
|
|
|
|
+ });
|
|
|
|
+ }
|
|
return item;
|
|
return item;
|
|
});
|
|
});
|
|
flowApproveHistoryList.value = getFlowApproveHistoryList(
|
|
flowApproveHistoryList.value = getFlowApproveHistoryList(
|