吉安感知网项目-前端
shuishen
2026-01-26 c26059990f1d958a15bbfceb794408f9b5197a6a
feat:设备应用配置搜索栏调整
1 files modified
6 ■■■■ changed files
applications/drone-command/src/views/detectionCountermeasure/deviceAppConfig/index.vue 6 ●●●● patch | view | raw | blame | history
applications/drone-command/src/views/detectionCountermeasure/deviceAppConfig/index.vue
@@ -151,7 +151,10 @@
async function getList() {
    loading.value = true
    try {
        const res = await fwDevicePageApi(searchParams.value)
        const res = await fwDevicePageApi({
            ...searchParams.value,
            deviceStatusList: '0,1,2'
        })
        list.value = res?.data?.data?.records ?? []
        total.value = res?.data?.data?.total ?? 0
    } finally {
@@ -176,6 +179,7 @@
function getDictList() {
    getDictionaryByCode('deviceType,deviceStatus,deviceAtt').then(res => {
        dictObj.value = res.data.data
        dictObj.value.deviceStatus = dictObj.value.deviceStatus.filter(item => item.dictKey != 3)
    })
}