收货人信息
管理收货人地址
@@ -89,7 +89,7 @@
-
+
配送方式
@@ -227,7 +227,7 @@
}} {{ selectedAddress.mobile }}
- 自提地点:{{selectedStoreAddress.address}} 联系方式:{{ selectedStoreAddress.mobile }}
+ 自提地点:{{selectedStoreAddress.address}} 联系方式:{{ selectedStoreAddress.mobile }}
@@ -266,6 +266,7 @@ export default {
invoiceAvailable: false, // 发票编辑按钮
showEditBtn: "", // 鼠标移入显示编辑按钮
orderMark: "", // 订单备注
+ goodsType: "", // 商品类型
storeMoreAddr: false,
invoiceData: {
// 发票数据
@@ -390,6 +391,9 @@ export default {
this.goodsList = res.result.cartList;
this.priceDetailDTO = res.result.priceDetailDTO;
this.skuList = res.result.skuList;
+ if (res.result.skuList[0] && res.result.skuList[0].goodsSku) {
+ this.goodsType = res.result.skuList[0].goodsSku.goodsType;
+ }
this.storeId = this.goodsList[0].storeId
if (res.result.receiptVO) {
this.invoiceData = res.result.receiptVO;
diff --git a/seller/src/views/shop/bill/billDetail.vue b/seller/src/views/shop/bill/billDetail.vue
index 9b92d307..bf439b8f 100644
--- a/seller/src/views/shop/bill/billDetail.vue
+++ b/seller/src/views/shop/bill/billDetail.vue
@@ -325,7 +325,7 @@ export default {
return h("div", this.$options.filters.unitPrice(params.row.billPrice, "¥")
);
}else{
- return h("priceColorScheme", {props: {value: (0-params.row.finalPrice), color: this.$mainColor}});
+ return h("priceColorScheme", {props: {value: (0-params.row.billPrice), color: this.$mainColor}});
}
},
},
@@ -337,7 +337,7 @@ export default {
align: 'center',
children: [{
title: "补贴",
- key: "billPrice",
+ key: "subsidy",
render: (h, params) => {
if (params.row.pointSettlementPrice == 0) {
return h("div", "-");
@@ -351,25 +351,25 @@ export default {
},
{
title: "用户实付",
- key: "billPrice",
- render: (h, params) => {
- if(params.row.flowType == "PAY"){
- return h("div", this.$options.filters.unitPrice(params.row.siteCouponCommission, "¥")
- );
- }else{
- return h("priceColorScheme", {props: {value: (0-params.row.siteCouponCommission)}});
- }
- },
- },
- {
- title: "合计",
- key: "billPrice",
+ key: "finalPrice",
render: (h, params) => {
if(params.row.flowType == "PAY"){
return h("div", this.$options.filters.unitPrice(params.row.finalPrice, "¥")
);
}else{
- return h("priceColorScheme", {props: {value: (0-params.row.billPrice)}});
+ return h("priceColorScheme", {props: {value: (0-params.row.finalPrice)}});
+ }
+ },
+ },
+ {
+ title: "合计",
+ key: "total",
+ render: (h, params) => {
+ if(params.row.flowType == "PAY"){
+ return h("div", this.$options.filters.unitPrice((params.row.finalPrice+(params.row.pointSettlementPrice+params.row.kanjiaSettlementPrice+params.row.siteCouponCommission)), "¥")
+ );
+ }else{
+ return h("priceColorScheme", {props: {value: (0-(params.row.finalPrice+(params.row.pointSettlementPrice+params.row.kanjiaSettlementPrice+params.row.siteCouponCommission)))}});
}
},
},
@@ -381,7 +381,7 @@ export default {
align: 'center',
children: [{
title: "平台服务费",
- key: "billPrice",
+ key: "commissionPrice",
render: (h, params) => {
if (params.row.commissionPrice == 0) {
return h("div", "-");
@@ -405,18 +405,6 @@ export default {
}else{
return h("priceColorScheme", {props: {value: (0-params.row.distributionRebate)}});
}
-
- // if (params.row.distributionRebate == null) {
- // return h("div", "-");
- // } else {
- // return h(
- // "div",
- // this.$options.filters.unitPrice(
- // params.row.distributionRebate,
- // "¥"
- // )
- // );
- // }
},
},
{