家里的样式

This commit is contained in:
zhangdingyu
2019-09-18 09:34:02 +08:00
commit 02d1678fff
681 changed files with 133918 additions and 0 deletions

16
src/router/getRouter.js Normal file
View File

@@ -0,0 +1,16 @@
export default function fn(data, pid) {
const result = []
let temp
for (let i = 0; i < data.length; i++) {
if (data[i].pid === pid) {
const obj = { 'path': data[i].path, 'component': () => import(`@/views${(data[i].component)}`), 'redirect': data[i].redirect, alwaysShow: true, 'name': data[i].name, meta: { 'title': data[i].title, 'icon': data[i].icon }}
temp = fn(data, data[i].id)
if (temp.length > 0) {
obj.children = temp
}
result.push(obj)
}
}
return result
}

175
src/router/index.js Normal file
View File

@@ -0,0 +1,175 @@
import Vue from 'vue'
import Router from 'vue-router'
// in development-env not use lazy-loading, because lazy-loading too many pages will cause webpack hot update too slow. so only in production use lazy-loading;
// detail: https://panjiachen.github.io/vue-element-admin-site/#/lazy-loading
Vue.use(Router)
/* Layout */
import Layout from '../views/layout/Layout'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
* alwaysShow: true if set true, will always show the root menu, whatever its child routes length
* if not set alwaysShow, only more than one route under the children
* it will becomes nested mode, otherwise not show the root menu
* redirect: noredirect if `redirect:noredirect` will no redirect in the breadcrumb
* name:'router-name' the name is used by <keep-alive> (must set!!!)
* meta : {
title: 'title' the name show in submenu and breadcrumb (recommend set)
icon: 'svg-name' the icon show in the sidebar,
}
**/
export const constantRouterMap = [
{ path: '/login', component: () => import('@/views/login/index'), hidden: true },
{ path: '/404', component: () => import('@/views/404'), hidden: true },
{
path: '可视化中心',
component: Layout,
meta: { title: '可视化中心', icon: 'MaterialManagement' },
children: [
{
path: 'http://192.168.1.231:8005/#/TVF',
meta: { title: '设备运行监控', icon: 'MaterialManagement' }
},
{
path: 'http://192.168.1.231:8005/#/TVA',
meta: { title: 'MES工作站', icon: 'MaterialManagement' }
},
{
path: 'http://192.168.1.231:8005/#/TVD',
meta: { title: '设备状态监控', icon: 'MaterialManagement' }
},
{
path: 'http://192.168.1.231:8005/#/TVG',
meta: { title: '项目进度监控', icon: 'MaterialManagement' }
},
{
path: 'http://192.168.1.231:8005/#/TVB',
meta: { title: 'ANDON', icon: 'MaterialManagement' }
},
{
path: 'http://192.168.1.232:8001/webpage/GJLED.html',
meta: { title: 'LED屏幕', icon: 'MaterialManagement' }
}
]
},
{
path: '/',
component: Layout,
redirect: '/dashboard',
name: 'Dashboard',
hidden: true,
children: [{
path: 'dashboard',
component: () => import('@/views/dashboard/index')
}]
}
// {
// path: '/ProjectManagement',
// component: Layout,
// children: [
// {
// path: 'summarize',
// name: 'summarize',
// component: () => import('@/views/ProjectManagement/summarize'),
// meta: { title: '项目总结', icon: 'summarize' }
// }
// ]
// },
// {
// path: '/ProjectManagement',
// component: Layout,
// children: [
// {
// path: 'assess',
// name: 'assess',
// component: () => import('@/views/ProjectManagement/assess'),
// meta: { title: '项目考核', icon: 'assess' }
// }
// ]
// },
// {
// path: '/ProjectManagement',
// component: Layout,
// children: [
// {
// path: 'progress',
// name: 'progress',
// component: () => import('@/views/ProjectManagement/progress'),
// meta: { title: '项目进展', icon: 'progress' }
// }
// ]
// }
]
export default new Router({
// mode: 'history', //后端支持可开
scrollBehavior: () => ({ y: 0 }),
routes: constantRouterMap
})
export const asyncRouterMap = [
{
path: '/BasicData',
component: Layout,
children: [
{
path: 'PersonnelManagement',
name: 'PersonnelManagement',
component: () => import('@/views/BasicData/PersonnelManagement'),
meta: { title: '人员管理', icon: 'PersonnelManagement' }
}
]
},
{
path: '/BasicData',
component: Layout,
children: [
{
path: 'UserRightsManagement',
name: 'UserRightsManagement',
component: () => import('@/views/BasicData/UserRightsManagement'),
meta: { title: '用户权限管理', icon: 'UserRightsManagement' }
}
]
},
{
path: '/TechnologyCenter',
component: Layout,
children: [
{
path: 'ImportParts',
name: 'ImportParts',
component: () => import('@/views/TechnologyCenter/ImportParts'),
meta: { title: '零件导入', icon: 'ImportParts' }
}
]
},
{
path: '/QueryParts',
component: Layout,
children: [
{
path: 'QueryParts',
name: 'QueryParts',
component: () => import('@/views/TechnologyCenter/QueryParts'),
meta: { title: '零件查询', icon: 'QueryParts' }
}
]
},
{
path: '/CreatePackingList',
component: Layout,
children: [
{
path: 'CreatePackingList',
name: 'CreatePackingList',
component: () => import('@/views/TechnologyCenter/CreatePackingList'),
meta: { title: '创建装箱单', icon: 'CreatePackingList' }
}
]
},
{ path: '*', redirect: '/404', hidden: true }
]