bug:【ID1000388】仪器管理-仪器列表,仪器ID搜索多个时,报:转换“java.lang”类型的属性值失败,不支持多个搜索直接提示暂无数据即可

master
382696293@qq.com 2 years ago
parent 61d559022d
commit 987bf020ba

@ -140,7 +140,7 @@ public class GlobalExceptionHandler
{
log.error(e.getMessage(), e);
String message = e.getAllErrors().get(0).getDefaultMessage();
return AjaxResult.error(message);
return AjaxResult.error("参数格式不正确");
}
/**

@ -1514,8 +1514,9 @@ export default {
listInstrument(this.queryParams).then((response) => {
this.instrumentList = response.rows
this.total = response.total
this.loading = false
})
}).finally(() => {
this.loading = false
})
},
//
cancel() {

Loading…
Cancel
Save