♻️ 调整目录结构

This commit is contained in:
目棃
2024-11-19 14:45:29 +08:00
parent e1f85d1d92
commit 3fef8467f4
121 changed files with 532 additions and 554 deletions

View File

@@ -16,11 +16,11 @@ import { app, webviewWindow } from "@tauri-apps/api";
import { ref, onMounted } from "vue";
import { useRoute } from "vue-router";
import TaParser from "../components/anno/ta-parser.vue";
import TPinWin from "../components/app/t-pinWin.vue";
import TShareBtn from "../components/app/t-shareBtn.vue";
import TSwitchTheme from "../components/app/t-switchTheme.vue";
import showLoading from "../components/func/loading.js";
import TaParser from "../components/pageAnno/ta-parser.vue";
import { useAppStore } from "../store/modules/app.js";
import TGLogger from "../utils/TGLogger.js";
import { createTGWindow } from "../utils/TGWindow.js";

View File

@@ -1,9 +1,9 @@
<template>
<TSwitchTheme />
<TPinWin />
<TbCollect :model-value="postId" :data="postData" />
<VpBtnCollect :model-value="postId" :data="postData" />
<TShareBtn v-model="postRef" :title="shareTitle" />
<TprMain :gid="postData.post.game_id" :post-id="postData.post.post_id" v-if="postData" />
<VpBtnReply :gid="postData.post.game_id" :post-id="postData.post.post_id" v-if="postData" />
<div class="tp-post-body" v-if="postData">
<div class="tp-post-info">
<div class="tp-post-version">
@@ -76,7 +76,7 @@
</div>
<TpParser v-model:data="renderPost" />
</div>
<TpoCollection
<VpOverlayCollection
v-model="showCollection"
:collection="postData.collection"
v-if="postData?.collection"
@@ -94,11 +94,11 @@ import TShareBtn from "../components/app/t-shareBtn.vue";
import TSwitchTheme from "../components/app/t-switchTheme.vue";
import showLoading from "../components/func/loading.js";
import showSnackbar from "../components/func/snackbar.js";
import TbCollect from "../components/post/tb-collect.vue";
import TpAvatar from "../components/post/tp-avatar.vue";
import TpParser from "../components/post/tp-parser.vue";
import TpoCollection from "../components/post/tpo-collection.vue";
import TprMain from "../components/postReply/tpr-main.vue";
import TpAvatar from "../components/viewPost/tp-avatar.vue";
import TpParser from "../components/viewPost/tp-parser.vue";
import VpBtnCollect from "../components/viewPost/vp-btn-collect.vue";
import VpBtnReply from "../components/viewPost/vp-btn-reply.vue";
import VpOverlayCollection from "../components/viewPost/vp-overlay-collection.vue";
import Mys from "../plugins/Mys/index.js";
import { useAppStore } from "../store/modules/app.js";
import TGClient from "../utils/TGClient.js";