Authored by lea guo

确认信息

... ... @@ -175,7 +175,7 @@ export default {
});
this.$createDialog({
type: "confirm",
content: "确定取消订单?",
content: confirmInfo.confirmInfo,
confirmBtn: { text: "取消订单" },
cancelBtn: { text: "保留订单" },
onConfirm: async () => {
... ... @@ -204,7 +204,7 @@ export default {
// footer高度120px
padding: 0 40px;
-webkit-box-orient: vertical;
height: calc(100vh - 90px);
height: calc(100vh - 210px);
overflow-x: hidden;
overflow-y: auto;
font-size: 24px;
... ...
... ... @@ -33,7 +33,7 @@
<p class="delivery-fee">
<span class="label"
>银行转账费({{
parseInt(platformFee.payChannelPercentage)
parseInt(platformFee.payChannelPercentage || 0)
}}%):</span
>
<span>{{ orderDetail.bankTransferFee }}</span>
... ... @@ -185,6 +185,7 @@ export default {
});
this.$createDialog({
type: "confirm",
content: confirmInfo.confirmInfo,
confirmBtn: { text: "不卖了" },
cancelBtn: { text: "继续出售" },
onConfirm: async () => {
... ... @@ -213,7 +214,7 @@ export default {
// footer高度120px
padding: 0 40px;
-webkit-box-orient: vertical;
height: calc(100vh - 90px);
height: calc(100vh - 210px);
overflow-x: hidden;
overflow-y: auto;
font-size: 24px;
... ...
... ... @@ -127,6 +127,7 @@ export default {
});
this.$createDialog({
type: "confirm",
content: confirmInfo.confirmInfo,
confirmBtn: { text: "不卖了" },
cancelBtn: { text: "继续出售" },
onConfirm: async () => {
... ...
... ... @@ -148,7 +148,7 @@ export default {
});
this.$createDialog({
type: "confirm",
content: "确定取消订单?",
content: confirmInfo.confirmInfo,
confirmBtn: { text: "取消订单" },
cancelBtn: { text: "保留订单" },
onConfirm: async () => {
... ...