refactor: 部门手机号非必要;链路追踪不显示;分配菜单取消全部展开
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -83,7 +83,7 @@ export function useFormSchema(): VbenFormSchema[] {
|
||||
maxLength: 11,
|
||||
placeholder: '请输入联系电话',
|
||||
},
|
||||
rules: 'mobileRequired',
|
||||
// rules: 'mobileRequired',
|
||||
},
|
||||
{
|
||||
fieldName: 'email',
|
||||
|
||||
@@ -147,7 +147,6 @@ function getNodeClass(node: Recordable<any>) {
|
||||
:tree-data="menuTree"
|
||||
multiple
|
||||
bordered
|
||||
:expanded="expandedKeys"
|
||||
:get-node-class="getNodeClass"
|
||||
v-bind="slotProps"
|
||||
value-field="id"
|
||||
@@ -161,9 +160,9 @@ function getNodeClass(node: Recordable<any>) {
|
||||
<Checkbox :checked="isAllSelected" @change="toggleSelectAll">
|
||||
全选
|
||||
</Checkbox>
|
||||
<Checkbox :checked="isExpanded" @change="toggleExpandAll">
|
||||
<!-- <Checkbox :checked="isExpanded" @change="toggleExpandAll">
|
||||
全部展开
|
||||
</Checkbox>
|
||||
</Checkbox> -->
|
||||
</div>
|
||||
</template>
|
||||
</Modal>
|
||||
|
||||
Reference in New Issue
Block a user