diff --git a/ABAP_AS_WITH_POOL.jcoDestination b/ABAP_AS_WITH_POOL.jcoDestination new file mode 100644 index 0000000..c3f8d86 --- /dev/null +++ b/ABAP_AS_WITH_POOL.jcoDestination @@ -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 diff --git a/ruoyi-ui/src/views/components/Tools/Mobile/CustomerSelect/index.vue b/ruoyi-ui/src/views/components/Tools/Mobile/CustomerSelect/index.vue index 69c9326..8d808e2 100644 --- a/ruoyi-ui/src/views/components/Tools/Mobile/CustomerSelect/index.vue +++ b/ruoyi-ui/src/views/components/Tools/Mobile/CustomerSelect/index.vue @@ -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; });