File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/views/bpm/processInstance/report Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 106
106
>
107
107
<!-- TODO 可以根据formField的type进行展示方式的控制,现在全部以字符串 -->
108
108
<template #default =" scope " >
109
- {{ scope.row.variables.find(variable => variable.key === item.field)?.value }}
109
+ {{ scope.row.variables.find(( variable) => variable.key === item.field)?.value }}
110
110
</template >
111
111
</el-table-column >
112
112
</el-table >
@@ -157,6 +157,7 @@ const getList = async () => {
157
157
const data = await ProcessInstanceApi .getProcessInstanceReportPage (queryParams )
158
158
list .value = data .pageResult .list
159
159
total .value = data .pageResult .total
160
+ // TODO @lesan:不确定,能不能通过 processDefinitionId 获取流程定义哈,从而拿到 formFields;
160
161
formFieldsList .value = data .formFields
161
162
} finally {
162
163
loading .value = false
You can’t perform that action at this time.
0 commit comments