|
@@ -22,78 +22,77 @@
|
|
|
:prefix-icon="Search"
|
|
|
/>
|
|
|
<div class="menu">
|
|
|
- <el-col :span="12">
|
|
|
- <el-menu
|
|
|
- :default-openeds="book.category"
|
|
|
- :unique-opened="true"
|
|
|
+ <el-menu
|
|
|
+ class="el-menu-vertical-demo"
|
|
|
+ @open="handleOpen"
|
|
|
+ @close="closeb"
|
|
|
+ :unique-opened="true"
|
|
|
+ >
|
|
|
+ <el-sub-menu
|
|
|
v-for="(item, idx) in book.category"
|
|
|
:key="idx"
|
|
|
- class="el-menu-vertical-demo"
|
|
|
- @open="document(item.id, item.name)"
|
|
|
- @close="handleClose"
|
|
|
+ :index="String(item.id)"
|
|
|
>
|
|
|
- <el-sub-menu :index="idx">
|
|
|
- <template #title>
|
|
|
- <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="idx + '*' + 1"
|
|
|
- >
|
|
|
- <template #title>{{ item2.name }}</template>
|
|
|
+ <template #title>
|
|
|
+ <div>
|
|
|
+ <span>{{ item.name }}</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="item.children">
|
|
|
+ <el-sub-menu
|
|
|
+ v-for="(item2, ind) in item.children"
|
|
|
+ :key="ind"
|
|
|
+ :index="item.id + '-' + item2.id"
|
|
|
+ >
|
|
|
+ <template #title>{{ item2.name }}</template>
|
|
|
|
|
|
- <template v-if="item2.children">
|
|
|
- <el-sub-menu
|
|
|
- @click="document(item3.id, item3.name)"
|
|
|
- v-for="(item3, inda) in item2.children"
|
|
|
- :key="inda"
|
|
|
- :index="idx+'*'+ind + '*' + 1"
|
|
|
- >
|
|
|
- <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="
|
|
|
- idx + '-' + idx + 1 + '-' + ind + 1 + '-' + inx + 1
|
|
|
- "
|
|
|
- >{{ child.title }}</el-menu-item
|
|
|
- >
|
|
|
- </el-sub-menu>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
+ <template v-if="item2.children">
|
|
|
+ <el-sub-menu
|
|
|
+ v-for="(item3, inda) in item2.children"
|
|
|
+ :key="inda"
|
|
|
+ :index="item.id + '-' + item2.id + '-' + item3.id"
|
|
|
+ >
|
|
|
+ <template #title>{{ item3.name }}</template>
|
|
|
<el-menu-item
|
|
|
- v-for="(child, index) in book.documentlist"
|
|
|
- :key="index"
|
|
|
- @click="change(e, child.content, child.title)"
|
|
|
- :index="idx+'-'+ind +'-' + index"
|
|
|
+ v-for="(child, inx) in book.documentlist"
|
|
|
+ :key="inx"
|
|
|
+ @click="change(child.content, child.title)"
|
|
|
+ :index="
|
|
|
+ item.id +
|
|
|
+ '-' +
|
|
|
+ item2.id +
|
|
|
+ '-' +
|
|
|
+ item3.id +
|
|
|
+ '-' +
|
|
|
+ child.id
|
|
|
+ "
|
|
|
>{{ 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="idx + '-' + index + 1"
|
|
|
- >{{ child.title }}</el-menu-item
|
|
|
- >
|
|
|
- </template>
|
|
|
- </el-sub-menu>
|
|
|
- </el-menu>
|
|
|
- </el-col>
|
|
|
+ </el-sub-menu>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-menu-item
|
|
|
+ v-for="(child, index) in book.documentlist"
|
|
|
+ :key="index"
|
|
|
+ @click="change(child.content, child.title)"
|
|
|
+ :index="item.id + '-' + item2.id + '-' + child.id"
|
|
|
+ >{{ 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"
|
|
|
+ :index="item.id + '-' + child.id"
|
|
|
+ >{{ child.title }}</el-menu-item
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-sub-menu>
|
|
|
+ </el-menu>
|
|
|
</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>
|
|
@@ -124,6 +123,10 @@ changeindex.value = route.query.index;
|
|
|
type_id.value = route.query.id;
|
|
|
const categoryname = ref("");
|
|
|
const docu = ref("");
|
|
|
+const category_id = ref("");
|
|
|
+const input2 = ref("");
|
|
|
+
|
|
|
+category_id.value = route.query.category_id;
|
|
|
//更换文档
|
|
|
const topchange = (name, index, id) => {
|
|
|
changefont.value = name;
|
|
@@ -144,6 +147,14 @@ const book = reactive({
|
|
|
con: "",
|
|
|
},
|
|
|
});
|
|
|
+
|
|
|
+const handleOpen = (key, keyPath) => {
|
|
|
+ console.log("key1", key);
|
|
|
+ console.log("key", key.split("-").pop());
|
|
|
+ document(key.split("-").pop());
|
|
|
+};
|
|
|
+const closeb = (key, keyPath) => {};
|
|
|
+
|
|
|
//文档类型列表
|
|
|
const documentType = async () => {
|
|
|
try {
|
|
@@ -152,7 +163,7 @@ const documentType = async () => {
|
|
|
} catch (error) {}
|
|
|
};
|
|
|
onMounted(documentType);
|
|
|
-const category_id = ref("");
|
|
|
+
|
|
|
//文档分类列表
|
|
|
const category = async () => {
|
|
|
try {
|
|
@@ -166,20 +177,17 @@ const category = async () => {
|
|
|
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);
|
|
|
+ // document(category_id.value);
|
|
|
} else {
|
|
|
console.log(222);
|
|
|
categoryname.value = data[0].children[0].name;
|
|
|
category_id.value = data[0].children[0].id;
|
|
|
- console.log(category_id.value);
|
|
|
- document(category_id.value);
|
|
|
+ // document(category_id.value);
|
|
|
}
|
|
|
} else {
|
|
|
- console.log(333);
|
|
|
categoryname.value = data[0].name;
|
|
|
category_id.value = data[0].id;
|
|
|
- document(category_id.value);
|
|
|
+ // document(category_id.value);
|
|
|
}
|
|
|
} catch (error) {}
|
|
|
};
|
|
@@ -193,20 +201,15 @@ const document = async (id, name) => {
|
|
|
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;
|
|
|
+ // 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 content = ref("");
|
|
|
-const change = (e, content, title) => {
|
|
|
+const change = (content, title) => {
|
|
|
book.content.con = content;
|
|
|
docu.value = title;
|
|
|
};
|