|
@@ -315,10 +315,12 @@ const rowTaskReviewClick = async ({ row }) => {
|
|
|
|
|
|
//获取PDF数据
|
|
|
const queryTaskInfo = async (row, taskids) => {
|
|
|
+ console.log(checkedRowsRef.value, 'checkedRowsRef.value')
|
|
|
+ const approvalTypeVal = arrToKey(checkedRowsRef.value, 'approvalType', ',')
|
|
|
try {
|
|
|
const { error, code, data } = await tasksApi.queryTaskInfo({
|
|
|
formDataId: taskids && taskids.length > 0 ? taskids : row['formDataId'],
|
|
|
- approvalType: row['approvalType'],
|
|
|
+ approvalType: approvalTypeVal,
|
|
|
})
|
|
|
|
|
|
if (!error && code === 200) {
|