fix: 移除项目列表中的参赛人数限制列

- 从competition/index.vue移除参赛人数限制列
- 从competition/create.vue移除参赛人数限制列
- 该功能已不再使用

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
DevOps
2026-01-06 10:59:51 +08:00
parent 8656aa5abc
commit 586ad7e66e
2 changed files with 0 additions and 34 deletions

View File

@@ -361,23 +361,6 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="参赛人数限制"
width="130"
align="center"
>
<template #default="scope">
<el-input-number
v-if="mode !== 'view'"
v-model="scope.row.maxParticipants"
:min="1"
:max="9999"
size="small"
style="width: 100%"
/>
<span v-else>{{ scope.row.maxParticipants || '不限' }}</span>
</template>
</el-table-column>
<el-table-column <el-table-column
label="项目说明" label="项目说明"

View File

@@ -709,23 +709,6 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="参赛人数限制"
width="130"
align="center"
>
<template #default="scope">
<el-input-number
v-if="currentView !== 'view'"
v-model="scope.row.maxParticipants"
:min="1"
:max="9999"
size="small"
style="width: 100%"
/>
<span v-else>{{ scope.row.maxParticipants || '不限' }}</span>
</template>
</el-table-column>
<el-table-column <el-table-column
label="报名费用(元)" label="报名费用(元)"