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