分组教学任务查不到数据bug修复

This commit is contained in:
2026-08-25 16:52:02 +08:00
parent 99ae7a7947
commit c98cd0aaca
@@ -65,7 +65,7 @@
<el-table-column prop="nd" label="年度" width="150" align="center" /> <el-table-column prop="nd" label="年度" width="150" align="center" />
<el-table-column label="状态" width="100" align="center"> <el-table-column label="状态" width="100" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<el-tag :type="row.zt === '发布' ? 'success' : 'info'" size="small"> <el-tag :type="row.zt === '已发布' ? 'success' : 'info'" size="small">
{{ row.zt || '-' }} {{ row.zt || '-' }}
</el-tag> </el-tag>
</template> </template>
@@ -142,7 +142,7 @@ export default {
yearOptions: [], yearOptions: [],
statusOptions: [ statusOptions: [
{ label: '未发布', value: '未发布' }, { label: '未发布', value: '未发布' },
{ label: '发布', value: '发布' } { label: '已发布', value: '已发布' }
], ],
// ==================== 2. 表格数据 ==================== // ==================== 2. 表格数据 ====================