|
@@ -28,12 +28,11 @@
|
|
|
:unique-opened="true"
|
|
|
v-for="(item, idx) in book.category"
|
|
|
:key="idx"
|
|
|
- default-active="1"
|
|
|
class="el-menu-vertical-demo"
|
|
|
@open="document(item.id, item.name)"
|
|
|
@close="handleClose"
|
|
|
>
|
|
|
- <el-sub-menu index="1">
|
|
|
+ <el-sub-menu :index="idx">
|
|
|
<template #title>
|
|
|
<div>
|
|
|
<span>{{ item.name }}</span>
|
|
@@ -44,23 +43,25 @@
|
|
|
@click="document(item2.id, item2.name)"
|
|
|
v-for="(item2, ind) in item.children"
|
|
|
:key="ind"
|
|
|
- index="1-4"
|
|
|
+ :index="idx + '*' + 1"
|
|
|
>
|
|
|
<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"
|
|
|
+ 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="'1' + index"
|
|
|
+ :index="
|
|
|
+ idx + '-' + idx + 1 + '-' + ind + 1 + '-' + inx + 1
|
|
|
+ "
|
|
|
>{{ child.title }}</el-menu-item
|
|
|
>
|
|
|
</el-sub-menu>
|
|
@@ -70,7 +71,7 @@
|
|
|
v-for="(child, index) in book.documentlist"
|
|
|
:key="index"
|
|
|
@click="change(e, child.content, child.title)"
|
|
|
- :index="'1' + index"
|
|
|
+ :index="idx+'-'+ind +'-' + index"
|
|
|
>{{ child.title }}</el-menu-item
|
|
|
>
|
|
|
</template>
|
|
@@ -81,7 +82,7 @@
|
|
|
v-for="(child, index) in book.documentlist"
|
|
|
:key="index"
|
|
|
@click="change(e, child.content, child.title)"
|
|
|
- :index="'1' + index"
|
|
|
+ :index="idx + '-' + index + 1"
|
|
|
>{{ child.title }}</el-menu-item
|
|
|
>
|
|
|
</template>
|
|
@@ -128,8 +129,8 @@ const topchange = (name, index, id) => {
|
|
|
changefont.value = name;
|
|
|
changeindex.value = index;
|
|
|
type_id.value = id;
|
|
|
- docu.value = ''
|
|
|
- categoryname.value = ''
|
|
|
+ docu.value = "";
|
|
|
+ categoryname.value = "";
|
|
|
book.documentlist = [];
|
|
|
book.content.con = "";
|
|
|
category();
|
|
@@ -164,14 +165,14 @@ const category = async () => {
|
|
|
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 );
|
|
|
-
|
|
|
+ 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;
|
|
|
- console.log(category_id.value );
|
|
|
+ console.log(category_id.value);
|
|
|
document(category_id.value);
|
|
|
}
|
|
|
} else {
|
|
@@ -180,7 +181,6 @@ const category = async () => {
|
|
|
category_id.value = data[0].id;
|
|
|
document(category_id.value);
|
|
|
}
|
|
|
-
|
|
|
} catch (error) {}
|
|
|
};
|
|
|
onMounted(category);
|
|
@@ -299,7 +299,7 @@ const change = (e, content, title) => {
|
|
|
margin-top: 24px;
|
|
|
}
|
|
|
.top {
|
|
|
- width: 1920px;
|
|
|
+ // width: 1920px;
|
|
|
height: 60px;
|
|
|
background: #ffffff;
|
|
|
box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.2);
|