This commit is contained in:
parent
2b13ff0a5a
commit
bd10b05228
@ -117,27 +117,27 @@ export default {
|
|||||||
id: 'substation',
|
id: 'substation',
|
||||||
type: 'interface'
|
type: 'interface'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: '能耗检测管理系统',
|
// name: '能耗检测管理系统',
|
||||||
mode: 'energyDetected',
|
// mode: 'energyDetected',
|
||||||
id: 'energyDetected',
|
// id: 'energyDetected',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
}
|
// }
|
||||||
] },
|
] },
|
||||||
environment:{name:'环境与设备监控系统', type:'totalSystem', id: 'environment', active:false, icon:iscs_icon3,
|
environment:{name:'环境与设备监控系统', type:'totalSystem', id: 'environment', active:false, icon:iscs_icon3,
|
||||||
children:[
|
children:[
|
||||||
{
|
// {
|
||||||
name: '车站模式管理器',
|
// name: '车站模式管理器',
|
||||||
mode: 'environmentOne',
|
// mode: 'environmentOne',
|
||||||
id: 'environmentOne',
|
// id: 'environmentOne',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
name: '时间管理器',
|
// name: '时间管理器',
|
||||||
mode: 'environmentTwo',
|
// mode: 'environmentTwo',
|
||||||
id: 'environmentTwo',
|
// id: 'environmentTwo',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: '隧道通风系统',
|
name: '隧道通风系统',
|
||||||
mode: 'environmentThree',
|
mode: 'environmentThree',
|
||||||
@ -257,13 +257,13 @@ export default {
|
|||||||
]},
|
]},
|
||||||
signalSystem:{name:'信号系统', type:'totalSystem', id: 'signalSystem', mode: 'signalSystem', active:false, icon:iscs_icon7,
|
signalSystem:{name:'信号系统', type:'totalSystem', id: 'signalSystem', mode: 'signalSystem', active:false, icon:iscs_icon7,
|
||||||
children:[
|
children:[
|
||||||
{
|
// {
|
||||||
name: 'TIS管理器',
|
// name: 'TIS管理器',
|
||||||
mode: 'tis',
|
// mode: 'tis',
|
||||||
id: 'tis',
|
// id: 'tis',
|
||||||
type: 'interface',
|
// type: 'interface',
|
||||||
disabled: true
|
// disabled: true
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: '列车时刻表',
|
name: '列车时刻表',
|
||||||
mode: 'schedule',
|
mode: 'schedule',
|
||||||
@ -276,13 +276,13 @@ export default {
|
|||||||
id: 'signal',
|
id: 'signal',
|
||||||
type: 'interface'
|
type: 'interface'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: '全线信号系统界面',
|
// name: '全线信号系统界面',
|
||||||
mode: 'allLineSignal',
|
// mode: 'allLineSignal',
|
||||||
id: 'allLineSignal',
|
// id: 'allLineSignal',
|
||||||
type: 'interface',
|
// type: 'interface',
|
||||||
disabled: true
|
// disabled: true
|
||||||
}
|
// }
|
||||||
]},
|
]},
|
||||||
communication:{name:'通信', type:'totalSystem', id: 'communication', active:false, icon:iscs_icon7,
|
communication:{name:'通信', type:'totalSystem', id: 'communication', active:false, icon:iscs_icon7,
|
||||||
children:[
|
children:[
|
||||||
|
@ -62,6 +62,9 @@ export default {
|
|||||||
watch:{
|
watch:{
|
||||||
'mode':function() {
|
'mode':function() {
|
||||||
this.getInitData();
|
this.getInitData();
|
||||||
|
},
|
||||||
|
'stationId':function() {
|
||||||
|
this.getInitData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -94,6 +97,7 @@ export default {
|
|||||||
getInitData() {
|
getInitData() {
|
||||||
let userInterface = '';
|
let userInterface = '';
|
||||||
this.system = 'environment';
|
this.system = 'environment';
|
||||||
|
console.log(this.stationName, '====')
|
||||||
if (this.mode == 'environmentThree') {
|
if (this.mode == 'environmentThree') {
|
||||||
this.title = this.stationName + ' 隧道通风系统';
|
this.title = this.stationName + ' 隧道通风系统';
|
||||||
this.scaleRate = window.innerWidth / 2000;
|
this.scaleRate = window.innerWidth / 2000;
|
||||||
|
@ -47,6 +47,9 @@ export default {
|
|||||||
watch:{
|
watch:{
|
||||||
'mode':function() {
|
'mode':function() {
|
||||||
this.getInitData();
|
this.getInitData();
|
||||||
|
},
|
||||||
|
'stationId':function() {
|
||||||
|
this.getInitData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
@ -43,6 +43,11 @@ export default {
|
|||||||
scaleRate:window.innerWidth / 2200,
|
scaleRate:window.innerWidth / 2200,
|
||||||
height: 1000
|
height: 1000
|
||||||
};
|
};
|
||||||
|
},
|
||||||
|
watch:{
|
||||||
|
'stationId':function() {
|
||||||
|
this.getInitData();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getInitData();
|
this.getInitData();
|
||||||
|
@ -46,6 +46,9 @@ export default {
|
|||||||
},
|
},
|
||||||
'mode':function() {
|
'mode':function() {
|
||||||
this.getInitData();
|
this.getInitData();
|
||||||
|
},
|
||||||
|
'stationId':function() {
|
||||||
|
this.getInitData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -104,7 +107,7 @@ export default {
|
|||||||
color: #d8e9a5;
|
color: #d8e9a5;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
.fasIndex{
|
.fasIndex{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width:100%;
|
width:100%;
|
||||||
height:100%;
|
height:100%;
|
||||||
@ -116,4 +119,3 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -106,27 +106,27 @@ export default {
|
|||||||
id: 'substation',
|
id: 'substation',
|
||||||
type: 'interface'
|
type: 'interface'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: '能耗检测管理系统',
|
// name: '能耗检测管理系统',
|
||||||
mode: 'energyDetected',
|
// mode: 'energyDetected',
|
||||||
id: 'energyDetected',
|
// id: 'energyDetected',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
}
|
// }
|
||||||
] },
|
] },
|
||||||
environment:{name:'环境与设备监控系统', type:'totalSystem', id: 'environment', active:false, icon:iscs_icon3,
|
environment:{name:'环境与设备监控系统', type:'totalSystem', id: 'environment', active:false, icon:iscs_icon3,
|
||||||
children:[
|
children:[
|
||||||
{
|
// {
|
||||||
name: '车站模式管理器',
|
// name: '车站模式管理器',
|
||||||
mode: 'environmentOne',
|
// mode: 'environmentOne',
|
||||||
id: 'environmentOne',
|
// id: 'environmentOne',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
name: '时间管理器',
|
// name: '时间管理器',
|
||||||
mode: 'environmentTwo',
|
// mode: 'environmentTwo',
|
||||||
id: 'environmentTwo',
|
// id: 'environmentTwo',
|
||||||
type: 'interface'
|
// type: 'interface'
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: '隧道通风系统',
|
name: '隧道通风系统',
|
||||||
mode: 'environmentThree',
|
mode: 'environmentThree',
|
||||||
@ -246,13 +246,13 @@ export default {
|
|||||||
]},
|
]},
|
||||||
signalSystem:{name:'信号系统', type:'totalSystem', id: 'signalSystem', mode: 'signalSystem', active:false, icon:iscs_icon7,
|
signalSystem:{name:'信号系统', type:'totalSystem', id: 'signalSystem', mode: 'signalSystem', active:false, icon:iscs_icon7,
|
||||||
children:[
|
children:[
|
||||||
{
|
// {
|
||||||
name: 'TIS管理器',
|
// name: 'TIS管理器',
|
||||||
mode: 'tis',
|
// mode: 'tis',
|
||||||
id: 'tis',
|
// id: 'tis',
|
||||||
type: 'interface',
|
// type: 'interface',
|
||||||
disabled: true
|
// disabled: true
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: '列车时刻表',
|
name: '列车时刻表',
|
||||||
mode: 'schedule',
|
mode: 'schedule',
|
||||||
@ -265,13 +265,13 @@ export default {
|
|||||||
id: 'signal',
|
id: 'signal',
|
||||||
type: 'interface'
|
type: 'interface'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: '全线信号系统界面',
|
// name: '全线信号系统界面',
|
||||||
mode: 'allLineSignal',
|
// mode: 'allLineSignal',
|
||||||
id: 'allLineSignal',
|
// id: 'allLineSignal',
|
||||||
type: 'interface',
|
// type: 'interface',
|
||||||
disabled: true
|
// disabled: true
|
||||||
}
|
// }
|
||||||
]},
|
]},
|
||||||
communication:{name:'通信', type:'totalSystem', id: 'communication', active:false, icon:iscs_icon7,
|
communication:{name:'通信', type:'totalSystem', id: 'communication', active:false, icon:iscs_icon7,
|
||||||
children:[
|
children:[
|
||||||
|
Loading…
Reference in New Issue
Block a user