fix: 网元主机页面查询框显示空白

This commit is contained in:
TsMask
2024-02-26 17:03:38 +08:00
parent 4cdfe6097d
commit 073f17b61f

View File

@@ -37,9 +37,9 @@ let dict: {
/**查询参数 */
let queryParams = reactive({
/**主机类型 */
hostType: '',
hostType: undefined,
/**分组 */
groupId: '',
groupId: undefined,
/**名称 */
title: '',
/**当前页数 */
@@ -51,8 +51,8 @@ let queryParams = reactive({
/**查询参数重置 */
function fnQueryReset() {
queryParams = Object.assign(queryParams, {
hostType: '',
groupId: '',
hostType: undefined,
groupId: undefined,
title: '',
pageNum: 1,
pageSize: 20,