This commit is contained in:
2025-12-26 13:15:26 +08:00
parent c12fb79444
commit 04cd85cbe3

View File

@@ -727,6 +727,26 @@
</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.price"
:min="0"
:precision="2"
:step="10"
size="small"
style="width: 100%"
placeholder="0.00"
/>
<span v-else style="color: #f56c6c">¥{{ scope.row.price || 0 }}</span>
</template>
</el-table-column>
<el-table-column <el-table-column
label="项目说明" label="项目说明"
min-width="200" min-width="200"
@@ -1645,6 +1665,7 @@ export default {
projectCode: '', projectCode: '',
category: '', category: '',
maxParticipants: null, maxParticipants: null,
price: 0,
description: '' description: ''
}); });
}, },