Commit 7bec5c44917f314e2fbe3673e776b864abd4bd3a
1 parent
1dddea96
debug event price
Showing
1 changed file
with
5 additions
and
1 deletions
src/views/event/handwork/index.vue
| ... | ... | @@ -260,7 +260,11 @@ onMounted(() => { |
| 260 | 260 | prop="unitPrice" |
| 261 | 261 | label="单价/元" |
| 262 | 262 | align="center" |
| 263 | - ></el-table-column> | |
| 263 | + > | |
| 264 | + <template #default="scope"> | |
| 265 | + {{(~~scope.row.unitPrice / 100).toFixed(2)}} | |
| 266 | + </template> | |
| 267 | + </el-table-column> | |
| 264 | 268 | <el-table-column |
| 265 | 269 | prop="location" |
| 266 | 270 | label="活动地址" | ... | ... |