fix: 修改新增用户商品的配置项逻辑
Build and Deploy Vue3 / build (push) Successful in 4m9s
Build and Deploy Vue3 / deploy (push) Successful in 1m3s

This commit is contained in:
2026-04-06 18:44:11 +08:00
parent c07e09c151
commit f0e89695f4
36 changed files with 2078 additions and 190 deletions
+2 -2
View File
@@ -48,13 +48,13 @@
</el-table-column>
<el-table-column label="续费价" width="90">
<template #default="{ row }">
<span v-if="row.renewPrice">¥{{ (row.renewPrice).toFixed(2) }}</span>
<span v-if="row.renewPrice">¥{{ (row.renewPrice / 100).toFixed(2) }}</span>
<span v-else style="color:#c0c4cc">-</span>
</template>
</el-table-column>
<el-table-column label="基础价" width="90">
<template #default="{ row }">
<span v-if="row.basePrice">¥{{ (row.basePrice ).toFixed(2) }}</span>
<span v-if="row.basePrice">¥{{ (row.basePrice / 100).toFixed(2) }}</span>
<span v-else style="color:#c0c4cc">-</span>
</template>
</el-table-column>