feat(GCG): 页面草创

This commit is contained in:
BTMuli
2023-03-22 15:11:49 +08:00
parent b024323ca0
commit 8c0f555674
5 changed files with 272 additions and 193 deletions

View File

@@ -32,6 +32,11 @@
<img src="../assets/icons/achievements.svg" alt="achievementsIcon" class="sideIcon" />
</template>
</v-list-item>
<v-list-item link href="/GCG" title="GCG">
<template v-slot:prepend>
<img src="../assets/icons/GCG.svg" alt="gcgIcon" class="sideIcon" />
</template>
</v-list-item>
<v-list-item link href="/config" title="设置">
<template v-slot:prepend>
<img src="../assets/icons/setting.svg" alt="setting" class="sideIcon" />

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,8 @@ export const MysPostApi = "https://bbs-api.mihoyo.com/post/wapi/getPostFull?gids
export const MysGachaInfo =
"https://api-takumi.mihoyo.com/common/blackboard/ys_obc/v1/gacha_pool?app_sn=ys_obc";
export const MysContent = "https://api-static.mihoyo.com/common/blackboard/ys_obc/v1/content/info?app_sn=ys_obc&content_id="
export const MysContent =
"https://bbs.mihoyo.com/ys/obc/content/content_id/detail?bbs_presentation_style=no_header";
/**
* @description 获取 News 的返回类型

67
src/pages/GCG.vue Normal file
View File

@@ -0,0 +1,67 @@
<template>
<!-- todo 顶部筛选栏 -->
<div v-if="loading" class="loading-bar">
<v-progress-circular indeterminate color="primary" />
</div>
<div v-else class="cards-grid">
<v-card v-for="item in CardsInfo" :key="item.id" width="280" height="480">
<!-- 外部卡牌边框 -->
<v-img src="/source/GCG/base/bg-special.webp" class="GCG-cover"></v-img>
<v-img :src="item.icon" class="GCG-cover" style="z-index: -1"></v-img>
<!-- todo 样式优化 -->
<v-card-actions class="GCG-content">
<v-card-title>{{ item.name }}</v-card-title>
<v-btn @click="toOuter(item)" prepend-icon="mdi-arrow-right-circle" class="ms-2 card-btn"
>查看</v-btn
>
</v-card-actions>
</v-card>
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted } from "vue";
import { createTGWindow } from "../utils/TGWindow";
import { ReadAllTGData } from "../utils/TGIndex";
import { BaseCard } from "../interface/GCG";
import { MysContent } from "../interface/MysPost";
const loading = ref(true);
const CardsInfo = ref([] as BaseCard[]);
onMounted(async () => {
await loadData();
});
async function loadData() {
CardsInfo.value = await ReadAllTGData("GCG");
loading.value = false;
}
function toOuter(card: BaseCard) {
const url = MysContent.replace("content_id", card.id.toString());
createTGWindow(url, "GCG", card.name, 1600, 900, true);
}
</script>
<style lang="css">
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
grid-gap: 1rem;
padding: 1rem;
}
.GCG-cover {
position: absolute;
top: 0;
left: 0;
width: 280px;
height: 480px;
}
.GCG-content {
position: absolute;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f4d8a8;
width: 100%;
border-radius: 0 0 10px 10px;
}
</style>

View File

@@ -1,4 +1,5 @@
// 信息展示
import GCG from "../pages/GCG.vue";
import Home from "../pages/Home.vue";
import News from "../pages/News.vue";
// 数据交互
@@ -12,25 +13,30 @@ const routes = [
name: "首页",
component: Home,
},
{
path: "/home",
redirect: "/",
},
{
path: "/achievements",
name: "成就",
component: Achievements,
},
{
path: "/news",
name: "咨讯",
component: News,
},
{
path: "/config",
name: "设置",
component: Config,
},
{
path: "/GCG",
name: "卡牌",
component: GCG,
},
{
path: "/home",
redirect: "/",
},
{
path: "/news",
name: "咨讯",
component: News,
},
];
export default routes;