Skip to content

Commit

Permalink
🌱 准倇 beta η‰ˆζœ¬ηš„θ§’θ‰²θ―¦ζƒ…ι‘΅ι’
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Nov 2, 2023
1 parent 4aa9319 commit a9912cf
Showing 1 changed file with 39 additions and 18 deletions.
57 changes: 39 additions & 18 deletions src/pages/common/Test.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div class="test-box">
<h1>ι’œθ‰²ζ΅‹θ―•</h1>
<div class="test-box">
<div class="test-item">
<div class="test-1">
Box 1
<div class="test-2">
Expand All @@ -13,30 +13,46 @@
</div>
</div>
</div>
<h1>ηͺ—口建立桋试</h1>
<div class="btn-list">
<v-btn class="test-btn" @click="tryNewWindow('sign_in')">SignIn</v-btn>
<v-btn class="test-btn" @click="tryNewWindow('game_record')">GameRecord</v-btn>
<h1>θ§’θ‰²θ―¦ζƒ…οΌˆbetaοΌ‰</h1>
<div class="test-item">
<div class="role-box">
{{ JSON.stringify(roleItem, null, 2) }}
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref } from "vue";
import mhyClient from "../../utils/TGClient";
import TGSqlite from "../../plugins/Sqlite";
import { useUserStore } from "../../store/modules/user";
const visible = ref<boolean>(false);
const userStore = useUserStore();
const roleItem = ref<TGApp.Sqlite.Character.UserRole>();
onMounted(async () => {
const user = userStore.getCurAccount();
const roleData = await TGSqlite.getUserCharacter(user.gameUid);
if (roleData !== false) {
roleItem.value = roleData[0];
}
visible.value = false;
await mhyClient.run();
});
async function tryNewWindow(func: string): Promise<void> {
await mhyClient.open(func);
}
</script>
<style lang="css" scoped>
.test-box {
display: flex;
flex-direction: column;
gap: 10px;
}
.test-item {
padding: 10px;
border-radius: 5px;
}
.btn-list {
display: flex;
justify-content: flex-start;
Expand All @@ -49,12 +65,6 @@ async function tryNewWindow(func: string): Promise<void> {
color: var(--btn-text);
}
.test-box {
display: flex;
border-radius: 5px;
gap: 10px;
}
.test-1,
.test-2,
.test-3,
Expand All @@ -81,4 +91,15 @@ async function tryNewWindow(func: string): Promise<void> {
.test-4 {
background: var(--box-bg-4);
}
.role-box {
display: flex;
flex-direction: column;
padding: 10px;
border-radius: 5px;
background: var(--box-bg-1);
color: var(--box-text-1);
gap: 10px;
white-space: pre-wrap;
}
</style>

0 comments on commit a9912cf

Please sign in to comment.