|
@@ -113,6 +113,23 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
+ <el-table-column label="代理人数" align="center" min-width="90px">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>
|
|
|
+ <span v-if="scope.row.agentProfessionalSlots">
|
|
|
+ 学硕/{{ scope.row.agentProfessionalSlots }}
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.agentAcademicSlots">
|
|
|
+ 专硕/{{ scope.row.agentAcademicSlots }}
|
|
|
+ </span>
|
|
|
+ <span v-if="!scope.row.agentAcademicSlots && !scope.row.agentProfessionalSlots">
|
|
|
+ 暂无
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column label="剩余名额" align="center" min-width="100px">
|
|
|
<template #default="scope">
|
|
|
学硕/{{ scope.row.academicSlots - scope.row.occupiedAcademicSlots }} 专硕/{{ scope.row.professionalSlots - scope.row.occupiedProfessionalSlots }}
|
|
@@ -316,6 +333,8 @@ const queryParams = reactive({
|
|
|
professionalSlots: undefined,
|
|
|
supervisorName:undefined,
|
|
|
userType:undefined,
|
|
|
+ agentProfessionalSlots : undefined,
|
|
|
+ agentAcademicSlots: undefined,
|
|
|
createTime: [],
|
|
|
})
|
|
|
const queryFormRef = ref() // 搜索的表单
|