From 8f30b943a71beefad42c0cf8ac6f462b406dc9ab Mon Sep 17 00:00:00 2001 From: Kunagisa <1549184870@qq.com> Date: Wed, 25 Jun 2025 21:45:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=B0=E5=BD=A2=E5=9B=BE=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 5 + src/views/index.vue | 1 + src/views/index/TerrainList.vue | 378 ++++++++++++++++++++++++++++++++ 3 files changed, 384 insertions(+) create mode 100644 src/views/index/TerrainList.vue diff --git a/src/router/index.js b/src/router/index.js index 83439c8..0bdfab4 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -76,6 +76,11 @@ const routes = [ path: 'editors-maps', name: 'EditorsMaps', component: () => import('@/views/index/EditorsMaps.vue') + }, + { + path:'terrain', + name: 'Terrain', + component: () => import('@/views/index/TerrainList.vue') } ] }, diff --git a/src/views/index.vue b/src/views/index.vue index 4da7d35..b8db920 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -82,6 +82,7 @@ onUnmounted(() => { 最近上传地图 热门下载地图 活跃作者推荐 + 地形图列表 Weapon 匹配 赛程信息 办事大厅 diff --git a/src/views/index/TerrainList.vue b/src/views/index/TerrainList.vue new file mode 100644 index 0000000..c01a0b9 --- /dev/null +++ b/src/views/index/TerrainList.vue @@ -0,0 +1,378 @@ + + + + 地形图列表 + + 分类: + + + {{ category }} + + + + + + + + < 上一页 + + 第 {{ currentPage }} 页 / 共 {{ totalPages }} 页 + + 下一页 > + + + + 加载中... + + + 加载失败: {{ error }} + 重试 + + + + + + + + + {{ terrain.key }} + + + + + + + + + + + + 当前分类下没有可用的地形图数据 + + + + + + < 上一页 + + 第 {{ currentPage }} 页 / 共 {{ totalPages }} 页 + + 下一页 > + + + + + + + + + \ No newline at end of file