|
@@ -1,15 +1,20 @@
|
|
|
<template>
|
|
|
<div class="top flex">
|
|
|
<div class="content flex">
|
|
|
- <div class="item">文档首页</div>
|
|
|
- <div class="item active">产品文档</div>
|
|
|
- <div class="item">开发文档</div>
|
|
|
- <div class="item">接口文档</div>
|
|
|
+ <div
|
|
|
+ @click="topchange(item.name, idx, item.id)"
|
|
|
+ class="item"
|
|
|
+ :class="changeindex == idx ? 'active' : ''"
|
|
|
+ v-for="(item, idx) in book.list"
|
|
|
+ :key="idx"
|
|
|
+ >
|
|
|
+ {{ item.name }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="content">
|
|
|
+ <div class="content" style="display: flex">
|
|
|
<div class="left">
|
|
|
- <div class="chan">产品文档</div>
|
|
|
+ <div class="chan">{{ changefont }}</div>
|
|
|
<el-input
|
|
|
v-model="input2"
|
|
|
style="width: 80%"
|
|
@@ -19,43 +24,204 @@
|
|
|
<div class="menu">
|
|
|
<el-col :span="12">
|
|
|
<el-menu
|
|
|
- default-active="2"
|
|
|
+ :default-openeds="book.category"
|
|
|
+ :unique-opened="true"
|
|
|
+ v-for="(item, idx) in book.category"
|
|
|
+ :key="idx"
|
|
|
+ default-active="1"
|
|
|
class="el-menu-vertical-demo"
|
|
|
- @open="handleOpen"
|
|
|
+ @open="document(item.id, item.name)"
|
|
|
@close="handleClose"
|
|
|
>
|
|
|
<el-sub-menu index="1">
|
|
|
<template #title>
|
|
|
- <span>Navigator One</span>
|
|
|
+ <div>
|
|
|
+ <span>{{ item.name }}</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="item.children">
|
|
|
+ <el-sub-menu
|
|
|
+ @click="document(item2.id, item2.name)"
|
|
|
+ v-for="(item2, ind) in item.children"
|
|
|
+ :key="ind"
|
|
|
+ index="1-4"
|
|
|
+ >
|
|
|
+ <template #title>{{ item2.name }}</template>
|
|
|
+
|
|
|
+ <template v-if="item2.children">
|
|
|
+ <el-sub-menu
|
|
|
+ @click="document(item3.id, item3.name)"
|
|
|
+ v-for="(item3, ind) in item2.children"
|
|
|
+ :key="ind"
|
|
|
+ index="1-4"
|
|
|
+ >
|
|
|
+ <template #title>{{ item3.name }}</template>
|
|
|
+ <el-menu-item
|
|
|
+ v-for="(child, inx) in book.documentlist"
|
|
|
+ :key="inx"
|
|
|
+ @click="change(e, child.content, child.title)"
|
|
|
+ :index="'1' + index"
|
|
|
+ >{{ child.title }}</el-menu-item
|
|
|
+ >
|
|
|
+ </el-sub-menu>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-menu-item
|
|
|
+ v-for="(child, index) in book.documentlist"
|
|
|
+ :key="index"
|
|
|
+ @click="change(e, child.content, child.title)"
|
|
|
+ :index="'1' + index"
|
|
|
+ >{{ child.title }}</el-menu-item
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-sub-menu>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-menu-item
|
|
|
+ v-for="(child, index) in book.documentlist"
|
|
|
+ :key="index"
|
|
|
+ @click="change(e, child.content, child.title)"
|
|
|
+ :index="'1' + index"
|
|
|
+ >{{ child.title }}</el-menu-item
|
|
|
+ >
|
|
|
</template>
|
|
|
- <el-menu-item @click="change" index="1-1">item one</el-menu-item>
|
|
|
- <el-menu-item index="1-2">item two</el-menu-item>
|
|
|
- <el-menu-item index="1-3">item three</el-menu-item>
|
|
|
</el-sub-menu>
|
|
|
</el-menu>
|
|
|
</el-col>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- <div class="right" >
|
|
|
+ <div v-html="book.content.con"></div>
|
|
|
+ </div> -->
|
|
|
+ <div class="right">
|
|
|
+ <div style="display: flex; align-items: center; column-gap: 6px">
|
|
|
+ <span class="topsm">{{ changefont }}</span>
|
|
|
+ <el-icon><ArrowRight /></el-icon>
|
|
|
+ <span class="topsm">{{ categoryname }}</span>
|
|
|
+ <el-icon><ArrowRight /></el-icon>
|
|
|
+ <span class="topsm">{{ docu }}</span>
|
|
|
+ </div>
|
|
|
+ <div class="bigtitle">{{ docu }}</div>
|
|
|
+ <div class="btnline"></div>
|
|
|
+ <div v-html="book.content.con"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { useRouter } from "vue-router";
|
|
|
-import { onMounted, ref } from "vue";
|
|
|
-import { Calendar, Search } from "@element-plus/icons-vue";
|
|
|
-onMounted(() => {});
|
|
|
+import { useRouter, useRoute } from "vue-router";
|
|
|
+import { onMounted, ref, reactive } from "vue";
|
|
|
+import { Calendar, Search, ArrowRight } from "@element-plus/icons-vue";
|
|
|
+import * as bookApi from "../../api/document";
|
|
|
+const route = useRoute();
|
|
|
+// const router = useRouter()
|
|
|
+const changeindex = ref(0);
|
|
|
+const changefont = ref("产品文档");
|
|
|
+const type_id = ref(1);
|
|
|
+changefont.value = route.query.name;
|
|
|
+changeindex.value = route.query.index;
|
|
|
+type_id.value = route.query.id;
|
|
|
+const categoryname = ref("");
|
|
|
+const docu = ref("");
|
|
|
+//更换文档
|
|
|
+const topchange = (name, index, id) => {
|
|
|
+ changefont.value = name;
|
|
|
+ changeindex.value = index;
|
|
|
+ type_id.value = id;
|
|
|
+ book.documentlist = [];
|
|
|
+ category();
|
|
|
+};
|
|
|
+
|
|
|
+const book = reactive({
|
|
|
+ list: [],
|
|
|
+ category: [],
|
|
|
+ documentlist: [],
|
|
|
+ content: {
|
|
|
+ con: "",
|
|
|
+ },
|
|
|
+});
|
|
|
+//文档类型列表
|
|
|
+const documentType = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await bookApi.documentType({});
|
|
|
+ book.list = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(documentType);
|
|
|
+const category_id = ref("");
|
|
|
+//文档分类列表
|
|
|
+const category = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await bookApi.category({
|
|
|
+ type_id: type_id.value,
|
|
|
+ });
|
|
|
+ book.category = data;
|
|
|
+ categoryname.value = data[0].name;
|
|
|
+ category_id.value = data[0].id;
|
|
|
+ document();
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+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);
|
|
|
+ }
|
|
|
+};
|
|
|
+// onMounted(document);
|
|
|
+
|
|
|
const handleOpen = (key, keyPath) => {
|
|
|
console.log(key, keyPath);
|
|
|
};
|
|
|
-const change = (e) => {
|
|
|
- console.log(e);
|
|
|
+const content = ref("");
|
|
|
+const change = (e, content, title) => {
|
|
|
+ book.content.con = content;
|
|
|
+ docu.value = title;
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-// ::v-deep .el-col-12 {
|
|
|
-// width: 100% !important;
|
|
|
-// }
|
|
|
+.btnline {
|
|
|
+ width: 880px;
|
|
|
+ height: 1px;
|
|
|
+ background: rgba(151, 151, 151, 0.2);
|
|
|
+ margin-bottom: 25px;
|
|
|
+}
|
|
|
+.topsm {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #2f2f2f;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.bigtitle {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ font-size: 30px;
|
|
|
+ color: #2f2f2f;
|
|
|
+ line-height: 42px;
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 38px;
|
|
|
+ margin-bottom: 36px;
|
|
|
+}
|
|
|
+.right {
|
|
|
+ margin-left: 40px;
|
|
|
+ flex: 1;
|
|
|
+ min-height: 80vh;
|
|
|
+}
|
|
|
:deep(.el-col-12) {
|
|
|
max-width: 100% !important;
|
|
|
}
|
|
@@ -72,6 +238,15 @@ const change = (e) => {
|
|
|
position: absolute;
|
|
|
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) {
|
|
|
position: relative;
|
|
|
}
|