左侧菜单和页面内容展示

This commit is contained in:
暮光:城中城
2019-05-30 22:45:22 +08:00
parent f5249f39e1
commit 7f4f3fd432
16 changed files with 5413 additions and 3 deletions

View File

@@ -139,6 +139,8 @@
<script>
import global from './common/config/global'
import toast from './common/lib/common/toast'
var app;
export default {
data() {
@@ -208,7 +210,13 @@
alert(msg)
},
createWiki() {
if (app.nowSpaceId > 0) {
this.newPageId = "";
this.newPageTitle = "";
this.rightContentType = 2;
} else {
toast.warn("请先选择或创建空间");
}
},
searchByKeywords() {
this.sendMsgToParent();
@@ -222,6 +230,8 @@
console.log("点击节点:", data);
app.lastClickNode = data;
app.urlParamPageId = app.lastClickNode.id;
var pageId = app.lastClickNode.id;
this.$router.push({path: '/page/show', query: {pageId: pageId}});
},
handleNodeExpand(node) {
if (node.children.length > 0 && node.children[0].needLoad) {
@@ -356,7 +366,7 @@
} else if (command == 'aboutDoc') {
app.aboutDialogVisible = true;
} else {
// Toast.notOpen();
toast.notOpen();
}
},
userSignOut() {
@@ -398,6 +408,9 @@
onNewSpaceCancel() {
this.newSpaceDialogVisible = false;
},
init() {
},
}
}
</script>