This commit is contained in:
2022-07-28 11:33:18 +08:00
parent 333ecb2bd2
commit e05557cccd
4 changed files with 1238 additions and 24 deletions

View File

@@ -19,6 +19,7 @@ time, mark, audio, video, input {
color: #ffffff;
font-weight: normal;
vertical-align: baseline;
font-family: "lucida grande", "lucida sans unicode", lucida, helvetica, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}
/* HTML5 display-role reset for older browsers */
@@ -89,8 +90,8 @@ html, body {
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
background: #05032a center center / 100% 100% url(../../assets/images/bg.png) no-repeat;
/* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
/* background: #05032a center center / 100% 100% url(../../assets/images/bg.png) no-repeat; */
}
div, p {

View File

@@ -3,22 +3,26 @@ import {post, post1} from '@js/http.js'
/** 1.1配粉设备下拉框 */
export const queryDevice = (url) => post1(url + '/api/screen/pdm/queryDevice', {})
/** 1.2大屏左一 */
export const queryInfo1 = (id) => post('api/screen/pdm/queryInfo1', {
device_id: id
})
/** 1.1大屏左一 */
export const planReached = (id) => post('api/bigscreen/product/planReached', {})
/** 1.3大屏左二 */
export const queryInfo2 = (id) => post('api/screen/pdm/queryInfo2', {
device_id: id
})
/** 1.2大屏左二 */
export const worksectionHarvest = (id) => post('api/bigscreen/product/worksectionHarvest', {})
/** 1.3大屏左三 */
export const monthHarvest = (id) => post('api/bigscreen/product/monthHarvest', {})
/** 1.4大屏右一 */
export const queryInfo3 = (id) => post('api/screen/pdm/queryInfo3', {
device_id: id
})
export const output = (id) => post('api/bigscreen/product/output', {})
/** 1.5大屏右二 */
export const queryInfo4 = (id) => post('api/screen/pdm/queryInfo4', {
device_id: id
})
export const topHarvest = (id) => post('api/bigscreen/product/topHarvest', {})
/** 1.6大屏右三 */
export const monthOrder = (id) => post('api/bigscreen/product/monthOrder', {})
/** 1.7大屏中一 */
export const productSchedule = (id) => post('api/bigscreen/product/productSchedule', {})
/** 1.8大屏中二 */
export const unfinishOrder = (id) => post('api/bigscreen/product/unfinishOrder', {})

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,7 @@ import Vue from 'vue'
import Router from 'vue-router'
const Setup = r => require.ensure([], () => r(require('@page/Setup')), 'Setup')
const TaskScreen = r => require.ensure([], () => r(require('@page/TaskScreen')), 'TaskScreen')
const WorkStep = r => require.ensure([], () => r(require('@page/WorkStep')), 'WorkStep')
const MonitoringScreen1 = r => require.ensure([], () => r(require('@page/MonitoringScreen1')), 'MonitoringScreen1')
Vue.use(Router)
@@ -19,12 +18,8 @@ export default new Router({
component: Setup
},
{
path: '/taskscreen',
component: TaskScreen
},
{
path: '/workstep',
component: WorkStep
path: '/MonitoringScreen1',
component: MonitoringScreen1
}
]
})