create project
This commit is contained in:
parent
be37974388
commit
14e5c8f08c
|
@ -13,6 +13,9 @@
|
|||
<font-awesome-icon :icon="['fa', 'list-ul']"/>
|
||||
<span style="padding-left: 5px;">显示全部</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="/project" :route="{name:'project', query:{isCreate:true}}">
|
||||
<el-button type="text">创建项目</el-button>
|
||||
</el-menu-item>
|
||||
</el-submenu>
|
||||
<el-submenu index="4" popper-class="submenu" v-permission="['test_manager', 'test_user']">
|
||||
<template slot="title">测试</template>
|
||||
|
|
|
@ -87,7 +87,19 @@
|
|||
},
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'$route'(to) {
|
||||
let isCreate = this.$route.query.isCreate;
|
||||
if (isCreate) {
|
||||
this.createVisible = true;
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
let isCreate = this.$route.query.isCreate;
|
||||
if (isCreate) {
|
||||
this.createVisible = true;
|
||||
}
|
||||
this.list();
|
||||
},
|
||||
destroyed() {
|
||||
|
|
|
@ -93,6 +93,7 @@ const router = new VueRouter({
|
|||
},
|
||||
{
|
||||
path: "/project",
|
||||
name: 'project',
|
||||
components: {
|
||||
content: MsProject
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue