From c17311ba1351cd5e64654c3fc7b2fe765b1e7382 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Thu, 09 Oct 2025 11:53:12 +0800
Subject: [PATCH] 1
---
src/views/C2C/c2cOrder/payment/PaymentBuy.vue | 18 ++++++++++++------
1 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/src/views/C2C/c2cOrder/payment/PaymentBuy.vue b/src/views/C2C/c2cOrder/payment/PaymentBuy.vue
index bb18364..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>
@@ -216,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 {
@@ -230,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