|
@@ -22,7 +22,7 @@
|
|
|
/>
|
|
|
<div class="item">
|
|
|
<div class="">
|
|
|
- {{ $i18n.t("modules.screen.v_angle_re") }}
|
|
|
+ {{ $i18n.t("modules.screen.v_angle_re") }}
|
|
|
</div>
|
|
|
|
|
|
<vue-slider
|
|
@@ -32,13 +32,13 @@
|
|
|
:height="6"
|
|
|
:width="`95%`"
|
|
|
:marks="marks"
|
|
|
- direction="ltr"
|
|
|
+ direction="rtl"
|
|
|
+ :tooltip="'none'"
|
|
|
:processStyle="{
|
|
|
backgroundColor: '#409eff',
|
|
|
}"
|
|
|
:enable-cross="false"
|
|
|
:minRange="30"
|
|
|
- :tooltip="'active'"
|
|
|
/>
|
|
|
|
|
|
<!-- <slider
|
|
@@ -97,8 +97,8 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
marks: {
|
|
|
- "-90": "-90°",
|
|
|
- 90: "90°",
|
|
|
+ "-90": this.$i18n.t("modules.model.attr_top"),
|
|
|
+ 90: this.$i18n.t("modules.model.attr_bottom"),
|
|
|
},
|
|
|
initImg: "",
|
|
|
vlookat: [-90, 90],
|
|
@@ -221,6 +221,11 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
+<style>
|
|
|
+/* .vue-slider-dot-tooltip {
|
|
|
+ display: none !important;
|
|
|
+} */
|
|
|
+</style>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
.view-setting {
|