- 实现TV1和TV2双大屏展示 - 集成ECharts数据可视化 - 实现实时数据刷新机制 - 添加刀具寿命管理模块 - 添加工单加工时长统计模块 - 添加加工中心7日工作时长统计模块 - 添加OEE分析、设备状态监控等功能 - 创建技术文档和使用说明书
25 lines
483 B
Vue
25 lines
483 B
Vue
<template>
|
|
<div id="app">
|
|
<keep-alive>
|
|
<router-view v-if="this.$route.meta.keepAlive"/>
|
|
</keep-alive>
|
|
<router-view v-if="!this.$route.meta.keepAlive"/>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: MiSans Bold, serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #2c3e50;
|
|
/*font-family: Microsoft YaHei!important;*/
|
|
}
|
|
.el-dialog__wrapper {
|
|
pointer-events: none;
|
|
}
|
|
.el-dialog {
|
|
pointer-events: auto;
|
|
}
|
|
</style>
|