refactor: 代码模版菜单优化 (#6379)

Co-authored-by: shiziyuan9527 <yuhao.li@fit2cloud.com>
This commit is contained in:
metersphere-bot 2021-09-23 11:12:05 +08:00 committed by GitHub
parent 701b9751f8
commit 7e9c1e6d01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -16,7 +16,7 @@
<el-collapse-transition>
<div v-if="menu.open">
<div v-for="(child, key) in menu.children" :key="key">
<div v-for="(child, key) in menu.children" :key="key" class="func-div">
<el-link :disabled="child.disabled" @click="handleClick(child)" class="func-link">{{child.title}}</el-link>
</div>
</div>
@ -197,10 +197,17 @@ export default {
}
.func-link {
color: #935aa1;
margin-left: 18px;
}
.func-div >>> .func-link {
color: #935aa1;
}
.func-div >>> .func-link:hover {
color: #935aa1;
}
.link-type {
font-weight: bold;
font-size: 14px;