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/components/normal-head/index.vue | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/components/normal-head/index.vue b/src/components/normal-head/index.vue
index aa251ac..61547cb 100644
--- a/src/components/normal-head/index.vue
+++ b/src/components/normal-head/index.vue
@@ -1,10 +1,6 @@
<template>
<div id="normalHead">
- <van-nav-bar
- :border="false"
- :title="title"
- left-arrow
- @click-left="onClickLeft">
+ <van-nav-bar :border="false" :title="title" left-arrow @click-left="onClickLeft">
<template #right>
<slot></slot>
</template>
@@ -22,7 +18,7 @@
this.$router.push('/');
} else if (this.goAssetsCenter) {
this.$router.push('/assetsCenter/assets');
- }else if (this.goPerpetualContract){
+ } else if (this.goPerpetualContract) {
this.$router.go(-2);
} else if (this.backFunc) {
this.backFunc()
@@ -35,7 +31,9 @@
</script>
<style lang="scss" scoped>
-::v-deep .van-nav-bar__title{
- color: #333;
+::v-deep .van-nav-bar__title {
+ @include themify() {
+ color: themed("textColor");
+ }
}
</style>
--
Gitblit v1.9.3