-
全线
+
全线
全站厅(LCD)
全上行站台
全下行站台
@@ -86,6 +86,7 @@ export default {
name:'MainScreen',
data() {
return {
+ allLine:false,
stationList:[
{
stationName:'会展中心站',
@@ -170,6 +171,15 @@ export default {
}
]
};
+ },
+ methods:{
+ clickIt(event) {
+ if (!this.allLine) {
+ this.allLine = true;
+ } else {
+ this.allLine = false;
+ }
+ }
}
};
@@ -190,7 +200,7 @@ border-top: 2px solid #8c8a89;border-left: 2px solid #8c8a89;border-right: 2px s
.screen_right{display: inline-block;position:absolute;right:0;top:0;width: 200px;}
.each_operate{width: 92px;padding: 10px;border-top: 2px solid #8c8a89;border-left: 2px solid #8c8a89;border-right: 2px solid #fff;border-bottom: 2px solid #fff;margin-top: 30px;margin-left: 30px;}
.each_operate_text{text-align: center;font-size: 12px;color: #a9f4f6;}
-.each_operate_button{text-align: center;font-size: 12px;margin-top: 5px;background: #CCCCCC;display: inline-block;border-top: 2px solid #fff;border-left: 2px solid #fff;border-right: 2px solid #565656;border-bottom: 2px solid #565656;padding: 2px 8px;line-height: 140%;}
+.each_operate_button{text-align: center;font-size: 12px;margin-top: 5px;cursor:pointer;background: #CCCCCC;display: inline-block;border-top: 2px solid #fff;border-left: 2px solid #fff;border-right: 2px solid #565656;border-bottom: 2px solid #565656;padding: 2px 8px;line-height: 140%;}
.footer_button_group{position: absolute;right: 0;top: 0;width: 160px;}
.main_screen_footer{margin-left: 120px;padding-right:160px;position: relative;margin-top:10px;}
#screen_footer_text{
@@ -245,7 +255,22 @@ border-top: 2px solid #8c8a89;border-left: 2px solid #8c8a89;border-right: 2px s
width: 84px;
margin-left: 5px;
margin-top: 10px;
+ // &:hover{
+ // background: #EBB570;
+ // border-top: 2px solid #795B31;
+ // border-left: 2px solid #795B31;
+ // border-right: 2px solid #fff;
+ // border-bottom: 2px solid #fff;
+ // }
}
+.screen_operate_name.active,.screen_station_name.active{
+ background: #EBB570;
+ border-top: 2px solid #795B31;
+ border-left: 2px solid #795B31;
+ border-right: 2px solid #fff;
+ border-bottom: 2px solid #fff;
+}
+
.data_button_info{
width: 14px;
height: 14px;
diff --git a/src/views/newMap/newMapdraft/dataRelation/automaticoperate/detail.vue b/src/views/newMap/newMapdraft/dataRelation/automaticoperate/detail.vue
index 8759d2ea0..debc974e3 100644
--- a/src/views/newMap/newMapdraft/dataRelation/automaticoperate/detail.vue
+++ b/src/views/newMap/newMapdraft/dataRelation/automaticoperate/detail.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/views/newMap/newMapdraft/dataRelation/automaticoperate/route.vue b/src/views/newMap/newMapdraft/dataRelation/automaticoperate/route.vue
index 9e157bebf..27c95b4a5 100644
--- a/src/views/newMap/newMapdraft/dataRelation/automaticoperate/route.vue
+++ b/src/views/newMap/newMapdraft/dataRelation/automaticoperate/route.vue
@@ -18,7 +18,7 @@
{
+ return section.type == '01' || section.type == '03';
+ });
+ }
},
watch: {
mapInfo(val) {
@@ -139,7 +144,6 @@ export default {
}
},
mounted() {
-
},
methods: {
hover(field) {
@@ -153,8 +157,10 @@ export default {
if (selected._type.toUpperCase() === 'Signal'.toUpperCase() && this.field.toUpperCase() === 'signalCode'.toUpperCase()) {
this.addModel.signalCode = selected.code;
} else if (selected._type.toUpperCase() === 'Section'.toUpperCase() && this.field.toUpperCase() === 'sectionList'.toUpperCase()) {
- if (this.addModel.sectionList.indexOf(selected.code) === -1) {
- this.addModel.sectionList.push(selected.code);
+ if (selected.type == '01' || selected.type == '03') {
+ if (this.addModel.sectionList.indexOf(selected.code) === -1) {
+ this.addModel.sectionList.push(selected.code);
+ }
}
} else if (selected._type.toUpperCase() === 'StationStand'.toUpperCase() && this.field.toUpperCase() === 'routeStationStandList'.toUpperCase()) {
if (this.addModel.stationStandList.indexOf(selected.code) === -1) {