|
@@ -475,19 +475,19 @@ export default {
|
|
align: 'center',
|
|
align: 'center',
|
|
filters: [
|
|
filters: [
|
|
{
|
|
{
|
|
- label: '已邀请',
|
|
|
|
|
|
+ label: this.$t('activity.invited'),
|
|
value: 1
|
|
value: 1
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- label: '已报名',
|
|
|
|
|
|
+ label: this.$t('activity.registered'),
|
|
value: 2
|
|
value: 2
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- label: '未报名',
|
|
|
|
|
|
+ label: this.$t('activity.notSign'),
|
|
value: 3
|
|
value: 3
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- label: '未分配',
|
|
|
|
|
|
+ label: this.$t('activity.unassigned'),
|
|
value: 4
|
|
value: 4
|
|
},
|
|
},
|
|
],
|
|
],
|
|
@@ -536,13 +536,13 @@ export default {
|
|
// width: 100,
|
|
// width: 100,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- title: '已评审/已分配',
|
|
|
|
|
|
+ title: `${this.$t('activity.reviewed')}/${this.$t('learnActivity.mark.assigned')}`,
|
|
slot: 'reviewNum',
|
|
slot: 'reviewNum',
|
|
align: 'center'
|
|
align: 'center'
|
|
// width: 100,
|
|
// width: 100,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- title: '评审分数',
|
|
|
|
|
|
+ title: this.$t('activity.reviewScore'),
|
|
key: 'uploadContestScore',
|
|
key: 'uploadContestScore',
|
|
slot: 'uploadContestScore',
|
|
slot: 'uploadContestScore',
|
|
align: 'center',
|
|
align: 'center',
|
|
@@ -1138,7 +1138,7 @@ export default {
|
|
/* 导出表格 */
|
|
/* 导出表格 */
|
|
exportTable() {
|
|
exportTable() {
|
|
const params = {
|
|
const params = {
|
|
- title: [this.$t('assessment.header1'), this.$t('cusMgt.tmIDType'), this.$t('answerSheet.dp.school'), this.$t('activity.timeList.enroll'), this.$t('jyzx.common.loadTime'), this.$t('learnActivity.mark.assigned'), this.$t('activity.reviewed'), '评审分数'],
|
|
|
|
|
|
+ title: [this.$t('assessment.header1'), this.$t('cusMgt.tmIDType'), this.$t('answerSheet.dp.school'), this.$t('activity.timeList.enroll'), this.$t('jyzx.common.loadTime'), this.$t('learnActivity.mark.assigned'), this.$t('activity.reviewed'), this.$t('activity.reviewScore')],
|
|
key: ['name', 'id', 'schoolName', 'joinTime', 'uploadTime', 'reviewNum', 'scoreNum', 'uploadContestScore'],
|
|
key: ['name', 'id', 'schoolName', 'joinTime', 'uploadTime', 'reviewNum', 'scoreNum', 'uploadContestScore'],
|
|
data: this.applicationList.map(i => {
|
|
data: this.applicationList.map(i => {
|
|
return {
|
|
return {
|
|
@@ -1155,7 +1155,7 @@ export default {
|
|
}
|
|
}
|
|
}),
|
|
}),
|
|
autoWidth: true,
|
|
autoWidth: true,
|
|
- filename: `【${this.actInfo.name}】报名表`
|
|
|
|
|
|
+ filename: `【${this.actInfo.name}】${this.$t('activity.regForm')}`
|
|
}
|
|
}
|
|
this.$tools.exportTable(params)
|
|
this.$tools.exportTable(params)
|
|
},
|
|
},
|