|
@@ -159,7 +159,7 @@
|
|
|
fill="#119933"
|
|
|
opacity="0"
|
|
|
class="map-float"
|
|
|
- data-period="二期"
|
|
|
+ data-period="SBQ02_GC,石板泉二期"
|
|
|
/>
|
|
|
<path
|
|
|
d="M9,316c-3,0-7.2,1.2-8.7-0.3C-1.2,314.2,0,310,0,307c1.9-4.8,2.3-9.8,1.6-14.8c-0.8-6.4,0.9-11.8,4.3-16.9
|
|
@@ -181,7 +181,7 @@
|
|
|
fill="#119933"
|
|
|
opacity="0"
|
|
|
class="map-float"
|
|
|
- data-period="三期"
|
|
|
+ data-period="SBQ03_GC,石板泉三期"
|
|
|
/>
|
|
|
<path
|
|
|
d="M499,40c1,0,2,0,3,0c1.3,1,2.6,2.1,3.9,3c4.2,2.6,9.2,4.6,11.8,9c2,3.3,4.5,4.6,7.9,5.3c7.9,1.7,14.3,5.4,19.6,11.8
|
|
@@ -198,7 +198,7 @@
|
|
|
fill="#119933"
|
|
|
opacity="0"
|
|
|
class="map-float"
|
|
|
- data-period="四期"
|
|
|
+ data-period="SBQ04_GC,石板泉四期"
|
|
|
/>
|
|
|
<path
|
|
|
d="M698,207c0,8.7,0,17.3,0,26c-3.9,2.6-8.3,5.4-8.5,10.5c-0.3,8.1-4.6,12.7-11,16.8c-5.4,3.5-9.4,9.3-15.5,11.6
|
|
@@ -221,7 +221,7 @@
|
|
|
fill="#119933"
|
|
|
opacity="0"
|
|
|
class="map-float"
|
|
|
- data-period="一期"
|
|
|
+ data-period="SBQ01_GC,石板泉一期"
|
|
|
/>
|
|
|
</g>
|
|
|
</g>
|
|
@@ -578,9 +578,11 @@ export default {
|
|
|
changeshowType(id, planBtnName) {
|
|
|
this.activeId = id;
|
|
|
this.$emit("clickFj", id, planBtnName);
|
|
|
+ this.$emit("changePeriod", "石板泉", planBtnName.substring(planBtnName.length - 2));
|
|
|
},
|
|
|
clickFj(id, planBtnName) {
|
|
|
this.$emit("clickFj", id, planBtnName);
|
|
|
+ this.$emit("changePeriod", "石板泉", planBtnName.substring(planBtnName.length - 2));
|
|
|
},
|
|
|
click: function (id) {
|
|
|
this.activeId = id;
|
|
@@ -611,7 +613,10 @@ export default {
|
|
|
});
|
|
|
elsImage[index].style.display = "block";
|
|
|
let period = this.getAttribute("data-period");
|
|
|
- that.$emit("changePeriod", "石板泉", period);
|
|
|
+ let strs = period.split(",");
|
|
|
+ that.$emit("changePeriod", "石板泉", strs[1].substring(strs[1].length - 2));
|
|
|
+ that.changeshowType(strs[0], strs[1]);
|
|
|
+ that.$emit("clickFj", strs[0], strs[1]);
|
|
|
this.style.opacity = 0.2;
|
|
|
});
|
|
|
});
|