10.10综合交易所原始源码_移动端
1
admin
2026-02-10 c547081aa61be5c7b6d4c12853c675954c2156eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<template>
  <div class="relative z-30 footer">
    <van-tabbar route v-model="active" active-color="#92D1FF" @change="changeIndex" fixed safe-area-inset-bottom>
      <!-- <van-tabbar-item name="optional" to="/optional">
        <span :class="[active === 'optional' ? 'active' : '']">{{ $t("Optional") }}</span>
        <template #icon="props">
          <img :src="active == 'optional' ? icon.optional.active : icon.optional.inactive" alt="optional" />
        </template>
      </van-tabbar-item> -->
      <van-tabbar-item name="quotes" to="/quotes/index?tabActive=1">
        <span :class="[active === 'quotes' ? 'active' : '']">{{ $t("首页") }}</span>
        <template #icon>
          <img :src="active == 'quotes' ? icon.quotes.active : icon.quotes.inactive" alt="quotes" />
        </template>
      </van-tabbar-item>
      <van-tabbar-item name="trade" to="/trade">
        <span :class="[active === 'trade' ? 'active' : '']">{{ $t("trade") }}</span>
        <template #icon>
          <img :src="active == 'trade' ? icon.trade.active : icon.trade.inactive" alt="trade" />
        </template>
      </van-tabbar-item>
      <!-- <van-tabbar-item name="funds" to="/funds"> -->
      <!-- <span :class="[active === 'funds' ? 'active' : '']">{{ $t('资金') }}</span> -->
      <!-- <template #icon="props"> -->
      <!-- <img :src="props.active ? icon.funds.active : icon.funds.inactive" alt="funds" /> -->
      <!-- </template> -->
      <!-- </van-tabbar-item> -->
      <!-- <van-tabbar-item name="news" to="/news">
        <span :class="[active === 'news' ? 'active' : '']">{{ $t("news") }}</span>
        <template #icon>
          <img :src="active == 'news' ? icon.news.active : icon.news.inactive" alt="news" />
        </template>
      </van-tabbar-item> -->
      <!-- <van-tabbar-item name="trade" to="/exchange">
        <span>{{ $t('trade') }}</span>
        <template #icon="props">
          <img :src="props.active ? icon.trade.active : icon.trade.inactive"  alt="exchange"/>
        </template>
      </van-tabbar-item> -->
 
      <van-tabbar-item name="personal" to="/personal">
        <span :class="[active === 'personal' ? 'active' : '']">{{ $t('资产') }}</span>
        <template #icon="props">
          <img :src="props.active ? icon.personal.active : icon.personal.inactive" alt="personal" />
        </template>
      </van-tabbar-item>
 
      <van-tabbar-item name="mine" to="/my">
        <span :class="[active === 'mine' ? 'active' : '']">{{ $t("my") }}</span>
        <template #icon>
          <img :src="active == 'mine' ? icon.mine.active : icon.mine.inactive" alt="mine" />
        </template>
      </van-tabbar-item>
    </van-tabbar>
  </div>
</template>
 
<script setup>
import { ref } from "vue";
import { useQuotesStore } from "@/store/quotes.store.js";
import { useI18n } from "vue-i18n";
import { useRoute } from "vue-router";
import { watch } from "vue";
import { themeStore } from "@/store/theme";
const thStore = themeStore();
const { t } = useI18n();
const active = ref("home");
const route = useRoute();
if (route.path == "/trade/index") {
  active.value = "trade";
} else if (route.path.indexOf("/quotes") != -1) {
  active.value = "quotes";
} else if (route.path == "/news/index") {
  active.value = "news";
} else if (route.path == "/my/index") {
  active.value = "mine";
} else if (route.path == "/optional/index") {
  active.value = "optional";
} else if (route.path == "/funds/index") {
  active.value = "funds";
}
let quotesStore = useQuotesStore();
 
watch(
  () => route.path,
  (nv) => {
    if (route.path == "/trade/index") {
      active.value = "trade";
    } else if (route.path.indexOf("/quotes") != -1) {
      active.value = "quotes";
    } else if (route.path == "/news/index") {
      active.value = "news";
    } else if (route.path == "/my/index") {
      active.value = "mine";
    } else if (route.path == "/optional/index") {
      active.value = "optional";
    } else if (route.path == "/funds/index") {
      active.value = "funds";
    }
  }
);
// 底部列表
const icon = {
  optional: {
    active: new URL(
      "@/assets/theme/dark/image/footer/optional-active.png",
      import.meta.url
    ),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/optional.png`,
      import.meta.url
    ),
  },
  quotes: {
    active: new URL(
      "@/assets/theme/dark/image/footer/quotes-active.png",
      import.meta.url
    ),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/quotes.png`,
      import.meta.url
    ),
  },
  news: {
    active: new URL("@/assets/theme/dark/image/footer/news-active.png", import.meta.url),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/news.png`,
      import.meta.url
    ),
  },
  trade: {
    active: new URL("@/assets/theme/dark/image/footer/trade-active.png", import.meta.url),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/trade.png`,
      import.meta.url
    ),
  },
  funds: {
    active: new URL('@/assets/theme/dark/image/footer/funds-active.png', import.meta.url),
    inactive: new URL(`../../assets/theme/${thStore.theme}/image/footer/funds.png`, import.meta.url),
  },
  mine: {
    active: new URL("@/assets/theme/dark/image/footer/menu-active.png", import.meta.url),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/menu.png`,
      import.meta.url
    ),
  },
  personal: {
    active: new URL("@/assets/theme/dark/image/footer/funds-active.png", import.meta.url),
    inactive: new URL(
      `../../assets/theme/${thStore.theme}/image/footer/funds.png`,
      import.meta.url
    ),
  },
};
const changeIndex = (index) => {
  // console.log(index)
};
</script>
 
<style lang="scss" scoped>
:deep(.van-tabbar-item__text) {
  font-size: 12px;
  color: $footer_color !important;
}
 
:deep(.van-tabbar-item--active) {
  background-color: $footer_bg;
  color: $color_main !important;
}
 
.van-tabbar--fixed {
  z-index: 10;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: $footer_bg;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(118, 128, 143, 0.1);
  backdrop-filter: blur(10px);
}
 
.van-hairline--top-bottom::after {
  border: none;
}
 
.blue {
  color: $blue !important;
}
 
.active {
  color: $active_line !important;
}
 
.footer {
  img {
    width: 20px;
    height: 20px;
  }
}
</style>