Commit ae898ca2b062a895a8b005e7ac41c3c0124cbc06

Authored by Neeraj Sharma
1 parent b3781c0d4a

add new pages routes

... ... @@ -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>
... ...
... ... @@ -9,7 +9,7 @@
9 9 <router-view></router-view>
10 10 </div>
11 11 <!-- App Footer -->
12   - <v-footer height="auto" class="grey darken-2 pa-3 app--footer">
  12 + <v-footer height="auto" class="fixcolors pa-3 app--footer">
13 13 </v-footer>
14 14 </v-content>
15 15 </v-app>
... ...
src/Services/http.js
... ... @@ -3,7 +3,7 @@ import store from &#39;@/store/store&#39;
3 3  
4 4 export default () => {
5 5 return axios.create({
6   - baseURL:'http://192.168.2.203:8001/v1',
  6 + baseURL:'http://192.168.2.221:3002/v1',
7 7 headers: {
8 8 Authorization: `Bearer ${store.state.token}`
9 9 }
... ...
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
... ... @@ -5,3 +5,9 @@
5 5 .custom-input-align input {
6 6 text-align: center !important;
7 7 }
  8 +.fixcolor {
  9 + background:linear-gradient(90deg,#f58753 30%,#f15e5f 110%)
  10 +}
  11 +.fixcolors{
  12 + background:#39b982 !important;
  13 +}
8 14 \ No newline at end of file
... ...