| | |
| | | <span @click="handleDelAction"><DeleteOutlined /></span> |
| | | </div> |
| | | </div> |
| | | {{ currentPointEvent.aciton }} |
| | | <div class="event-edit"> |
| | | <takePhoto v-model:serial="serial" v-if="currentPointEvent.aciton.key === 'takePhoto'" /> |
| | | <take-photo |
| | | v-model:serial="serial" |
| | | v-if="['takePhoto', 'startRecord'].includes(currentPointEvent.aciton.key)" |
| | | /> |
| | | <interval-shoot v-model:serial="serial" /> |
| | | </div> |
| | | </div> |
| | | <div class="map-box"></div> |
| | |
| | | import { useMyStore } from '/@/store' |
| | | import { template as xmlTemplate } from '/@/utils/cesium/use-kmz-tsa' |
| | | import takePhoto from './component/take-photo.vue' |
| | | import intervalShoot from './component/interval-shoot.vue' |
| | | |
| | | const store = useMyStore() |
| | | // 事件编辑是否显示 |