|
|
@@ -3,7 +3,7 @@
|
|
|
<!-- 头部 -->
|
|
|
<div class="header">
|
|
|
<el-button class="back-btn" @click="goBack"> 返回 </el-button>
|
|
|
- <h2 class="title">今日可收益金额</h2>
|
|
|
+ <h2 class="title">今日收益</h2>
|
|
|
</div>
|
|
|
<div class="table-box">
|
|
|
<ProTable
|
|
|
@@ -32,7 +32,9 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="couponRow">
|
|
|
- <el-col :span="12"> 售价: ¥{{ formatNumber(unposted.orderPrice) }} </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ 售价: ¥{{ formatNumber((Number(unposted.money) + Number(unposted.commission)) / 100) }}
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
<h3 class="orderInfo">订单信息</h3>
|
|
|
<div>
|
|
|
@@ -104,7 +106,7 @@ const columns = reactive<ColumnProps<any>[]>([
|
|
|
prop: "price",
|
|
|
label: "售价",
|
|
|
render: scope => {
|
|
|
- return formatNumber(Number(scope.row.money) + Number(scope.row.commission) / 100);
|
|
|
+ return formatNumber((Number(scope.row.money) + Number(scope.row.commission)) / 100);
|
|
|
}
|
|
|
},
|
|
|
{
|