|
@@ -63,10 +63,12 @@ Page({
|
|
|
['content.pageNumber']: 1
|
|
|
})
|
|
|
if (this.data.content.pageNumber > this.data.content.pageTotal) return;
|
|
|
+ let content = JSON.parse(JSON.stringify(this.data.content));
|
|
|
+ if (content.where.begdate == "" && content.where.enddate == "") delete content.where;
|
|
|
_Http.basic({
|
|
|
"classname": "saletool.submitedit.submitedit",
|
|
|
"method": this.data.activeIndex == 2 ? "select_historylist" : "select_submitlist",
|
|
|
- content: this.data.content
|
|
|
+ content
|
|
|
}).then(res => {
|
|
|
console.log("提报列表", res)
|
|
|
this.selectComponent('#ListBox').RefreshToComplete();
|