...
|
...
|
@@ -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;
|
...
|
...
|
|