大屏文件创建

This commit is contained in:
熊丽君
2021-12-03 17:27:27 +08:00
parent cf6d68ca8c
commit b232bfd121
6 changed files with 96 additions and 4 deletions

View File

@ -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>

View File

@ -0,0 +1,18 @@
<template>
<div class="information">
信息化管理
</div>
</template>
<script>
export default {
name: 'Information',
components: {
}
}
</script>
<style lang="scss" scoped>
</style>

View File

@ -0,0 +1,18 @@
<template>
<div class="management">
经营管理
</div>
</template>
<script>
export default {
name: 'Management',
components: {
}
}
</script>
<style lang="scss" scoped>
</style>

View File

@ -0,0 +1,18 @@
<template>
<div class="qualityManage">
质量管理
</div>
</template>
<script>
export default {
name: 'QualityManage',
components: {
}
}
</script>
<style lang="scss" scoped>
</style>

View File

@ -0,0 +1,18 @@
<template>
<div class="securityManage">
安全管理
</div>
</template>
<script>
export default {
name: 'SecurityManage',
components: {
}
}
</script>
<style lang="scss" scoped>
</style>