大屏文件创建
This commit is contained in:
@ -44,6 +44,26 @@ export const constantRoutes = [
|
||||
component: (resolve) => require(['@/views/bigScreen/scientific/index'], resolve),
|
||||
name: 'scientific',
|
||||
},
|
||||
{
|
||||
path: 'management',
|
||||
component: (resolve) => require(['@/views/bigScreen/management/index'], resolve),
|
||||
name: 'management',
|
||||
},
|
||||
{
|
||||
path: 'qualityManage',
|
||||
component: (resolve) => require(['@/views/bigScreen/qualityManage/index'], resolve),
|
||||
name: 'qualityManage',
|
||||
},
|
||||
{
|
||||
path: 'securityManage',
|
||||
component: (resolve) => require(['@/views/bigScreen/securityManage/index'], resolve),
|
||||
name: 'securityManage',
|
||||
},
|
||||
{
|
||||
path: 'information',
|
||||
component: (resolve) => require(['@/views/bigScreen/information/index'], resolve),
|
||||
name: 'information',
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -13,7 +13,7 @@
|
||||
<bigScreenBtn title="科研生产" routerUrl="/bigScreen/scientific"></bigScreenBtn>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<bigScreenBtn title="经营管理"></bigScreenBtn>
|
||||
<bigScreenBtn title="经营管理" routerUrl="/bigScreen/management"></bigScreenBtn>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-col>
|
||||
@ -22,13 +22,13 @@
|
||||
<el-col :span="8">
|
||||
<el-row style="padding: 0px 0 0 60px">
|
||||
<el-col :span="8">
|
||||
<bigScreenBtn title="质量管理"></bigScreenBtn>
|
||||
<bigScreenBtn title="质量管理" routerUrl="/bigScreen/qualityManage"></bigScreenBtn>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<bigScreenBtn title="安全管理"></bigScreenBtn>
|
||||
<bigScreenBtn title="安全管理" routerUrl="/bigScreen/securityManage"></bigScreenBtn>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<bigScreenBtn title="信息化管理"></bigScreenBtn>
|
||||
<bigScreenBtn title="信息化管理" routerUrl="/bigScreen/information"></bigScreenBtn>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-col>
|
||||
|
18
src/views/bigScreen/information/index.vue
Normal file
18
src/views/bigScreen/information/index.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="information">
|
||||
信息化管理
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'Information',
|
||||
components: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
18
src/views/bigScreen/management/index.vue
Normal file
18
src/views/bigScreen/management/index.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="management">
|
||||
经营管理
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'Management',
|
||||
components: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
18
src/views/bigScreen/qualityManage/index.vue
Normal file
18
src/views/bigScreen/qualityManage/index.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="qualityManage">
|
||||
质量管理
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'QualityManage',
|
||||
components: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
18
src/views/bigScreen/securityManage/index.vue
Normal file
18
src/views/bigScreen/securityManage/index.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="securityManage">
|
||||
安全管理
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'SecurityManage',
|
||||
components: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
Reference in New Issue
Block a user