Commit ae898ca2b062a895a8b005e7ac41c3c0124cbc06
1 parent
b3781c0d4a
Exists in
master
and in
3 other branches
add new pages routes
Showing
5 changed files
with
48 additions
and
6 deletions
Show diff stats
index.html
... | ... | @@ -4,11 +4,11 @@ |
4 | 4 | <meta charset="utf-8"> |
5 | 5 | <meta name="viewport" content="width=device-width,initial-scale=1.0"> |
6 | 6 | <link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700%7CMaterial+Icons' rel="stylesheet"> |
7 | - <script src="https://cdn.bootcss.com/echarts/4.0.4/echarts-en.min.js"></script> | |
7 | + <!-- <script src="https://cdn.bootcss.com/echarts/4.0.4/echarts-en.min.js"></script> --> | |
8 | 8 | <title>School Management</title> |
9 | - <link rel="shortcut icon" href="/static/ana.png" type="image/x-icon"> | |
9 | + <!-- <link rel="shortcut icon" href="/static/ana.png" type="image/x-icon"> --> | |
10 | 10 | <meta name="description" content="School Management"> |
11 | - <meta name="keywords" content="admin, dashboard, webapp, template, responsive, material, bootstrap, crm, uikit, framework, backend, app, widgets, premium, file manamger, mail, vue, vuetify, echarts"> | |
11 | + <!-- <meta name="keywords" content="admin, dashboard, webapp, template, responsive, material, bootstrap, crm, uikit, framework, backend, app, widgets, premium, file manamger, mail, vue, vuetify, echarts"> --> | |
12 | 12 | <link href="./static/css/custom.css" rel="stylesheet" /> |
13 | 13 | </head> |
14 | 14 | <body> | ... | ... |
src/App.vue
src/Services/http.js
src/api/menu.js
1 | 1 | const Menu = [ |
2 | 2 | // { header: 'Apps' }, |
3 | 3 | { |
4 | + title: 'Class', | |
5 | + // group: 'apps', | |
6 | + name: 'addclass', | |
7 | + icon: 'local_library', | |
8 | + }, | |
9 | + { | |
10 | + title: 'Section', | |
11 | + // group: 'apps', | |
12 | + name: 'section', | |
13 | + icon: 'view_module', | |
14 | + }, | |
15 | + { | |
4 | 16 | title: 'Teachers', |
5 | 17 | // group: '', |
6 | 18 | name: 'teachers', |
7 | 19 | icon: 'group', |
8 | 20 | }, |
9 | - | |
10 | 21 | { |
11 | 22 | title: 'Students', |
12 | 23 | // group: 'apps', |
13 | 24 | name: 'Students', |
14 | 25 | icon: 'school', |
15 | 26 | }, |
27 | + { | |
28 | + title: 'Event', | |
29 | + name: 'event', | |
30 | + icon: 'event_available', | |
31 | + }, | |
32 | + { | |
33 | + title: 'News', | |
34 | + name: 'news', | |
35 | + icon: 'notification_important', | |
36 | + }, | |
37 | + { | |
38 | + title: 'Reminder', | |
39 | + name: 'reminder', | |
40 | + icon: 'alarm_add', | |
41 | + }, | |
42 | + { | |
43 | + title: 'Time Table', | |
44 | + name: 'timeTable', | |
45 | + icon: 'event_note', | |
46 | + }, | |
47 | + // { | |
48 | + // title: 'Notification', | |
49 | + // name: 'notification', | |
50 | + // icon: 'notifications_active', | |
51 | + // }, | |
16 | 52 | ]; |
17 | 53 | |
18 | 54 | ... | ... |
static/css/custom.css