File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/views/bpm/processInstance/create Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ const getApprovalDetail = async (row: any) => {
162
162
const data = await ProcessInstanceApi .getApprovalDetail ({
163
163
processDefinitionId: row .id ,
164
164
activityId: NodeId .START_USER_NODE_ID ,
165
- processVariablesStr: JSON .stringify (row .processVariables )
165
+ processVariablesStr: JSON .stringify (row .processVariablesStr )
166
166
})
167
167
168
168
if (! data ) {
@@ -224,7 +224,7 @@ const submitForm = async () => {
224
224
// 预测流程节点会因为输入的参数值而产生新的预测结果值,所以在提交时需重新预测一次
225
225
await getApprovalDetail ({
226
226
id: props .selectProcessDefinition .id ,
227
- processVariablesStr: JSON . stringify ( detailForm .value ?.value )
227
+ processVariablesStr: detailForm .value ?.value
228
228
})
229
229
// 恢复已选择的审批人信息
230
230
Object .keys (savedAssignees ).forEach ((id ) => {
You can’t perform that action at this time.
0 commit comments