Commit 976f35e5 authored by 李志鸣's avatar 李志鸣

fea(烘干室温度): 新增烘干室模块静态页面

parent b9cbe68b
......@@ -30,6 +30,9 @@ export default {
Pickling: '酸洗-磷化线槽液日常检测报告',
ElectrophoresisTank: '电泳槽液日常检测报告',
Pretreatment: '前处理槽液日常检测报告',
// 烘干室温度
DryingRoomChart: '烘干室温度',
DryingRoomChartIndex: '烘干室温度',
// 涂装生产计划
ProductionPlan: '生产计划',
ProductionPlanIndex: '生产计划',
......
......@@ -21,6 +21,8 @@ import deviceRunningTimeRouter from './modules/deviceRunning'
import basicRouter from './modules/basic'
// 化验室报告
import laboratoryRouter from './modules/laboratory'
// 烘干室温度
import dryingRoomChartRouter from './modules/dryingRoomChart'
// 涂装生产计划
import productionPlanRouter from './modules/productionPlan'
// AVI大屏
......@@ -162,6 +164,7 @@ export const asyncRouterMap = [
deviceRunningTimeRouter,
basicRouter,
laboratoryRouter,
dryingRoomChartRouter,
productionPlanRouter,
monitorRouter,
centerControl,
......
/**
* 烘干室温度图表
*/
export default {
path: '/dryingRoomChart',
component: () => import('@/views/Layout'),
redirect: '/dryingRoomChart/index',
meta: { title: 'DryingRoomChart', icon: 'reportview' },
children: [
{
path: 'index',
component: () => import('@/views/DryingRoomChart/list'),
name: 'DryingRoomChartIndex',
meta: { title: 'DryingRoomChartIndex', icon: 'reportview', noCache: true }
}
]
}
......@@ -8,7 +8,7 @@ export default {
path: 'index',
component: () => import('@/views/ProductionPlan/index'),
name: 'ProductionPlanIndex',
meta: { title: 'ProductionPlanIndex', icon: 'edit' }
meta: { title: 'ProductionPlanIndex', icon: 'edit', noCache: true }
}
]
}
<template>
<div class="page-pack">
<div class="title-pack clear-float pl-15 pr-15">
<div class="float-left">
<span class="page-title-text">烘干室温度</span>
</div>
<div class="float-right page-refresh">
<span class="pointer">
<svg-icon icon-class="refresh"></svg-icon>
<span class="ml-10">刷新</span>
</span>
</div>
</div>
<div class="general-list-main-pack pl-15 pr-15 pb-15">
</div>
</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
.page-pack {
position: relative;
min-height: 100%;
width: 100%;
border: 1px solid #d2d3d5;
background-color: #fff;
overflow-y: auto;
.title-pack {
height: 38px;
line-height: 38px;
border-bottom: 1px solid #d2d3d5;
}
.tool-pack {
padding-top: 16px;
padding-bottom: 16px;
.tool-tag {
height: 32px;
line-height: 32px;
font-size: 14px;
}
}
.edit-button {
color: #538FFD;
}
.status-circle {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 6px;
margin-right: 5px;
vertical-align: middle;
}
.delete-button {
color: #F47476;
}
.view-span {
color: #1284fa;
border-bottom: 1px solid #1284fa;
&:hover {
cursor: pointer;
}
}
.el-dialog__body {
padding: 30px 30px 10px 20px!important;
.el-row {
.el-col {
line-height: 35px;
.el-form-item {
width: 100%;
.el-form-item__content {
width: 100%;
.el-input {
font-size: 12px;
height: 32px;
}
.el-input__inner {
height: 32px;
}
.el-select {
width: 100%!important;
font-size: 12px;
height: 32px;
}
.el-date-editor {
width: 100%!important;
}
}
}
}
}
}
}
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment