fix bugs
This commit is contained in:
@@ -727,6 +727,26 @@
|
||||
</template>
|
||||
</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
|
||||
label="项目说明"
|
||||
min-width="200"
|
||||
@@ -1645,6 +1665,7 @@ export default {
|
||||
projectCode: '',
|
||||
category: '',
|
||||
maxParticipants: null,
|
||||
price: 0,
|
||||
description: ''
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user