|
|
@@ -19,10 +19,11 @@ import { Tabbar } from '@mobile/components/base/tabbar/types'
|
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
|
import { useMarketSection } from '@/business/market'
|
|
|
import { useLoginStore, useFuturesStore } from '@/stores'
|
|
|
+import { i18n } from '@/stores'
|
|
|
+import { displayname } from "@/filters"
|
|
|
import AppTabbar from '@mobile/components/base/tabbar/index.vue'
|
|
|
import AppUpdater from '@mobile/components/base/updater/index.vue'
|
|
|
import RouterTransition from '@mobile/components/base/router-transition/index.vue'
|
|
|
-import { i18n } from '@/stores'
|
|
|
|
|
|
const { global: { t } } = i18n
|
|
|
|
|
|
@@ -59,7 +60,7 @@ const { allMarket } = useMarketSection(() => {
|
|
|
const addTab = (item: Model.Marketsectionconfignew) => {
|
|
|
const tab: Tabbar = {
|
|
|
name: 'home-404',
|
|
|
- label: item.displayname,
|
|
|
+ label: displayname(item),
|
|
|
icon: 'g-icon-listing--line',
|
|
|
activeIcon: 'g-icon-listing--fill',
|
|
|
params: item
|