This commit is contained in:
2024-07-24 18:40:14 +08:00
parent bf0b0f6080
commit 3c32e70977
12 changed files with 192 additions and 30 deletions

View File

@@ -36,16 +36,6 @@
</a-button>
</a-tooltip>
</li>
<li>
<a-tooltip content="语言-暂无">
<a-button class="nav-btn" type="outline" :shape="'circle'">
<template #icon>
<icon-language />
</template>
</a-button>
</a-tooltip>
<!-- 这里有个下拉列表 -->
</li>
<li>
<a-tooltip content="切换主题">
<a-button @click="handleChangeTheme" class="nav-btn" type="outline" :shape="'circle'">
@@ -65,15 +55,6 @@
</a-button>
</a-tooltip>
</li>
<li>
<a-tooltip content="设置">
<a-button class="nav-btn" type="outline" :shape="'circle'" @click="setVisible">
<template #icon>
<icon-settings />
</template>
</a-button>
</a-tooltip>
</li>
<li>
<a-dropdown trigger="click">
<a-avatar :size="32" :style="{ marginRight: '8px', cursor: 'pointer' }">
@@ -112,9 +93,6 @@
</template>
<script setup>
// 测试接口导入
import dgGenerateApi from "@/api/generate/dgGenerate"
// ~~~~~~~~~
import { computed, inject } from "vue"
import { useAppStore } from "@/store"
import { useFullscreen } from "@vueuse/core"
@@ -171,12 +149,6 @@ const toggleDrawerMenu = inject("toggleDrawerMenu")
const handleClickLogo = () => {
router.push({ name: "workplace" })
}
// 测试生成文档-测试项和方法
const testCreate = async () => {
const st = await dgGenerateApi.createTestDemand()
Message.success(st.message)
}
</script>
<style scoped lang="less">