input模糊搜索
getList() {
let dic=this.queryParameters()
let val = this.queryParams["userName"]
if (null != val && '' != val) {
dic["userName"]='*'+val+'*';
}
listPamsArchiveSearch(dic).then(response => {
this.nameinfo = response.data;
});
},
主要问题描述:对input框进行模糊搜索
主要代码提炼:
if (null != val && '' != val) {
dic["userName"]='*'+val+'*';
}