mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-18 03:16:40 +08:00
306 lines
8.5 KiB
Vue
306 lines
8.5 KiB
Vue
<!--
|
||
* 帮助文档 layout
|
||
*
|
||
* @Author: 1024创新实验室-主任:卓大
|
||
* @Date: 2022-09-06 20:40:16
|
||
* @Wechat: zhuda1024
|
||
* @Email: lab1024@163.com
|
||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
-->
|
||
<template>
|
||
<!--
|
||
中间内容,一共三部分:
|
||
1、顶部
|
||
2、中间内容区域
|
||
3、底部(一般是公司版权信息)
|
||
-->
|
||
<a-layout class="help-doc-layout" id="smartAdminMain">
|
||
<!-- 顶部头部信息 -->
|
||
<a-layout-header class="layout-header">
|
||
<a-row class="layout-header-title">
|
||
<img class="logo-img" :src="logoImg" />
|
||
<div class="title">{{ websiteName }}</div>
|
||
<div class="title">帮助文档</div>
|
||
<a-col class="avatar">
|
||
<HeaderAvatar />
|
||
</a-col>
|
||
</a-row>
|
||
</a-layout-header>
|
||
<a-layout :style="`height: ${windowHeight}px`">
|
||
<!-- 侧边目录 side-menu -->
|
||
<a-layout-sider class="side-menu" :style="`height: ${windowHeight}px`" :collapsed="false" theme="light" :width="300">
|
||
<div class="help-doc-tree">
|
||
<!-- 目录内容 -->
|
||
<div>
|
||
<a-directory-tree
|
||
v-model:expandedKeys="expandedKeys"
|
||
v-model:selectedKeys="selectedKeys"
|
||
:tree-data="helpDocTreeData"
|
||
@select="selectHelpDoc"
|
||
/>
|
||
</div>
|
||
</div>
|
||
</a-layout-sider>
|
||
|
||
<!--中间内容-->
|
||
<a-layout-content id="smartAdminLayoutContent" class="help-doc-layout-content">
|
||
<router-view v-slot="{ Component }">
|
||
<div :key="route.fullPath">
|
||
<component :is="Component" />
|
||
</div>
|
||
</router-view>
|
||
<!-- footer 版权公司信息 -->
|
||
<a-layout-footer class="layout-footer">
|
||
<SmartFooter />
|
||
</a-layout-footer>
|
||
</a-layout-content>
|
||
</a-layout>
|
||
|
||
<a-back-top :target="backTopTarget" :visibilityHeight="80" />
|
||
</a-layout>
|
||
</template>
|
||
|
||
<script setup>
|
||
import _ from 'lodash';
|
||
import { computed, onMounted, ref } from 'vue';
|
||
import { useRoute, useRouter } from 'vue-router';
|
||
import { smartSentry } from '../lib/smart-sentry';
|
||
import { useAppConfigStore } from '../store/modules/system/app-config';
|
||
import SmartFooter from './components/smart-footer/index.vue';
|
||
import { helpDocApi } from '/@/api/support/help-doc-api';
|
||
import { helpDocCatalogApi } from '/@/api/support/help-doc-catalog-api';
|
||
import logoImg from '/@/assets/images/logo/smart-admin-logo-white.png';
|
||
import { SmartLoading } from '/@/components/framework/smart-loading';
|
||
import { HOME_PAGE_NAME } from '/@/constants/system/home-const';
|
||
import watermark from '../lib/smart-watermark';
|
||
import { useUserStore } from '/@/store/modules/system/user';
|
||
import HeaderAvatar from './components/header-user-space/header-avatar.vue';
|
||
import { LAYOUT_ELEMENT_IDS } from '/@/layout/layout-const';
|
||
|
||
const websiteName = computed(() => useAppConfigStore().websiteName);
|
||
const windowHeight = window.innerHeight;
|
||
onMounted(() => {
|
||
watermark.set(LAYOUT_ELEMENT_IDS.content, useUserStore().actualName);
|
||
});
|
||
const backTopTarget = () => {
|
||
return document.getElementById(LAYOUT_ELEMENT_IDS.main);
|
||
};
|
||
const router = useRouter();
|
||
const route = useRoute();
|
||
function goHome() {
|
||
router.push({ name: HOME_PAGE_NAME });
|
||
}
|
||
|
||
// ----------------------- 选中 节点 -----------------------------
|
||
const expandedKeys = ref([]);
|
||
const selectedKeys = ref([]);
|
||
|
||
function selectHelpDoc(selectedKeys) {
|
||
let key = selectedKeys[0];
|
||
if (key.indexOf(TYPE_CATALOG_PREFIX) > -1) {
|
||
return;
|
||
}
|
||
|
||
let helpDocId = key.substr(TYPE_HELP_DOC_PREFIX.length);
|
||
router.push({ path: '/help-doc/detail', query: { helpDocId } });
|
||
}
|
||
|
||
// 更新展开节点
|
||
function updateExpandedKeys(helpDocId, helpDocList, catalogList) {
|
||
expandedKeys.value = [TYPE_HELP_DOC_PREFIX + helpDocId];
|
||
selectedKeys.value = [TYPE_HELP_DOC_PREFIX + helpDocId];
|
||
|
||
let helpDoc = helpDocList.filter((e) => e.helpDocId === helpDocId);
|
||
let catalogId = null;
|
||
if (helpDoc.length > 0) {
|
||
catalogId = helpDoc[0].helpDocCatalogId;
|
||
}
|
||
|
||
if (catalogId) {
|
||
expandedKeys.value.push(TYPE_CATALOG_PREFIX + catalogId);
|
||
}
|
||
|
||
let parentId = catalogId;
|
||
while (parentId !== 0) {
|
||
let catalog = catalogList.filter((e) => e.helpDocCatalogId === parentId);
|
||
if (catalog.length > 0) {
|
||
parentId = catalog[0].parentId;
|
||
expandedKeys.value.push(TYPE_CATALOG_PREFIX + catalog[0].helpDocCatalogId);
|
||
} else {
|
||
parentId = 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
// ----------------------- 帮助文档 目录 树 -----------------------------
|
||
onMounted(queryHelpDocTree);
|
||
|
||
const helpDocTreeData = ref([]);
|
||
|
||
const TYPE_CATALOG_PREFIX = 'catalog_';
|
||
const TYPE_HELP_DOC_PREFIX = 'help_doc_';
|
||
//目录默认id为0
|
||
const HELP_DOC_CATALOG_PARENT_ID = 0;
|
||
//查询帮助文档树形结构
|
||
async function queryHelpDocTree() {
|
||
SmartLoading.show();
|
||
try {
|
||
let { data: catalogList } = await helpDocCatalogApi.getAll();
|
||
let { data: helpDocList } = await helpDocApi.getAllHelpDocList();
|
||
|
||
//设置前缀
|
||
for (const item of catalogList) {
|
||
item.key = TYPE_CATALOG_PREFIX + item.helpDocCatalogId;
|
||
item.title = item.name;
|
||
}
|
||
//转为map,供递归使用
|
||
let helpDocMap = new Map();
|
||
for (const item of helpDocList) {
|
||
item.key = TYPE_HELP_DOC_PREFIX + item.helpDocId;
|
||
let list = helpDocMap.get(item.helpDocCatalogId);
|
||
if (!list) {
|
||
list = [];
|
||
helpDocMap.set(item.helpDocCatalogId, list);
|
||
}
|
||
list.push(item);
|
||
}
|
||
|
||
helpDocTreeData.value = buildHelpDocCatalogTree(catalogList, 0, helpDocMap);
|
||
if (!route.query.helpDocId && firstHelpDocId) {
|
||
selectHelpDoc([TYPE_HELP_DOC_PREFIX + firstHelpDocId]);
|
||
return;
|
||
}
|
||
|
||
//更新展开节点
|
||
updateExpandedKeys(route.query.helpDocId, helpDocList, catalogList);
|
||
} catch (e) {
|
||
smartSentry.captureError(e);
|
||
} finally {
|
||
SmartLoading.hide();
|
||
}
|
||
}
|
||
|
||
// 记录第一个树
|
||
let firstHelpDocId = null;
|
||
// 构建目录树
|
||
function buildHelpDocCatalogTree(data, parentId, helpDocMap) {
|
||
let children = data.filter((e) => e.parentId === parentId) || [];
|
||
//排序
|
||
children = _.sortBy(children, (e) => e.sort);
|
||
|
||
let helpDocList = helpDocMap.get(parentId);
|
||
if (helpDocList) {
|
||
//排序
|
||
helpDocList = _.sortBy(helpDocList, (e) => e.sort);
|
||
if (!firstHelpDocId) {
|
||
firstHelpDocId = helpDocList[0].helpDocId;
|
||
}
|
||
children.push(...helpDocList);
|
||
}
|
||
|
||
for (const e of children) {
|
||
if (e.key.indexOf(TYPE_HELP_DOC_PREFIX) > -1) {
|
||
continue;
|
||
}
|
||
e.isLeaf = false;
|
||
e.children = buildHelpDocCatalogTree(data, e.helpDocCatalogId, helpDocMap);
|
||
}
|
||
|
||
return children;
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
:deep(.ant-layout-header) {
|
||
height: auto;
|
||
}
|
||
:deep(.layout-header) {
|
||
height: auto;
|
||
}
|
||
:deep(.ant-tree-treenode) {
|
||
margin: 2px 0;
|
||
}
|
||
|
||
.help-doc-layout {
|
||
overflow-y: hidden;
|
||
height: 100vh;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.layout-header {
|
||
background: @primary-color;
|
||
padding: 0;
|
||
z-index: 999;
|
||
color: white;
|
||
height: @header-user-height;
|
||
line-height: @header-user-height;
|
||
display: flex;
|
||
justify-content: flex-start;
|
||
|
||
.layout-header-title {
|
||
height: @header-user-height;
|
||
line-height: @header-user-height;
|
||
padding: 0px 15px 0px 15px;
|
||
z-index: 9999;
|
||
display: flex;
|
||
cursor: pointer;
|
||
justify-content: flex-start;
|
||
margin-bottom: 10px;
|
||
|
||
.logo-img {
|
||
width: 40px;
|
||
height: @header-user-height;
|
||
}
|
||
.title {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
margin-left: 10px;
|
||
text-align: center;
|
||
color: '#001529';
|
||
}
|
||
.avatar {
|
||
position: fixed;
|
||
top: 0;
|
||
right: 18px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.layout-container {
|
||
height: calc(100vh - @header-height);
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.side-menu {
|
||
height: 100vh;
|
||
overflow: scroll;
|
||
.help-doc-tree {
|
||
color: #001529;
|
||
margin-top: 10px;
|
||
font-size: 16px;
|
||
}
|
||
}
|
||
|
||
.help-doc-layout-content {
|
||
min-height: auto;
|
||
position: relative;
|
||
overflow-y: scroll;
|
||
overflow-x: hidden;
|
||
margin-left: 5px;
|
||
margin-top: 8px;
|
||
height: calc(100% - 40px);
|
||
}
|
||
|
||
.layout-footer {
|
||
padding: 0 !important;
|
||
position: fixed;
|
||
bottom: 0;
|
||
right: calc(50% - 300px);
|
||
display: flex;
|
||
height: 30px;
|
||
justify-content: center;
|
||
}
|
||
</style>
|
||
../lib/smart-watermark
|