修改诊断模版BUG

This commit is contained in:
lxd 2025-03-28 21:31:33 +08:00
parent 981350ddb5
commit 04749318a9
2 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,7 @@ const queryParams = reactive({
pageSize: 10,
id: undefined,
type: undefined,
status: undefined,
status: '',
content: undefined,
orderNum: undefined,
contentName: undefined,
@ -111,6 +111,7 @@ const getList = async () => {
loading.value = true
try {
queryParams.type = Type.value
queryParams.status = '1'
const data = await TemplateApi.getTemplatePage(queryParams)
list.value = data.list
total.value = data.total

View File

@ -167,6 +167,7 @@ const getList = async () => {
//
treeTableData.value = convertToTreeTableData(data.list)
await getCategoryOptions()
} finally {
loading.value = false
}