fuchengshen
2022-07-09 3a25c05b5ab837714f30469cdcb1e2a77d8d7f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
  <mars-pannel :visible="true" right="10" top="10" width="200px">
    <a-form>
      <a-form-item label="状态:">
        <a-checkbox @change="onChangeState" v-model:checked="enabled">开启效果</a-checkbox>
      </a-form-item>
 
      <a-form-item label="亮度:">
        <mars-slider @change="onChangeBrightness" v-model:value="brightness" :min="0" :max="5" :step="0.01" />
      </a-form-item>
    </a-form>
  </mars-pannel>
</template>
 
<script setup lang="ts">
import { ref } from "vue"
import * as mapWork from "./map.js"
 
const brightness = ref<number>(2)
 
const enabled = ref(true)
 
// 亮度
const onChangeBrightness = () => {
  mapWork.setBrightness(brightness.value)
}
 
const onChangeState = () => {
  mapWork.setBrightnessEffect(enabled.value)
}
</script>
<style scoped lang="less">
.ant-slider {
  width: 120px;
}
</style>