Commit 1baeccc3 by LJM

add

parent 1e5b25ab
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name" : "wms", "name" : "wms",
"appid" : "__UNI__655E80D", "appid" : "__UNI__655E80D",
"description" : "供应链仓储App", "description" : "供应链仓储App",
"versionName" : "2.3.8", "versionName" : "2.3.9",
"versionCode" : 100000000, "versionCode" : 100000000,
"transformPx" : false, "transformPx" : false,
/* 5+App特有相关 */ /* 5+App特有相关 */
......
...@@ -252,6 +252,12 @@ ...@@ -252,6 +252,12 @@
this.is_batch = e.detail.value; this.is_batch = e.detail.value;
this.searchParams.is_full_sweep = this.is_batch ? 1 : 0; this.searchParams.is_full_sweep = this.is_batch ? 1 : 0;
if (this.is_batch) {
this.limit = 50;
} else {
this.limit = 16;
}
//重置相关数据 //重置相关数据
this.history_id = []; this.history_id = [];
this.list = []; this.list = [];
......
...@@ -693,7 +693,7 @@ ...@@ -693,7 +693,7 @@
* 获取列表数据 * 获取列表数据
*/ */
getData() { getData() {
this.request(API.haveTallyReceiveList, 'POST', { page: this.page, limit: this.limit, ...this.searchParams }, false).then(res => { this.request(API.haveTallyReceiveList, 'POST', { page: this.page, limit: this.limit, ...this.searchParams }, true).then(res => {
if (res.code === 0) { if (res.code === 0) {
if (res.data.total > 0) { if (res.data.total > 0) {
this.hasMoreData = true; this.hasMoreData = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment