1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| <template>
| <div>
| <el-row>
| <globalTitle />
| </el-row>
| </div>
| </template>
|
| <script>
| import globalTitle from '../globalTitle.vue'
| export default {
| name: 'introduce',
| components:{
| globalTitle
| },
| data() {
| return{
| menuList: [
| {name: '简介'},
| {name: '章程'},
| {name: '组织机构'},
| {name: '工作职责'},
| {name: '专职人员'}
| ]
| }
| }
| }
| </script>
| <style lang="less" scoped>
| .el-header {
| display: flex;
| justify-content: space-between;
| background-color: rgb(85, 81, 82);
| font-size: 20px;
| line-height: 60px;
| padding: 0px 4px;
| }
| .el-aside {
| background-color: rgb(242, 243, 245);
| .el-menu {
| border-right: none;
| }
| }
| </style>
|
|