🌱 祈愿数据表格

This commit is contained in:
目棃
2024-08-18 11:03:50 +08:00
parent 6aeecd2233
commit 170ac3b29d
2 changed files with 72 additions and 1 deletions

View File

@@ -27,6 +27,7 @@
<v-tabs v-model="tab" align-tabs="start" class="gacha-tab">
<v-tab value="echarts">图表概览</v-tab>
<v-tab value="overview">数据概览</v-tab>
<v-tab value="table">数据表格</v-tab>
<v-tab value="history">过往祈愿</v-tab>
</v-tabs>
<v-window v-model="tab" class="gacha-window">
@@ -36,6 +37,9 @@
<v-window-item value="overview" class="gacha-window-item">
<gro-overview v-model="gachaListCur" />
</v-window-item>
<v-window-item value="table" class="gacha-window-item">
<gro-table v-model="gachaListCur" />
</v-window-item>
<v-window-item value="history" class="gacha-window-item">
<gro-history />
</v-window-item>
@@ -53,6 +57,7 @@ import showSnackbar from "../../components/func/snackbar.js";
import GroEcharts from "../../components/gachaRecord/gro-echarts.vue";
import GroHistory from "../../components/gachaRecord/gro-history.vue";
import GroOverview from "../../components/gachaRecord/gro-overview.vue";
import GroTable from "../../components/gachaRecord/gro-table.vue";
import ToLoading from "../../components/overlay/to-loading.vue";
import { AppCharacterData, AppWeaponData } from "../../data/index.js";
import TSUserGacha from "../../plugins/Sqlite/modules/userGacha.js";