| | |
| | | |
| | | <script setup> |
| | | import { defineProps, defineEmits, reactive, ref, watch } from 'vue'; |
| | | import { enumScene_2NA } from '@/enum/scene'; |
| | | import { enumLocationNA } from '@/enum/location'; |
| | | import { enumScene } from '@/enum/scene'; |
| | | import { enumLocation } from '@/enum/location'; |
| | | import sceneApi from '@/api/fysp/sceneApi'; |
| | | import { useFormConfirm } from '@/composables/formConfirm'; |
| | | |
| | |
| | | }, |
| | | }); |
| | | const loading = ref(false); |
| | | const sceneTypes = reactive(enumScene_2NA()); |
| | | const locations = reactive(enumLocationNA()); |
| | | const sceneTypes = reactive(enumScene(2, false)); |
| | | const locations = reactive(enumLocation(false)); |
| | | const cascaderProps = reactive({ |
| | | checkStrictly: true, |
| | | }); |