|
@@ -121,7 +121,7 @@
|
|
|
</g>
|
|
|
<g id="effects-svg-path">
|
|
|
<path
|
|
|
- class="effects-svg-path "
|
|
|
+ class="effects-svg-path"
|
|
|
:class="$store.state.moreSty === 'greenSty' ? 'esp-6' : 'esp-66'"
|
|
|
:style="'stroke-dashoffset: ' + sd"
|
|
|
fill="none"
|
|
@@ -143,7 +143,13 @@
|
|
|
></path>
|
|
|
</g>
|
|
|
</defs>
|
|
|
- <circle cx="390" cy="200" :r="r" fill="none" :class="$store.state.moreSty === 'greenSty' ? 'esp-c' : 'esp-cc'"></circle>
|
|
|
+ <circle
|
|
|
+ cx="390"
|
|
|
+ cy="200"
|
|
|
+ :r="r"
|
|
|
+ fill="none"
|
|
|
+ :class="$store.state.moreSty === 'greenSty' ? 'esp-c' : 'esp-cc'"
|
|
|
+ ></circle>
|
|
|
|
|
|
<use
|
|
|
v-for="(y, index) of effectsY"
|
|
@@ -155,7 +161,7 @@
|
|
|
></use>
|
|
|
|
|
|
<g :opacity="o" class="map-dt">
|
|
|
- <!-- v-if="$store.state.themeName === 'dark'"
|
|
|
+ <!-- v-if="$store.state.themeName === 'dark'"
|
|
|
v-if="$store.state.themeName === 'light'"
|
|
|
-->
|
|
|
<image
|
|
@@ -168,7 +174,7 @@
|
|
|
transform="matrix(1 0 0 1 -113 60.6679)"
|
|
|
/>
|
|
|
<image
|
|
|
- v-if="$store.state.moreSty === 'blueSty'"
|
|
|
+ v-if="$store.state.moreSty === 'blueSty'"
|
|
|
style="overflow: visible"
|
|
|
width="912"
|
|
|
height="340"
|
|
@@ -177,7 +183,7 @@
|
|
|
transform="matrix(1 0 0 1 -113 60.6679)"
|
|
|
/>
|
|
|
<image
|
|
|
- v-if="$store.state.moreSty === 'greenSty'"
|
|
|
+ v-if="$store.state.moreSty === 'greenSty'"
|
|
|
style="overflow: visible"
|
|
|
width="150"
|
|
|
id="map-main"
|
|
@@ -187,7 +193,7 @@
|
|
|
transform="matrix(1 0 0 1 -70 50.6679)"
|
|
|
/>
|
|
|
<image
|
|
|
- v-if="$store.state.moreSty === 'blueSty'"
|
|
|
+ v-if="$store.state.moreSty === 'blueSty'"
|
|
|
style="overflow: visible"
|
|
|
width="150"
|
|
|
id="map-main"
|
|
@@ -4203,7 +4209,11 @@ export default {
|
|
|
// 数据
|
|
|
data() {
|
|
|
return {
|
|
|
- fillSty: window.sessionStorage.getItem("moreSty") ? window.sessionStorage.getItem("moreSty") === 'greenSty' ? "#05bb4c" : "#1a93cf" : "#05bb4c",
|
|
|
+ fillSty: window.sessionStorage.getItem("moreSty")
|
|
|
+ ? window.sessionStorage.getItem("moreSty") === "greenSty"
|
|
|
+ ? "#05bb4c"
|
|
|
+ : "#1a93cf"
|
|
|
+ : "#05bb4c",
|
|
|
mapDataContentState: "",
|
|
|
|
|
|
// hb_state: false,
|
|
@@ -4351,11 +4361,11 @@ export default {
|
|
|
this.sourceMap = res;
|
|
|
},
|
|
|
"$store.state.moreSty"(value) {
|
|
|
- if (value === 'greenSty') {
|
|
|
- this.fillSty = '#05bb4c';
|
|
|
- } else {
|
|
|
- this.fillSty = '#1a93cf';
|
|
|
- }
|
|
|
+ if (value === "greenSty") {
|
|
|
+ this.fillSty = "#05bb4c";
|
|
|
+ } else {
|
|
|
+ this.fillSty = "#1a93cf";
|
|
|
+ }
|
|
|
},
|
|
|
},
|
|
|
};
|