只发送有效的数据给后台操作方法
//初始值是这样的
listQuery: {
pageIndex: 1,
pageSize: 10,
startTime: undefined,
endTime: undefined,
keyword: undefined,
state: undefined,
order: 1,
showClose: 1
},
//如果有值是undefined的话,先转为字符串,再转为对象,只会留下有值的数据
const listQuery = JSON.parse(JSON.stringify(this.listQuery))
//打印出listQuery为
{pageIndex: 1, pageSize: 20, order: 1, showClose: 1}