|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div id="index" ref="appRef">
|
|
|
- <div class="bg">
|
|
|
+ <div :class="sob === 'N_MES_NYS' ? 'bg2' : 'bg'">
|
|
|
<dv-loading v-if="loading">Loading...</dv-loading>
|
|
|
<div v-else class="host-body">
|
|
|
<!-- <div class="d-flex jc-center">
|
|
|
@@ -121,7 +121,8 @@ export default {
|
|
|
weekday: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
|
|
|
decorationColor: ['#568aea', '#000000'],
|
|
|
licode: '',
|
|
|
- linedata: [{ 'LI_CODE': '组装01', 'LI_NAME': '组装01' }, { 'LI_CODE': '组装02', 'LI_NAME': '组装02' }]
|
|
|
+ linedata: [{ 'LI_CODE': '组装01', 'LI_NAME': '组装01' }, { 'LI_CODE': '组装02', 'LI_NAME': '组装02' }],
|
|
|
+ sob:''
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
@@ -130,6 +131,7 @@ export default {
|
|
|
bottom
|
|
|
},
|
|
|
created() {
|
|
|
+ this.sob = sessionStorage.getItem('sob');
|
|
|
this.isFullScreen = document.fullscreenElement;
|
|
|
this.licode = sessionStorage.getItem("zzlicode") || '组装01';
|
|
|
},
|