|
@@ -4,8 +4,13 @@
|
|
|
<Header />
|
|
|
<Nav nav-value="书籍预览" />
|
|
|
</template>
|
|
|
- <template>
|
|
|
+ <template v-else>
|
|
|
<div class="bookname">
|
|
|
+ <i
|
|
|
+ style="cursor: pointer; margin-right: 5px"
|
|
|
+ class="el-icon-arrow-left"
|
|
|
+ @click="back"
|
|
|
+ ></i>
|
|
|
{{ name }}
|
|
|
</div>
|
|
|
</template>
|
|
@@ -127,6 +132,9 @@ export default {
|
|
|
_this.name = this.$route.query.name;
|
|
|
},
|
|
|
methods: {
|
|
|
+ back(){
|
|
|
+ this.$router.go(-1)
|
|
|
+ },
|
|
|
changeTreeData(val) {
|
|
|
this.FatherTreeData = JSON.parse(JSON.stringify(val));
|
|
|
},
|
|
@@ -208,7 +216,6 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
align-items: center;
|
|
|
box-sizing: border-box;
|
|
|
padding: 0 46px;
|