|
@@ -28,13 +28,17 @@ const { t } = useI18n();
|
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
|
const route = useRoute();
|
|
const route = useRoute();
|
|
|
|
|
|
|
|
-// 导入图标 - 暂时使用现有图标,后续替换为新图标
|
|
|
|
|
|
|
+// 导入图标
|
|
|
import tab1Active from "@/assets/images/tab/tab1_active.svg";
|
|
import tab1Active from "@/assets/images/tab/tab1_active.svg";
|
|
|
import tab1 from "@/assets/images/tab/tab1.svg";
|
|
import tab1 from "@/assets/images/tab/tab1.svg";
|
|
|
import tab2Active from "@/assets/images/tab/tab2_active.svg";
|
|
import tab2Active from "@/assets/images/tab/tab2_active.svg";
|
|
|
import tab2 from "@/assets/images/tab/tab2.svg";
|
|
import tab2 from "@/assets/images/tab/tab2.svg";
|
|
|
import tab3Active from "@/assets/images/tab/tab3_active.svg";
|
|
import tab3Active from "@/assets/images/tab/tab3_active.svg";
|
|
|
import tab3 from "@/assets/images/tab/tab3.svg";
|
|
import tab3 from "@/assets/images/tab/tab3.svg";
|
|
|
|
|
+import hallActive from "@/assets/images/tab/hall_active.svg";
|
|
|
|
|
+import hall from "@/assets/images/tab/hall.svg";
|
|
|
|
|
+import mineActive from "@/assets/images/tab/mine_active.svg";
|
|
|
|
|
+import mine from "@/assets/images/tab/mine.svg";
|
|
|
|
|
|
|
|
const menus = ref([
|
|
const menus = ref([
|
|
|
{
|
|
{
|
|
@@ -46,8 +50,8 @@ const menus = ref([
|
|
|
{
|
|
{
|
|
|
titleKey: "tab.hall",
|
|
titleKey: "tab.hall",
|
|
|
path: "/hall",
|
|
path: "/hall",
|
|
|
- icon: tab2Active,
|
|
|
|
|
- iconUn: tab2
|
|
|
|
|
|
|
+ icon: hallActive,
|
|
|
|
|
+ iconUn: hall
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
titleKey: "tab.gameShow",
|
|
titleKey: "tab.gameShow",
|
|
@@ -64,8 +68,8 @@ const menus = ref([
|
|
|
{
|
|
{
|
|
|
titleKey: "tab.mine",
|
|
titleKey: "tab.mine",
|
|
|
path: "/mine",
|
|
path: "/mine",
|
|
|
- icon: tab2Active,
|
|
|
|
|
- iconUn: tab2
|
|
|
|
|
|
|
+ icon: mineActive,
|
|
|
|
|
+ iconUn: mine
|
|
|
}
|
|
}
|
|
|
]);
|
|
]);
|
|
|
|
|
|