fix(use-device-selection): default select to Camera

This commit is contained in:
yangsy
2025-12-08 11:10:20 +08:00
parent c189f79aa4
commit 70f52eb3bb

View File

@@ -8,7 +8,7 @@ export function useDeviceSelection() {
const router = useRouter();
const selectedStationCode = ref<string>();
const selectedDeviceType = ref<DeviceTypeVal>(DeviceType.AlarmHost);
const selectedDeviceType = ref<DeviceTypeVal>(DeviceType.Camera);
const selectedDevice = ref<NdmDeviceResultVO>();
const initFromRoute = (lineDevices: LineDevices) => {