|
29 | 29 | <div v-if="isSwing" class="image-frame-inner2">
|
30 | 30 | <ElSlider class="pan-slider" v-model="pan" :min="0" :max="355" :show-input-controls="false" @change="Move" @input="Move" />
|
31 | 31 | </div>
|
| 32 | + <div v-if="!rebooting && posValid" class="image-frame-inner3"> |
| 33 | + <i class="el-icon-moon ir-led" /> |
| 34 | + <ElButtonGroup> |
| 35 | + <ElButton size="mini" type="primary" @click="IrLED('on')"> |
| 36 | + on |
| 37 | + </ElButton> |
| 38 | + <ElButton size="mini" type="primary" @click="IrLED('auto')"> |
| 39 | + auto |
| 40 | + </ElButton> |
| 41 | + <ElButton size="mini" type="primary" @click="IrLED('off')"> |
| 42 | + off |
| 43 | + </ElButton> |
| 44 | + </ElButtonGroup> |
| 45 | + </div> |
32 | 46 | </div>
|
33 | 47 |
|
34 | 48 | <h3>基本設定</h3>
|
|
128 | 142 | <script>
|
129 | 143 | import axios from 'axios';
|
130 | 144 | import md5 from 'js-md5';
|
131 |
| - import { Tooltip, Drawer, Slider } from 'element-ui'; |
| 145 | + import { Tooltip, Drawer, Slider, ButtonGroup } from 'element-ui'; |
132 | 146 | import SettingSwitch from './SettingSwitch.vue';
|
133 | 147 | import SettingInput from './SettingInput.vue';
|
134 | 148 | import SettingButton from './SettingButton.vue';
|
|
139 | 153 | import 'element-ui/lib/theme-chalk/tooltip.css';
|
140 | 154 | import 'element-ui/lib/theme-chalk/drawer.css';
|
141 | 155 | import 'element-ui/lib/theme-chalk/slider.css';
|
| 156 | + import 'element-ui/lib/theme-chalk/button-group.css'; |
142 | 157 |
|
143 | 158 | export default {
|
144 | 159 | name: 'ATOMCamSetting',
|
145 | 160 | components: {
|
146 | 161 | ElTooltip: Tooltip,
|
147 | 162 | ElDrawer: Drawer,
|
148 | 163 | ElSlider: Slider,
|
| 164 | + ElButtonGroup: ButtonGroup, |
149 | 165 | SettingSwitch,
|
150 | 166 | SettingInput,
|
151 | 167 | SettingButton,
|
|
421 | 437 | this.Exec('posrec');
|
422 | 438 | }, 3000);
|
423 | 439 | },
|
| 440 | + IrLED(mode) { |
| 441 | + this.Exec(`irled ${mode}`, 'socket'); |
| 442 | + }, |
424 | 443 | async GetPosInterval() {
|
425 | 444 | if(!this.moving) {
|
426 | 445 | const status = (await axios.get('./cgi-bin/cmd.cgi?name=move').catch(err => {
|
|
715 | 734 | display: flex;
|
716 | 735 | }
|
717 | 736 |
|
| 737 | + .image-frame-inner3 { |
| 738 | + justify-content: flex-end; |
| 739 | + display: flex; |
| 740 | + margin: 5px 0 5px 0; |
| 741 | + } |
| 742 | +
|
| 743 | + .ir-led { |
| 744 | + font-size: 24px; |
| 745 | + color: gray; |
| 746 | + } |
| 747 | +
|
718 | 748 | .still-image {
|
719 | 749 | width: calc(100% - 36px);
|
720 | 750 | }
|
|
0 commit comments