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 @@ -167,7 +167,7 @@ watch(
167
167
// 加载最新的审批详情
168
168
getApprovalDetail ({
169
169
id: props .selectProcessDefinition .id ,
170
- processVariablesStr: newValue .value // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
170
+ processVariablesStr: JSON . stringify ( newValue .value ) // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
171
171
})
172
172
}
173
173
},
@@ -183,7 +183,7 @@ const getApprovalDetail = async (row: any) => {
183
183
const data = await ProcessInstanceApi .getApprovalDetail ({
184
184
processDefinitionId: row .id ,
185
185
activityId: NodeId .START_USER_NODE_ID ,
186
- processVariablesStr: JSON . stringify ( row .processVariablesStr ) // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
186
+ processVariablesStr: row .processVariablesStr // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
187
187
})
188
188
189
189
if (! data ) {
You can’t perform that action at this time.
0 commit comments