refactor: 部门手机号非必要;链路追踪不显示;分配菜单取消全部展开

This commit is contained in:
caiyuchao
2025-07-09 18:27:29 +08:00
parent 31d29e3d22
commit 0a5b83ab32
3 changed files with 7 additions and 9 deletions

View File

@@ -1,10 +1,9 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { DocAlert, Page } from '@vben/common-ui';
import { Page } from '@vben/common-ui';
import { getConfigKey } from '#/api/infra/config';
import { IFrame } from '#/components/iframe';
const loading = ref(true); // 是否加载中
const src = ref('http://skywalking.shop.iocoder.cn');
@@ -24,10 +23,10 @@ onMounted(async () => {
<template>
<Page auto-content-height>
<template #doc>
<!-- <template #doc>
<DocAlert title="服务监控" url="https://doc.iocoder.cn/server-monitor/" />
</template>
</template> -->
<IFrame v-if="!loading" v-loading="loading" :src="src" />
<!-- <IFrame v-if="!loading" v-loading="loading" :src="src" /> -->
</Page>
</template>