|
@@ -41,7 +41,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="up-col">
|
|
|
- <span> 缩放比例 </span>
|
|
|
+ <span> {{ $i18n.t(`mask.scaling_ratio`) }} </span>
|
|
|
|
|
|
<slider
|
|
|
v-model="sky.scale"
|
|
@@ -53,14 +53,14 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="swi-col">
|
|
|
- <span> 跟随场景转动 </span>
|
|
|
+ <span> {{ $i18n.t("mask.follow_the_scene") }} </span>
|
|
|
<switcher
|
|
|
:value="sky.antidistorted"
|
|
|
@change="(sa) => (sky.antidistorted = Boolean(sa))"
|
|
|
></switcher>
|
|
|
</div>
|
|
|
<div class="swi-col">
|
|
|
- <span> 应用到全部全景图 </span>
|
|
|
+ <span> {{ $i18n.t("mask.apply_to_all_pano") }} </span>
|
|
|
<switcher
|
|
|
:value="isApplySkyToAll"
|
|
|
@change="(sat) => (isApplySkyToAll = Boolean(sat))"
|
|
@@ -96,7 +96,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="up-col">
|
|
|
- <span> 缩放比例 </span>
|
|
|
+ <span> {{ $i18n.t(`mask.scaling_ratio`) }} </span>
|
|
|
<slider
|
|
|
v-model="earth.scale"
|
|
|
show-stops
|
|
@@ -107,14 +107,14 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="swi-col">
|
|
|
- <span> 跟随场景转动 </span>
|
|
|
+ <span> {{ $i18n.t("mask.follow_the_scene") }} </span>
|
|
|
<switcher
|
|
|
:value="earth.antidistorted"
|
|
|
@change="(ve) => (earth.antidistorted = Boolean(ve))"
|
|
|
></switcher>
|
|
|
</div>
|
|
|
<div class="swi-col">
|
|
|
- <span> 应用到全部全景图 </span>
|
|
|
+ <span> {{ $i18n.t("mask.apply_to_all_pano") }} </span>
|
|
|
<switcher
|
|
|
:value="isApplyEarthToAll"
|
|
|
@change="(vet) => (isApplyEarthToAll = Boolean(vet))"
|
|
@@ -176,9 +176,9 @@ export default {
|
|
|
isShowSelectionWindow: false,
|
|
|
isSelect: "",
|
|
|
scaleMarks: {
|
|
|
- 0.52: "0.5倍",
|
|
|
- 1: "1倍",
|
|
|
- 1.99: "2倍",
|
|
|
+ 0.52: "0.5" + this.$i18n.t("mask.unit"),
|
|
|
+ 1: "1" + this.$i18n.t("mask.unit"),
|
|
|
+ 1.99: "2" + this.$i18n.t("mask.unit"),
|
|
|
},
|
|
|
sky: {
|
|
|
isShow: false,
|
|
@@ -227,7 +227,7 @@ export default {
|
|
|
handler: function (val) {
|
|
|
if (val) {
|
|
|
this.$confirm({
|
|
|
- content: "是否应用到全部全景图?",
|
|
|
+ content: this.$i18n.t('mask.is_apply_to_all_pano'),
|
|
|
ok: () => {
|
|
|
this.$store.dispatch("scene/applycustomMaskToAll", "sky");
|
|
|
},
|
|
@@ -243,7 +243,7 @@ export default {
|
|
|
handler: function (val) {
|
|
|
if (val) {
|
|
|
this.$confirm({
|
|
|
- content: "是否应用到全部全景图?",
|
|
|
+ content: this.$i18n.t('mask.is_apply_to_all_pano'),
|
|
|
ok: () => {
|
|
|
this.$store.dispatch("scene/applycustomMaskToAll", "earth");
|
|
|
},
|