大屏1
This commit is contained in:
@@ -19,6 +19,7 @@ time, mark, audio, video, input {
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
vertical-align: baseline;
|
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 */
|
/* HTML5 display-role reset for older browsers */
|
||||||
@@ -89,8 +90,8 @@ html, body {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
-webkit-text-size-adjust: none;
|
-webkit-text-size-adjust: none;
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
/* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
|
||||||
background: #05032a center center / 100% 100% url(../../assets/images/bg.png) no-repeat;
|
/* background: #05032a center center / 100% 100% url(../../assets/images/bg.png) no-repeat; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div, p {
|
div, p {
|
||||||
|
|||||||
@@ -3,22 +3,26 @@ import {post, post1} from '@js/http.js'
|
|||||||
/** 1.1配粉设备下拉框 */
|
/** 1.1配粉设备下拉框 */
|
||||||
export const queryDevice = (url) => post1(url + '/api/screen/pdm/queryDevice', {})
|
export const queryDevice = (url) => post1(url + '/api/screen/pdm/queryDevice', {})
|
||||||
|
|
||||||
/** 1.2大屏左一 */
|
/** 1.1大屏左一 */
|
||||||
export const queryInfo1 = (id) => post('api/screen/pdm/queryInfo1', {
|
export const planReached = (id) => post('api/bigscreen/product/planReached', {})
|
||||||
device_id: id
|
|
||||||
})
|
|
||||||
|
|
||||||
/** 1.3大屏左二 */
|
/** 1.2大屏左二 */
|
||||||
export const queryInfo2 = (id) => post('api/screen/pdm/queryInfo2', {
|
export const worksectionHarvest = (id) => post('api/bigscreen/product/worksectionHarvest', {})
|
||||||
device_id: id
|
|
||||||
})
|
/** 1.3大屏左三 */
|
||||||
|
export const monthHarvest = (id) => post('api/bigscreen/product/monthHarvest', {})
|
||||||
|
|
||||||
/** 1.4大屏右一 */
|
/** 1.4大屏右一 */
|
||||||
export const queryInfo3 = (id) => post('api/screen/pdm/queryInfo3', {
|
export const output = (id) => post('api/bigscreen/product/output', {})
|
||||||
device_id: id
|
|
||||||
})
|
|
||||||
|
|
||||||
/** 1.5大屏右二 */
|
/** 1.5大屏右二 */
|
||||||
export const queryInfo4 = (id) => post('api/screen/pdm/queryInfo4', {
|
export const topHarvest = (id) => post('api/bigscreen/product/topHarvest', {})
|
||||||
device_id: id
|
|
||||||
})
|
/** 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', {})
|
||||||
|
|||||||
1214
src/pages/MonitoringScreen1.vue
Normal file
1214
src/pages/MonitoringScreen1.vue
Normal file
File diff suppressed because it is too large
Load Diff
@@ -2,8 +2,7 @@ import Vue from 'vue'
|
|||||||
import Router from 'vue-router'
|
import Router from 'vue-router'
|
||||||
|
|
||||||
const Setup = r => require.ensure([], () => r(require('@page/Setup')), 'Setup')
|
const Setup = r => require.ensure([], () => r(require('@page/Setup')), 'Setup')
|
||||||
const TaskScreen = r => require.ensure([], () => r(require('@page/TaskScreen')), 'TaskScreen')
|
const MonitoringScreen1 = r => require.ensure([], () => r(require('@page/MonitoringScreen1')), 'MonitoringScreen1')
|
||||||
const WorkStep = r => require.ensure([], () => r(require('@page/WorkStep')), 'WorkStep')
|
|
||||||
|
|
||||||
Vue.use(Router)
|
Vue.use(Router)
|
||||||
|
|
||||||
@@ -19,12 +18,8 @@ export default new Router({
|
|||||||
component: Setup
|
component: Setup
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/taskscreen',
|
path: '/MonitoringScreen1',
|
||||||
component: TaskScreen
|
component: MonitoringScreen1
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/workstep',
|
|
||||||
component: WorkStep
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user