Commit 8bb9174c authored by 黄奎's avatar 黄奎

页面修改

parent 141dbb79
...@@ -316,11 +316,23 @@ ...@@ -316,11 +316,23 @@
<span>{{childItem.MenuName}}</span> <span>{{childItem.MenuName}}</span>
</template> </template>
<el-menu-item-group> <el-menu-item-group>
<el-menu-item :index="thirdChild.MenuId+''" @click.native="clickMenu(thirdChild,secondItem)" <template v-for="(thirdChild,thirdIndex) in childItem.ThirdList">
v-for="(thirdChild,thirdIndex) in childItem.ThirdList" :key="thirdIndex"> <template v-if="thirdChild.MenuUrl=='/schoolPoster'">
<div class="checkBlock" :class="defaultActive==thirdChild.MenuId?'isActive':''"> <el-menu-item v-if="currentUser.IsOpenSchool==1" :index="thirdChild.MenuId+''" :key="thirdIndex"
{{thirdChild.MenuName}}</div> @click.native="clickMenu(thirdChild,secondItem)">
</el-menu-item> <div class="checkBlock" :class="defaultActive==thirdChild.MenuId?'isActive':''">
{{thirdChild.MenuName}}</div>
</el-menu-item>
</template>
<template v-else>
<el-menu-item :index="thirdChild.MenuId+''" :key="thirdIndex"
@click.native="clickMenu(thirdChild,secondItem)">
<div class="checkBlock" :class="defaultActive==thirdChild.MenuId?'isActive':''">
{{thirdChild.MenuName}}
</div>
</el-menu-item>
</template>
</template>
</el-menu-item-group> </el-menu-item-group>
</el-submenu> </el-submenu>
<template v-else> <template v-else>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment