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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| /*
| * @Author: Morpheus
| * @Name: 行政办公
| * @Date: 2021-11-15 17:10:23
| * @Last Modified by: Morpheus
| * @Last Modified time: 2021-11-15 17:12:12
| *
| /
| <template>
| <div>
| <arc-nav-bar :navList="list"
| :title="title"></arc-nav-bar>
| </div>
| </template>
|
| <script>
| export default {
| data () {
| return {
| title: '行政办公',
| list: []
| }
| },
| created () {
| this.list = [
| {
| navTitle: '学校办公室',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '组织部',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '宣传部',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '博物馆',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '统战部',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '纪委办公室',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '巡查办公室',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '学生工作部(处)/团委',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '研究生工作部',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '保卫部',
| icon: '/img/navicon/tag.png'
| },
| {
| navTitle: '工会',
| icon: '/img/navicon/tag.png'
| }
| ]
| },
| methods: {
| closeModel () {
| this.$store.dispatch('delVisitedViews', this.$route)
| this.$router.push('/pcLayout/default')
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|