|
@@ -40,13 +40,13 @@
|
|
|
>修改收货人信息</el-button
|
|
|
>
|
|
|
<el-button size="mini">修改商品信息</el-button>
|
|
|
- <el-button size="mini" @click="showUpdateMoneyDialog"
|
|
|
+ <!-- <el-button size="mini" @click="showUpdateMoneyDialog"
|
|
|
>修改费用信息</el-button
|
|
|
- >
|
|
|
+ > -->
|
|
|
<!-- <el-button size="mini" @click="showMessageDialog">发送站内信</el-button> -->
|
|
|
- <el-button size="mini" @click="showCloseOrderDialog"
|
|
|
+ <!-- <el-button size="mini" @click="showCloseOrderDialog"
|
|
|
>关闭订单</el-button
|
|
|
- >
|
|
|
+ > -->
|
|
|
<el-button size="mini" @click="showMarkOrderDialog"
|
|
|
>备注订单</el-button
|
|
|
>
|
|
@@ -231,7 +231,7 @@
|
|
|
<el-col :span="6" class="table-cell-title">商品合计</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">运费</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">优惠券</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">积分抵扣</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">余额</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell"
|
|
@@ -249,16 +249,16 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell-title">活动优惠</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">折扣金额</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">订单总金额</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">应付款金额</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">订单总金额</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">现金金额</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell"
|
|
|
>-¥{{ order.promotionAmount }}</el-col
|
|
|
>
|
|
|
<el-col :span="6" class="table-cell"
|
|
|
- >-¥{{ order.discountAmount }}</el-col
|
|
|
+ >-¥{{ order.payAmount+ order.integrationAmount }}</el-col
|
|
|
>
|
|
|
<el-col :span="6" class="table-cell">
|
|
|
<span class="color-danger"
|
|
@@ -268,7 +268,7 @@
|
|
|
<el-col :span="6" class="table-cell">
|
|
|
<span class="color-danger"
|
|
|
>¥{{
|
|
|
- order.payAmount + order.freightAmount - order.discountAmount
|
|
|
+ order.payAmount
|
|
|
}}</span
|
|
|
>
|
|
|
</el-col>
|
|
@@ -373,7 +373,7 @@
|
|
|
<el-col :span="6" class="table-cell-title">商品合计</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">运费</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">优惠券</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">积分抵扣</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">余额</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell"
|
|
@@ -393,9 +393,9 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell-title">活动优惠</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">折扣金额</el-col>
|
|
|
- <el-col :span="6" class="table-cell-title">订单总金额</el-col>
|
|
|
<el-col :span="6" class="table-cell-title">应付款金额</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">订单总金额</el-col>
|
|
|
+ <el-col :span="6" class="table-cell-title">现金金额</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="6" class="table-cell"
|
|
@@ -561,7 +561,9 @@ export default {
|
|
|
return "支付宝";
|
|
|
} else if (value === 2) {
|
|
|
return "微信";
|
|
|
- } else {
|
|
|
+ } else if (value === 3) {
|
|
|
+ return "余额";
|
|
|
+ }else {
|
|
|
return "未支付";
|
|
|
}
|
|
|
},
|
|
@@ -706,6 +708,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
showUpdateMoneyDialog() {
|
|
|
+ return
|
|
|
this.moneyDialogVisible = true;
|
|
|
this.moneyInfo.orderId = this.order.id;
|
|
|
this.moneyInfo.freightAmount = this.order.freightAmount;
|