This commit is contained in:
JIAL 2024-07-08 09:58:26 +08:00
parent 3a83940dd5
commit 6b2b20850c
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#for tests only !
#Mon Jul 08 09:58:00 CST 2024
jco.destination.pool_capacity=10
jco.client.lang=ZH
jco.client.ashost=172.19.0.125
jco.client.saprouter=
jco.client.user=RFC
jco.client.sysnr=00
jco.destination.peak_limit=10
jco.client.passwd=654321
jco.client.client=800

View File

@ -105,6 +105,9 @@ export default {
listCustomer(this.queryParams).then(response => {
this.customerList = response.data;
this.total = response.data.length;
if(this.total === 0) {
this.$message.warning("未查询到结果!");
}
this.currentPage = 1;
this.loading = false;
});