|
|
@ -165,6 +165,7 @@ const data = reactive({ |
|
|
|
rules: { |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data); |
|
|
@ -274,7 +275,7 @@ function getParamModelName(id){ |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
const getParamsNoAlertData = function getParamsNoAlertList() { |
|
|
|
function getParamsNoAlertList() { |
|
|
|
loading.value = true; |
|
|
|
if(deviceUuid != null && deviceUuid != undefined && deviceUuid != ""){ |
|
|
|
queryParams.value.deviceUuid = deviceUuid; |
|
|
@ -292,6 +293,11 @@ const getParamsNoAlertData = function getParamsNoAlertList() { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
defineExpose({ |
|
|
|
getParamsNoAlertList:getParamsNoAlertList, |
|
|
|
deviceUuid:deviceUuid |
|
|
|
}); |
|
|
|
|
|
|
|
getParamModel(); |
|
|
|
|
|
|
|
</script> |
|
|
|