parent
7d1bf9814e
commit
f4fbb304d3
13 changed files with 197 additions and 87 deletions
@ -0,0 +1,35 @@ |
||||
<template> |
||||
<div class="menu-child"> |
||||
<template v-for="item in this.menuList"> |
||||
<el-submenu :key="item.id" :index="item.id" v-if="item.children && item.children.length"> |
||||
<template slot="title"> |
||||
<span slot="title">{{item.columnName}}</span> |
||||
</template> |
||||
<menuTree :menuList="item.children"></menuTree> |
||||
</el-submenu> |
||||
<el-menu-item :key="item.id" :index="item.id" v-else> |
||||
<span slot="title">{{item.columnName}}</span> |
||||
</el-menu-item> |
||||
</template> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'menuTree', |
||||
props: { |
||||
menuList: { |
||||
type: Array, |
||||
default: [] |
||||
} |
||||
}, |
||||
data () { |
||||
return {} |
||||
}, |
||||
mounted () {}, |
||||
methods: {} |
||||
} |
||||
</script> |
||||
<style lang="scss" scoped> |
||||
|
||||
</style> |
@ -0,0 +1,61 @@ |
||||
.mce-content-body:not([dir=rtl]) blockquote { |
||||
padding: 8px 15px; |
||||
border-left: 0; |
||||
background-color: #ededed; |
||||
} |
||||
.tiny-wrap { |
||||
width: 900px; |
||||
margin: 0 auto; |
||||
} |
||||
.tiny-wrap blockquote p { |
||||
margin: 0; |
||||
font-style: italic; |
||||
} |
||||
.tiny-wrap .block { |
||||
margin-bottom: 20px; |
||||
overflow: hidden; |
||||
} |
||||
.tiny-wrap .block .fl { |
||||
float: left; |
||||
margin: 0 20px 0 0; |
||||
} |
||||
.tiny-wrap .block .fr { |
||||
float: right; |
||||
margin: 0 0 0 20px; |
||||
} |
||||
.tiny-wrap .block p { |
||||
margin: 0 0 10px; |
||||
font-size: 19px; |
||||
font-family: PingFangSC-Regular, PingFang SC; |
||||
font-weight: 400; |
||||
color: #101010; |
||||
line-height: 32px; |
||||
} |
||||
.tiny-wrap .block .tiny-title { |
||||
margin: 10px 0; |
||||
font-size: 24px; |
||||
font-family: PingFangSC-Medium, PingFang SC; |
||||
font-weight: 500; |
||||
color: #101010; |
||||
line-height: 32px; |
||||
} |
||||
.tiny-wrap .quote { |
||||
padding: 15px; |
||||
font-size: 14px; |
||||
font-style: italic; |
||||
border: 1px solid #e3e3e3; |
||||
background-color: #f1f1f1; |
||||
} |
||||
.tiny-wrap .img-wrap { |
||||
text-align: center; |
||||
} |
||||
.tiny-wrap .img-wrap img { |
||||
max-width: 600px; |
||||
max-height: 600px; |
||||
} |
||||
.tiny-wrap .block .img-des { |
||||
margin: 10px 0 0; |
||||
font-size: 14px; |
||||
color: #8d8d8d; |
||||
text-align: center; |
||||
} |
Loading…
Reference in new issue