Commit 72fceee5 by Jony.L

“我的订单”界面费用显示修复

parent 393b8d3e
...@@ -106,9 +106,9 @@ ...@@ -106,9 +106,9 @@
<el-table-column label="商品名称" align="center" prop="spuName"/> <el-table-column label="商品名称" align="center" prop="spuName"/>
<el-table-column label="订单编号" align="center" prop="orderNo"/> <el-table-column label="订单编号" align="center" prop="orderNo"/>
<!--<el-table-column label="商品数量" align="center" prop="productCount"/>--> <!--<el-table-column label="商品数量" align="center" prop="productCount"/>-->
<el-table-column label="费用" align="center" prop="payPrice"> <el-table-column label="费用" align="center" prop="paymentPrice">
<template #default="scope"> <template #default="scope">
{{ scope.row.payPrice / 100 }} {{ scope.row.paymentPrice / 100 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="资源类型" align="center" prop="categoryName"/> <el-table-column label="资源类型" align="center" prop="categoryName"/>
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
</div> </div>
<div class="info-item flex-align-center flex-space-between"> <div class="info-item flex-align-center flex-space-between">
<div class="label">费用</div> <div class="label">费用</div>
<div class="value">{{ form.payPrice ? (form.payPrice / 100) : '-' }}</div> <div class="value">{{ form.paymentPrice ? (form.paymentPrice / 100) : '-' }}</div>
</div> </div>
<div class="info-item flex-align-center flex-space-between"> <div class="info-item flex-align-center flex-space-between">
......
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