forked from nsjcy/frontEnd/nsjcy

xuxj
2020-04-26 8b3fbce45058894a76aefbf11b3a199f60d487d6
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
import icon0101 from '../asset/icons/index-01-01.svg';
import icon0102 from '../asset/icons/index-01-02.svg';
import icon0103 from '../asset/icons/index-01-03.svg';
import icon0201 from '../asset/icons/index-02-01.svg';
import icon0202 from '../asset/icons/index-02-02.svg';
import icon0203 from '../asset/icons/index-02-03.svg';
import icon0301 from '../asset/icons/index-03-01.svg';
import icon0302 from '../asset/icons/index-03-02.svg';
 
export default [{
  head: '会议操作',
  entries: [{
    icon: icon0101,
    text: '会议预览',
    path: '/preview'
  }, {
    icon: icon0102,
    text: '我的会议',
    path: '/mine'
  }, {
    icon: icon0103,
    text: '扫一扫',
    path: '/scan'
  }]
}, {
  head: '申请操作',
  entries: [{
    icon: icon0201,
    text: '会议申请',
    path: '/apply/new'
  }, {
    icon: icon0202,
    text: '申请记录',
    path: '/record'
  }, {
    icon: icon0203,
    text: '会议考勤',
    path: '/attend'
  }]
}, {
  head: '审批操作',
  entries: [{
    icon: icon0301,
    text: '审批调控',
    path: '/audit-list'
  }, {
    icon: icon0302,
    text: '会议室管理',
    path: '/repair'
  }]
}];