指导手册增加图标

This commit is contained in:
guoyue 2022-07-14 10:56:37 +08:00
parent e4280e3874
commit eefa5354ec
3 changed files with 129 additions and 74 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,18 +1,19 @@
<template> <template>
<div class="father"> <div class="menu-box">
<home-header></home-header> <home-header></home-header>
<div id="container" class="content"> <div id="container" class="content-menu">
<div class="left"> <div class="left">
<div class="first-title-text" @click="showManual" :style="{ color: showManualFlag ? '#0058e1' : '' }">新手指引</div> <div class="first-title-text" v-for="(data, i) in titleList" :key="i" @click="changeName(data)"
<div class="first-title-text" @click="showManual" :style="{ color: !showManualFlag ? '#0058e1' : '' }">技术文档 :style="{ color: data.name === titleData.name ? '#0058e1' : '' }">
<div class="img" :class="data.className"></div>
{{ data.name }}
</div> </div>
<abilityDocTree :dataList="treeArray" @treeClick="treeClick" :clickData="clickData"></abilityDocTree> <abilityDocTree :dataList="treeArray" @treeClick="treeClick" :clickData="clickData"></abilityDocTree>
</div> </div>
<div class="right"> <div class="right">
<div v-if="showManualFlag">新手指引</div> <div v-if="titleData.name === '新手指引'">新手指引</div>
<div v-else> <div v-else style="height:100%">
<!-- 技术文档 --> <iframe name="iframeName" width="1000" height="100%" id="iframeId" :frameborder="0"
<iframe name="iframeName" width="1000" height="800" id="iframeId" :frameborder="0"
:src="clickData.doc"></iframe> :src="clickData.doc"></iframe>
</div> </div>
</div> </div>
@ -22,26 +23,31 @@
<script setup> <script setup>
import HomeHeader from '@/views/home/components/header' import HomeHeader from '@/views/home/components/header'
import abilityDocTree from './components/abilityDocTree' import abilityDocTree from './components/abilityDocTree'
import { selectOne } from '@/api/home'
import { ref, reactive, onMounted, nextTick, watch } from 'vue' import { ref, reactive, onMounted, nextTick, watch } from 'vue'
import { useStore } from 'vuex'
import { Empty, message } from 'ant-design-vue' import { Empty, message } from 'ant-design-vue'
import { getDevelopDocTree } from '@/api/home' import { getDevelopDocTree } from '@/api/home'
const showManualFlag = ref(false) const titleList = ref([
const showManual = () => { {
showManualFlag.value = !showManualFlag.value name: '新手指引',
} className: 'newGuide'
},
{
name: '技术文档',
className: 'doc'
}
])
const titleData = ref(titleList.value[0])
const clickData = ref({}) const clickData = ref({})
let typeList = ['组件服务', '应用资源', '基础设施', '数据资源', '知识库'];
const treeArray = ref([])
const treeClick = (item) => { const treeClick = (item) => {
showManualFlag.value = false;
console.log('item---treeClick--------->', item); console.log('item---treeClick--------->', item);
clickData.value = item; clickData.value = item;
titleData.value = titleList.value[1]
} }
let typeList = ['组件服务', '应用资源', '基础设施', '数据资源', '知识库'];
const treeArray = ref([])
const getTreeData = () => { const getTreeData = () => {
getDevelopDocTree({}).then((res) => { getDevelopDocTree({}).then((res) => {
console.log('res------文档树------>', res); console.log('res------文档树------>', res);
@ -54,80 +60,31 @@ const getTreeData = () => {
}); });
} }
const changeName = (item) => {
titleData.value = item
}
onMounted(() => { onMounted(() => {
getTreeData() getTreeData()
// loadPage()
}) })
var x = document.getElementById("iframeId");
console.log('x------------>', x);
watch( watch(
() => clickData.value, () => clickData.value,
(val) => { (val) => {
if (val) { if (val) {
console.log('val-watch---clickData-------->', val); console.log('val-watch---clickData-------->', val);
// clickData.value = val
loadPage()
} }
}, },
{ {
//truewatch
//val,preValundefined
// immediate: true,
//
//messagemessage.a.b.cmessage
deep: true, deep: true,
} }
) )
// window.onload = () => loadPage()
const loadPage = () => {
console.log('2222----onload-------->', 2222);
if (!clickData.value.doc) {
return;
}
// var _iframe = document.getElementById('iframeId').contentWindow.document.getElementsByTagName('aside')//iframeid
// console.log('_iframe------------>', _iframe);
var x = document.getElementById("iframeId");
console.log('x------------>', x);
if (x) {
var y = (x.contentWindow || x.contentDocument);
if (y.document) {
y = y.document;
}
let asideDom = y.body.getElementsByClassName('.aside') && y.body.getElementsByClassName('.aside')[0]
if (asideDom) {
asideDom.style.right = 0;
}
console.log('asideDom------------>', asideDom);
let contentDom = y.body.getElementsByClassName('.content') && y.body.getElementsByClassName('.content')[0];
console.log('contentDom------------>', contentDom);
if (contentDom) {
contentDom.style.left = 0
contentDom.style.right = '16rem'
}
//idclass
// y.getElementById('id').style.fontSize = '12px'
}
}
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
.father { .menu-box {
// overflow: hidden; // overflow: hidden;
height: 100%; height: 100%;
} }
@ -137,18 +94,36 @@ const loadPage = () => {
font-size: 18px; font-size: 18px;
color: #333; color: #333;
padding-bottom: 10px; padding-bottom: 10px;
display: flex;
align-items: center;
&:hover { &:hover {
color: #0058e1; color: #0058e1;
} }
} }
.content { .content-menu {
// width: 1240px;
// display: flex;
// justify-content: flex-start;
// margin: 0 auto;
// margin-top: 74px;
// box-sizing: border-box;
// position: relative;
width: 1240px; width: 1240px;
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
margin: 0 auto; margin: 0 auto;
margin-top: 84px; margin-top: 74px;
box-sizing: border-box;
/* height: calc(100vh - 306px); */
position: fixed;
left: 50%;
bottom: 0;
transform: translateX(-50%);
top: 0.6rem;
top: 0;
} }
.left { .left {
@ -158,10 +133,18 @@ const loadPage = () => {
margin-right: 20px; margin-right: 20px;
background: rgba(244, 245, 248, 0.8); background: rgba(244, 245, 248, 0.8);
overflow-y: auto; overflow-y: auto;
position: absolute;
top: 10px;
left: 0;
} }
.right { .right {
width: 880px; width: 880px;
height: calc(100% - 20px);
position: absolute;
top: 10px;
left: 260px;
} }
.sidebar { .sidebar {
@ -172,4 +155,76 @@ const loadPage = () => {
right: 16rem !important; right: 16rem !important;
left: 0 !important; left: 0 !important;
} }
.img {
height: 20px;
width: 20px;
margin-right: 8px;
}
.doc {
background: url('~@/assets/capabilityCloud/doc.png') no-repeat;
background-size: 100%;
}
.newGuide {
background: url('~@/assets/capabilityCloud/newGuide.png') no-repeat;
background-size: 100%;
}
#iframeId {
// ::-webkit-scrollbar {
// width: 6px;
// height: 6px;
// background-color: rgb(255, 255, 255);
// }
// ::-webkit-scrollbar-thumb {
// border-radius: 10px;
// background-color: rgb(200, 204, 209);
// }
/* 设置滚动条的样式 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
// width: 2px;
// height: 2px;
// height: 67px;
}
::scrollbar {
width: 6px;
height: 6px;
// width: 2px;
// height: 2px;
// height: 67px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
display: none;
// -webkit-box-shadow: inset 0 0 3px #b18933;
// border-radius: 1px;
}
::scrollbar-track {
display: none;
// -webkit-box-shadow: inset 0 0 3px #98f165;
// border-radius: 1px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #006666;
-webkit-box-shadow: inset 0 0 1px #006666;
}
::scrollbar-thumb {
border-radius: 10px;
background: #006666;
-webkit-box-shadow: inset 0 0 1px #006666;
}
}
</style> </style>