fix: 修复一些typescript编译报错问题

This commit is contained in:
郝先瑞
2022-01-22 00:32:20 +08:00
parent da4f92f577
commit 9973aff235
6 changed files with 18 additions and 14 deletions

View File

@@ -172,7 +172,8 @@ const state = reactive({
queryParams: {
pageNum: 1,
pageSize: 10,
orderSn: undefined
orderSn: undefined,
status:undefined
},
pageList: [],
total: 0,
@@ -223,7 +224,8 @@ function resetQuery() {
state.queryParams = {
pageNum: 1,
pageSize: 10,
orderSn: undefined
orderSn: undefined,
status: undefined
}
handleQuery()
}