|
@@ -54,6 +54,8 @@
|
|
|
min-width="100"
|
|
|
/>
|
|
|
<el-table-column prop="handlingFee" label="平台手续费" min-width="100" />
|
|
|
+ <el-table-column prop="packingFee" label="打包费" min-width="100" />
|
|
|
+ <el-table-column prop="freightFee" label="骑手配送费" min-width="100" />
|
|
|
<el-table-column prop="orderReceivable" label="订单应收金额" min-width="100" />
|
|
|
<el-table-column prop="payNum" label="订单应收笔数" min-width="100" />
|
|
|
<el-table-column prop="orderRefundable" label="订单应退金额" min-width="120" />
|
|
@@ -209,8 +211,34 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-card>
|
|
|
+ <el-card
|
|
|
+ shadow="never"
|
|
|
+ :bordered="false"
|
|
|
+ body-style="background-color: #F9F9F9;padding: 20px 15px;"
|
|
|
+ class="mb10"
|
|
|
+ >
|
|
|
+ <div slot="header" class="acea-row row-between-wrapper">
|
|
|
+ <span>打包费</span>
|
|
|
+ <div class="card_title">
|
|
|
+ {{ accountDetails.packingFee >= 0 ? '' : '-' }}
|
|
|
+ ¥{{ Math.abs(accountDetails.packingFee) }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-row class="item mb20">
|
|
|
+ <el-col :span="13" class="name">支付打包费</el-col>
|
|
|
+ <el-col :span="11" class="cost">
|
|
|
+ <span class="cost_price">¥{{ accountDetails.packingFee }}</span>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <!-- <el-row class="item">
|
|
|
+ <el-col :span="13" class="name">退还打包费</el-col>
|
|
|
+ <el-col :span="11" class="cost">
|
|
|
+ <span class="cost_price">-¥{{ accountDetails.packingFee }}</span>
|
|
|
+ </el-col>
|
|
|
+ </el-row> -->
|
|
|
+ </el-card>
|
|
|
<el-card shadow="never" :bordered="false" body-style="background-color: #F9F9F9;padding: 20px 15px;">
|
|
|
- <div slot="header" class="acea-row row-between-wrapper">
|
|
|
+ <!-- <div slot="header" class="acea-row row-between-wrapper">
|
|
|
<span>佣金</span>
|
|
|
<div class="card_title">
|
|
|
{{ accountDetails.brokerage >= 0 ? '' : '-' }}
|
|
@@ -228,7 +256,26 @@
|
|
|
<el-col :span="11" class="cost">
|
|
|
<span class="cost_price">-¥{{ accountDetails.refundBrokeragePrice }}</span>
|
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
+ </el-row> -->
|
|
|
+ <div slot="header" class="acea-row row-between-wrapper">
|
|
|
+ <span>骑手配送费</span>
|
|
|
+ <div class="card_title">
|
|
|
+ {{ accountDetails.freightFee >= 0 ? '' : '-' }}
|
|
|
+ ¥{{ Math.abs(accountDetails.freightFee) }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-row class="item mb20">
|
|
|
+ <el-col :span="13" class="name">支付配送费</el-col>
|
|
|
+ <el-col :span="11" class="cost">
|
|
|
+ <span class="cost_price">¥{{ accountDetails.freightFee }}</span>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <!-- <el-row class="item">
|
|
|
+ <el-col :span="13" class="name">退还佣金</el-col>
|
|
|
+ <el-col :span="11" class="cost">
|
|
|
+ <span class="cost_price">-¥{{ accountDetails.refundBrokeragePrice }}</span>
|
|
|
+ </el-col>
|
|
|
+ </el-row> -->
|
|
|
</el-card>
|
|
|
</div>
|
|
|
</div>
|