|
@@ -97,7 +97,7 @@
|
|
|
<!-- 已完成(1):显示反馈和先进个人申报 -->
|
|
<!-- 已完成(1):显示反馈和先进个人申报 -->
|
|
|
<template v-else-if="Number(scope.row.status) === 1">
|
|
<template v-else-if="Number(scope.row.status) === 1">
|
|
|
<!-- <ActionButton text="反馈" @click="handleFeedback(scope.row.id)" /> -->
|
|
<!-- <ActionButton text="反馈" @click="handleFeedback(scope.row.id)" /> -->
|
|
|
- <ActionButton text="先进个人申报" @click="handleAdvancedPerson(scope.row.id)" />
|
|
|
|
|
|
|
+ <ActionButton text="先进个人申报" @click="handleAdvancedPerson(scope.row)" />
|
|
|
</template>
|
|
</template>
|
|
|
<!-- 已作废(5):显示反馈 -->
|
|
<!-- 已作废(5):显示反馈 -->
|
|
|
<template v-else-if="Number(scope.row.status) === 5">
|
|
<template v-else-if="Number(scope.row.status) === 5">
|
|
@@ -201,6 +201,7 @@
|
|
|
deptName: item.deptName,
|
|
deptName: item.deptName,
|
|
|
scores: item.scores,
|
|
scores: item.scores,
|
|
|
scoreRank: item.scoreRank,
|
|
scoreRank: item.scoreRank,
|
|
|
|
|
+ isAdvancedGroup: item.isAdvancedGroup,
|
|
|
}));
|
|
}));
|
|
|
pagination.total = res.totalRow;
|
|
pagination.total = res.totalRow;
|
|
|
}
|
|
}
|
|
@@ -244,12 +245,13 @@
|
|
|
});
|
|
});
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
- const handleAdvancedPerson = (id: number) => {
|
|
|
|
|
|
|
+ const handleAdvancedPerson = (row: any) => {
|
|
|
router.push({
|
|
router.push({
|
|
|
name: 'EvaluationDepartmentItem',
|
|
name: 'EvaluationDepartmentItem',
|
|
|
query: {
|
|
query: {
|
|
|
- id,
|
|
|
|
|
|
|
+ id: row.id,
|
|
|
operate: 'evaluationDepartment-advanced-person',
|
|
operate: 'evaluationDepartment-advanced-person',
|
|
|
|
|
+ isAdvancedGroup: row.isAdvancedGroup,
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|
|
|
};
|
|
};
|