feat(parser): 写了个解析

This commit is contained in:
BTMuli
2023-04-02 16:34:53 +08:00
parent d3f7b4be13
commit 68c077326e
10 changed files with 214 additions and 31 deletions

View File

@@ -11,6 +11,7 @@ import TPostJson from "../../views/t-post-json.vue";
import TLottery from "../../views/t-lottery.vue";
// 游戏内公告
import TAnno from "../../views/t-anno.vue";
import TAnnoJson from "../../views/t-anno-json.vue";
const subRoutes = [
{
@@ -29,10 +30,15 @@ const subRoutes = [
component: TLottery,
},
{
path: "/anno/:anno_id",
path: "/anno_detail/:anno_id",
name: "游戏内公告",
component: TAnno,
},
{
path: "/anno_detail_json/:anno_id",
name: "游戏内公告JSON",
component: TAnnoJson,
},
];
export default subRoutes;