|
@@ -18,6 +18,7 @@
|
|
<el-input
|
|
<el-input
|
|
v-model="input2"
|
|
v-model="input2"
|
|
style="width: 80%"
|
|
style="width: 80%"
|
|
|
|
+ @change="toinput"
|
|
placeholder="请输入关键字搜索"
|
|
placeholder="请输入关键字搜索"
|
|
:prefix-icon="Search"
|
|
:prefix-icon="Search"
|
|
/>
|
|
/>
|
|
@@ -27,11 +28,12 @@
|
|
@open="handleOpen"
|
|
@open="handleOpen"
|
|
@close="closeb"
|
|
@close="closeb"
|
|
:unique-opened="true"
|
|
:unique-opened="true"
|
|
|
|
+ :default-active="defaultact"
|
|
>
|
|
>
|
|
<el-sub-menu
|
|
<el-sub-menu
|
|
v-for="(item, idx) in book.category"
|
|
v-for="(item, idx) in book.category"
|
|
:key="idx"
|
|
:key="idx"
|
|
- :index="String(item.id)"
|
|
|
|
|
|
+ :index="String(item.id) + '-' + item.name"
|
|
>
|
|
>
|
|
<template #title>
|
|
<template #title>
|
|
<div>
|
|
<div>
|
|
@@ -42,7 +44,7 @@
|
|
<el-sub-menu
|
|
<el-sub-menu
|
|
v-for="(item2, ind) in item.children"
|
|
v-for="(item2, ind) in item.children"
|
|
:key="ind"
|
|
:key="ind"
|
|
- :index="item.id + '-' + item2.id"
|
|
|
|
|
|
+ :index="item.id + '-' + item2.id + '-' + item2.name"
|
|
>
|
|
>
|
|
<template #title>{{ item2.name }}</template>
|
|
<template #title>{{ item2.name }}</template>
|
|
|
|
|
|
@@ -54,7 +56,7 @@
|
|
>
|
|
>
|
|
<template #title>{{ item3.name }}</template>
|
|
<template #title>{{ item3.name }}</template>
|
|
<el-menu-item
|
|
<el-menu-item
|
|
- v-for="(child, inx) in book.documentlist"
|
|
|
|
|
|
+ v-for="(child, inx) in item3.documents"
|
|
:key="inx"
|
|
:key="inx"
|
|
@click="change(child.content, child.title)"
|
|
@click="change(child.content, child.title)"
|
|
:index="
|
|
:index="
|
|
@@ -64,7 +66,9 @@
|
|
'-' +
|
|
'-' +
|
|
item3.id +
|
|
item3.id +
|
|
'-' +
|
|
'-' +
|
|
- child.id
|
|
|
|
|
|
+ child.id +
|
|
|
|
+ '-' +
|
|
|
|
+ item3.name
|
|
"
|
|
"
|
|
>{{ child.title }}</el-menu-item
|
|
>{{ child.title }}</el-menu-item
|
|
>
|
|
>
|
|
@@ -72,7 +76,7 @@
|
|
</template>
|
|
</template>
|
|
<template v-else>
|
|
<template v-else>
|
|
<el-menu-item
|
|
<el-menu-item
|
|
- v-for="(child, index) in book.documentlist"
|
|
|
|
|
|
+ v-for="(child, index) in item2.documents"
|
|
:key="index"
|
|
:key="index"
|
|
@click="change(child.content, child.title)"
|
|
@click="change(child.content, child.title)"
|
|
:index="item.id + '-' + item2.id + '-' + child.id"
|
|
:index="item.id + '-' + item2.id + '-' + child.id"
|
|
@@ -83,9 +87,10 @@
|
|
</template>
|
|
</template>
|
|
<template v-else>
|
|
<template v-else>
|
|
<el-menu-item
|
|
<el-menu-item
|
|
- v-for="(child, index) in book.documentlist"
|
|
|
|
|
|
+ v-for="(child, index) in item.documents"
|
|
:key="index"
|
|
:key="index"
|
|
:index="item.id + '-' + child.id"
|
|
:index="item.id + '-' + child.id"
|
|
|
|
+ @click="change(child.content, child.title)"
|
|
>{{ child.title }}</el-menu-item
|
|
>{{ child.title }}</el-menu-item
|
|
>
|
|
>
|
|
</template>
|
|
</template>
|
|
@@ -93,7 +98,7 @@
|
|
</el-menu>
|
|
</el-menu>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="right">
|
|
|
|
|
|
+ <div class="right" v-if="book.content.con">
|
|
<div style="display: flex; align-items: center; column-gap: 6px">
|
|
<div style="display: flex; align-items: center; column-gap: 6px">
|
|
<span class="topsm">{{ changefont }}</span>
|
|
<span class="topsm">{{ changefont }}</span>
|
|
<el-icon v-if="categoryname"><ArrowRight /></el-icon>
|
|
<el-icon v-if="categoryname"><ArrowRight /></el-icon>
|
|
@@ -105,6 +110,9 @@
|
|
<div class="btnline"></div>
|
|
<div class="btnline"></div>
|
|
<div v-html="book.content.con"></div>
|
|
<div v-html="book.content.con"></div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="right" v-else>
|
|
|
|
+ <div v-html="book.content.first"></div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -113,8 +121,10 @@ import { useRouter, useRoute } from "vue-router";
|
|
import { onMounted, ref, reactive } from "vue";
|
|
import { onMounted, ref, reactive } from "vue";
|
|
import { Calendar, Search, ArrowRight } from "@element-plus/icons-vue";
|
|
import { Calendar, Search, ArrowRight } from "@element-plus/icons-vue";
|
|
import * as bookApi from "../../api/document";
|
|
import * as bookApi from "../../api/document";
|
|
|
|
+import * as agreementAPi from '../../api/login'
|
|
const route = useRoute();
|
|
const route = useRoute();
|
|
-// const router = useRouter()
|
|
|
|
|
|
+const router = useRouter();
|
|
|
|
+const defaultact = ref("");
|
|
const changeindex = ref(0);
|
|
const changeindex = ref(0);
|
|
const changefont = ref("产品文档");
|
|
const changefont = ref("产品文档");
|
|
const type_id = ref(1);
|
|
const type_id = ref(1);
|
|
@@ -125,8 +135,17 @@ const categoryname = ref("");
|
|
const docu = ref("");
|
|
const docu = ref("");
|
|
const category_id = ref("");
|
|
const category_id = ref("");
|
|
const input2 = ref("");
|
|
const input2 = ref("");
|
|
-
|
|
|
|
category_id.value = route.query.category_id;
|
|
category_id.value = route.query.category_id;
|
|
|
|
+const book = reactive({
|
|
|
|
+ list: [],
|
|
|
|
+ category: [],
|
|
|
|
+ documentlist: [],
|
|
|
|
+ content: {
|
|
|
|
+ con: "",
|
|
|
|
+ first:''
|
|
|
|
+ },
|
|
|
|
+});
|
|
|
|
+
|
|
//更换文档
|
|
//更换文档
|
|
const topchange = (name, index, id) => {
|
|
const topchange = (name, index, id) => {
|
|
changefont.value = name;
|
|
changefont.value = name;
|
|
@@ -137,24 +156,49 @@ const topchange = (name, index, id) => {
|
|
book.documentlist = [];
|
|
book.documentlist = [];
|
|
book.content.con = "";
|
|
book.content.con = "";
|
|
category();
|
|
category();
|
|
|
|
+ if(book.content.con==''&&type_id.value==1){
|
|
|
|
+ agreement('product')
|
|
|
|
+}else if(book.content.con==''&&type_id.value==2){
|
|
|
|
+ agreement('exploit')
|
|
|
|
+}else if(book.content.con==''&&type_id.value==3){
|
|
|
|
+ agreement('port')
|
|
|
|
+}
|
|
};
|
|
};
|
|
|
|
|
|
-const book = reactive({
|
|
|
|
- list: [],
|
|
|
|
- category: [],
|
|
|
|
- documentlist: [],
|
|
|
|
- content: {
|
|
|
|
- con: "",
|
|
|
|
- },
|
|
|
|
-});
|
|
|
|
-
|
|
|
|
|
|
+const lastname = ref("");
|
|
const handleOpen = (key, keyPath) => {
|
|
const handleOpen = (key, keyPath) => {
|
|
- console.log("key1", key);
|
|
|
|
- console.log("key", key.split("-").pop());
|
|
|
|
- document(key.split("-").pop());
|
|
|
|
|
|
+ lastname.value = key.split("-").pop();
|
|
};
|
|
};
|
|
const closeb = (key, keyPath) => {};
|
|
const closeb = (key, keyPath) => {};
|
|
|
|
|
|
|
|
+//搜索结果
|
|
|
|
+if (route.query.indexid) {
|
|
|
|
+ defaultact.value = route.query.indexid;
|
|
|
|
+ book.content.con = route.query.content;
|
|
|
|
+ docu.value = route.query.title;
|
|
|
|
+ categoryname.value = route.query.category_name;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//协议接口
|
|
|
|
+const agreement = async (code) => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await agreementAPi.agreement({
|
|
|
|
+ code:code
|
|
|
|
+ });
|
|
|
|
+ book.content.first = data
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+if(book.content.con==''&&type_id.value==1){
|
|
|
|
+ agreement('product')
|
|
|
|
+}else if(book.content.con==''&&type_id.value==2){
|
|
|
|
+ agreement('exploit')
|
|
|
|
+}else if(book.content.con==''&&type_id.value==3){
|
|
|
|
+ agreement('port')
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
//文档类型列表
|
|
//文档类型列表
|
|
const documentType = async () => {
|
|
const documentType = async () => {
|
|
try {
|
|
try {
|
|
@@ -163,6 +207,15 @@ const documentType = async () => {
|
|
} catch (error) {}
|
|
} catch (error) {}
|
|
};
|
|
};
|
|
onMounted(documentType);
|
|
onMounted(documentType);
|
|
|
|
+//跳转搜索页面
|
|
|
|
+const toinput = () => {
|
|
|
|
+ router.push({
|
|
|
|
+ path: "/input",
|
|
|
|
+ query: {
|
|
|
|
+ input2: input2.value,
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
|
|
//文档分类列表
|
|
//文档分类列表
|
|
const category = async () => {
|
|
const category = async () => {
|
|
@@ -171,51 +224,21 @@ const category = async () => {
|
|
type_id: type_id.value,
|
|
type_id: type_id.value,
|
|
});
|
|
});
|
|
book.category = data;
|
|
book.category = data;
|
|
- if (data[0].children) {
|
|
|
|
- if (data[0].children[0].children) {
|
|
|
|
- console.log(111);
|
|
|
|
- categoryname.value = data[0].children[0].children[0].name;
|
|
|
|
- category_id.value = data[0].children[0].children[0].id;
|
|
|
|
- console.log(category_id.value);
|
|
|
|
- // document(category_id.value);
|
|
|
|
- } else {
|
|
|
|
- console.log(222);
|
|
|
|
- categoryname.value = data[0].children[0].name;
|
|
|
|
- category_id.value = data[0].children[0].id;
|
|
|
|
- // document(category_id.value);
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- categoryname.value = data[0].name;
|
|
|
|
- category_id.value = data[0].id;
|
|
|
|
- // document(category_id.value);
|
|
|
|
- }
|
|
|
|
} catch (error) {}
|
|
} catch (error) {}
|
|
};
|
|
};
|
|
onMounted(category);
|
|
onMounted(category);
|
|
-
|
|
|
|
-//文档列表
|
|
|
|
-const document = async (id, name) => {
|
|
|
|
- category_id.value = id;
|
|
|
|
- try {
|
|
|
|
- const { data } = await bookApi.document({
|
|
|
|
- category_id: category_id.value,
|
|
|
|
- });
|
|
|
|
- book.documentlist = data.data;
|
|
|
|
- // categoryname.value = categoryname.value ? categoryname.value : name;
|
|
|
|
- // docu.value = data.data[0].title ||'';
|
|
|
|
- // book.content.con = data.data[0].content;
|
|
|
|
- } catch (error) {
|
|
|
|
- console.log(error);
|
|
|
|
- }
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
const change = (content, title) => {
|
|
const change = (content, title) => {
|
|
book.content.con = content;
|
|
book.content.con = content;
|
|
docu.value = title;
|
|
docu.value = title;
|
|
|
|
+ categoryname.value = lastname.value;
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+:deep(.el-icon svg){
|
|
|
|
+ width: 16px !important;
|
|
|
|
+ height: 16px !important;
|
|
|
|
+}
|
|
.btnline {
|
|
.btnline {
|
|
width: 880px;
|
|
width: 880px;
|
|
height: 1px;
|
|
height: 1px;
|
|
@@ -263,20 +286,11 @@ const change = (content, title) => {
|
|
position: absolute;
|
|
position: absolute;
|
|
left: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
-// :deep(.el-menu-item:hover::before) {
|
|
|
|
-// width: 4px;
|
|
|
|
-// height: 100%;
|
|
|
|
-// background: #0d0fff;
|
|
|
|
-// content: "";
|
|
|
|
-// display: block;
|
|
|
|
-// position: absolute;
|
|
|
|
-// left: 0;
|
|
|
|
-// }
|
|
|
|
:deep(.el-menu-item) {
|
|
:deep(.el-menu-item) {
|
|
position: relative;
|
|
position: relative;
|
|
}
|
|
}
|
|
.left {
|
|
.left {
|
|
- width: 240px;
|
|
|
|
|
|
+ min-width: 260px;
|
|
height: 1200px;
|
|
height: 1200px;
|
|
border-right: 1px solid rgba(151, 151, 151, 0.5);
|
|
border-right: 1px solid rgba(151, 151, 151, 0.5);
|
|
.chan {
|
|
.chan {
|