Commit 10c2d96b by renyizhao

商品可永久

parent ad23c0e1
......@@ -122,7 +122,11 @@
<!-- <el-table-column label="主键ID" align="center" prop="id" />-->
<!-- <el-table-column label="关联的SPU ID" align="center" prop="spuId" />-->
<el-table-column label="关联的SPU" align="center" prop="spuName"/>
<el-table-column label="租赁天数" align="center" prop="durationDays" />
<el-table-column label="租赁天数" align="center" prop="durationDays">
<template #default="{ row }">
{{ row.durationDays === 0 ? '永久' : row.durationDays }}
</template>
</el-table-column>
<el-table-column label="支付价格" align="center" prop="paymentPrice">
<template #default="{ row }">
¥{{ fenToYuan(row.paymentPrice) }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment