From 9a9d832dbd364557e070abcd9a7779a2c6c07ffb Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Tue, 20 Jan 2026 17:35:13 +0800
Subject: [PATCH] 1
---
src/views/C2C/c2cOrder/payment/PaymentBuy.vue | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/src/views/C2C/c2cOrder/payment/PaymentBuy.vue b/src/views/C2C/c2cOrder/payment/PaymentBuy.vue
index b4c5173..fc11655 100644
--- a/src/views/C2C/c2cOrder/payment/PaymentBuy.vue
+++ b/src/views/C2C/c2cOrder/payment/PaymentBuy.vue
@@ -21,7 +21,7 @@
<div class="flex justify-center items-end mt-42 font-64 font-700">
<div class="flex justify-center">
<span class="font-48">
- {{currencySymbol}}
+ {{ currencySymbol }}
</span>
<span class="px-10">{{
(orderInfo.amount && (orderInfo.amount / 1).toFixed(2)) || "--"
@@ -105,7 +105,8 @@
</div>
<div class="mt-92 px-40 flex font-30">
<van-button class="w-244 h-80 mr-16 rounded-2xl text-black bg-grey border-none" type="primary"
- @click="show = true">{{ $t("遇到问题?") }}</van-button>
+ @click="show = true">{{
+ $t("遇到问题?") }}</van-button>
<van-button class="flex-1 h-80 rounded-2xl btnMain text-white border-none" type="primary" @click="onPayed">
{{ $t("我已付款,通知卖家") }}</van-button>
</div>
@@ -178,7 +179,6 @@
onPayed() {
// 我已支付
this.$router.push("/withdraw/securityVerification?type=buy");
- // this.$router.push("/cryptos/withdraw/securityVerification?type=buy");
},
async copy(text) {
await toClipboard(text);
@@ -217,8 +217,11 @@
.van-cell {
margin-top: 28px;
- color: $text_color1;
- background: $tab_background;
+
+ @include themify() {
+ background: themed("tab_background");
+ color: themed("text_color1");
+ }
.van-cell__title,
.van-cell__value {
@@ -231,8 +234,10 @@
}
.van-cell-group {
- color: $text_color1;
- background: $tab_background;
+ @include themify() {
+ background: themed("tab_background");
+ color: themed("text_color1");
+ }
}
}
}
--
Gitblit v1.9.3