Browse Source

修改查询提示

hella_online_20240819
lijuncheng 1 month ago
parent
commit
50d3e76522
  1. 3
      src/mycomponents/query/balanceQuery.vue

3
src/mycomponents/query/balanceQuery.vue

@ -152,6 +152,7 @@
this.showErrorMessage("物料号为空,请先输入物料号") this.showErrorMessage("物料号为空,请先输入物料号")
return; return;
} }
this.tableData=[]
uni.showLoading({ uni.showLoading({
title: "加载中", title: "加载中",
mask: true mask: true
@ -187,7 +188,7 @@
if (res.data && res.data.length > 0) { if (res.data && res.data.length > 0) {
this.tableData = res.data this.tableData = res.data
} else { } else {
this.showErrorMessage(res.data.msg) this.showErrorMessage("系统异常:按"+res.msg+"未查找到库存")
} }
}).catch(error => { }).catch(error => {

Loading…
Cancel
Save