🔥 清除无用文件&代码

This commit is contained in:
BTMuli
2023-06-28 20:38:34 +08:00
parent 69c630cd4f
commit 40ae3ffca5
4 changed files with 5 additions and 12 deletions

View File

@@ -1,7 +0,0 @@
<svg width="219.199905" height="218.074081" viewBox="0 0 219.2 218.074" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<desc>
Created with Pixso.
</desc>
<path id="left" d="M147.2 218.074L147.2 169.877L68.2666 111.407L63.9999 108.247L147.2 46.6173L147.2 0L0 109.037L147.2 218.074ZM147.2 54.9135L219.2 108.247L147.2 161.58L75.1999 108.247L147.2 54.9135Z" fill-rule="evenodd" fill="#FAF7E8"/>
<defs/>
</svg>

Before

Width:  |  Height:  |  Size: 457 B

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -1,7 +1,7 @@
<template> <template>
<transition name="fade"> <transition name="fade">
<div v-show="canTop" class="back-top" @click="handleScrollTop"> <div v-show="canTop" class="back-top" @click="handleScrollTop">
<img src="../../assets/icons/arrow-top.svg" alt="back-icon" /> <img src="../../assets/icons/back-top.svg" alt="back-icon" />
</div> </div>
</transition> </transition>
</template> </template>

View File

@@ -1,11 +1,11 @@
<template> <template>
<TSwitchTheme /> <TSwitchTheme />
<TOLoading v-model="loading" :empty="loadingEmpty" :title="loadingTitle" /> <ToLoading v-model="loading" :empty="loadingEmpty" :title="loadingTitle" />
<div class="anno-json"> <div class="anno-json">
<div class="anno-title">活动列表 JSON</div> <div class="anno-title">活动列表 JSON</div>
<JsonViewer :value="jsonList" copyable boxed class="anno-data" /> <JsonViewer :value="jsonList" copyable boxed />
<div class="anno-title">活动内容 JSON</div> <div class="anno-title">活动内容 JSON</div>
<JsonViewer :value="jsonContent" copyable boxed class="anno-data" /> <JsonViewer :value="jsonContent" copyable boxed />
</div> </div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@@ -13,7 +13,7 @@
import { ref, onMounted, reactive } from "vue"; import { ref, onMounted, reactive } from "vue";
import { useRoute } from "vue-router"; import { useRoute } from "vue-router";
import JsonViewer from "vue-json-viewer"; import JsonViewer from "vue-json-viewer";
import TOLoading from "../components/overlay/to-loading.vue"; import ToLoading from "../components/overlay/to-loading.vue";
import TSwitchTheme from "../components/main/t-switchTheme.vue"; import TSwitchTheme from "../components/main/t-switchTheme.vue";
// tauri // tauri
import { appWindow } from "@tauri-apps/api/window"; import { appWindow } from "@tauri-apps/api/window";