|
|
@@ -8,7 +8,8 @@
|
|
|
<div class="d-flex jc-center">
|
|
|
<dv-decoration-8 class="dv-dec-8" :color="decorationColor" />
|
|
|
<div class="title">
|
|
|
- <span class="title-text">COSTEC-MES 可视化平台</span>
|
|
|
+ <span v-show="sob === 'N_MES_NYS'" class="title-text">NERIUS-MES 可视化平台</span>
|
|
|
+ <span class="title-text" v-show="sob !== 'N_MES_NYS'">COSTEC-MES 可视化平台</span>
|
|
|
<dv-decoration-6
|
|
|
class="dv-dec-6"
|
|
|
:reverse="true"
|
|
|
@@ -29,7 +30,8 @@
|
|
|
<div class="d-flex aside-width">
|
|
|
<div class="react-left ml-4 react-l-s bg-color-blue">
|
|
|
<span class="react-left"></span>
|
|
|
- <span class="text fw-b" style="font-size:24px;">柯赛科技数据看板</span>
|
|
|
+ <span v-show="sob === 'N_MES_NYS'" class="text fw-b" style="font-size:24px;">优时电通数据看板</span>
|
|
|
+ <span v-show="sob !== 'N_MES_NYS'" class="text fw-b" style="font-size:24px;">柯赛科技数据看板</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="d-flex aside-width">
|
|
|
@@ -115,7 +117,8 @@ export default {
|
|
|
dateYear: null,
|
|
|
dateWeek: null,
|
|
|
weekday: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
|
|
|
- decorationColor: ['#568aea', '#000000']
|
|
|
+ decorationColor: ['#568aea', '#000000'],
|
|
|
+ sob:'',
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
@@ -125,6 +128,7 @@ export default {
|
|
|
leftup1
|
|
|
},
|
|
|
created() {
|
|
|
+ this.sob = sessionStorage.getItem('sob');
|
|
|
this.isFullScreen = document.fullscreenElement;
|
|
|
},
|
|
|
mounted() {
|