Commit 11e1f271 authored by wxk's avatar wxk

bugfix

parent 30a6618b
......@@ -450,7 +450,7 @@
account_symbol: '',//充提币种
/*交易记录参数*/
transactionTime: ['', ''],// 时间筛选
pageSize: '10', //表格每页的条数
pageSize: 10, //表格每页的条数
currentPage: 1, //分页(当前页数)
total: 0, //记录总条数
list: [],//表格数据
......@@ -548,7 +548,7 @@
opt: "0"}],*/
/*充提记录参数*/
transactionTime1: ['', ''],// 时间筛选
pageSize1: '10', //表格每页的条数
pageSize1: 10, //表格每页的条数
currentPage1: 1, //分页(当前页数)
total1: 0, //记录总条数
list1: [],//表格数据
......@@ -682,7 +682,7 @@
coin: this.robotDetailInfo.coin,
base: this.robotDetailInfo.base,
page: "1",
size: this.pageSize,
size: this.pageSize+'',
opt: this.checkedOptions,
status: this.checkedStates,
min_time: this.transactionTime[0],
......@@ -705,6 +705,8 @@
(item.status==="2" ? "已撤单" : "部分成交"));
return item;
})
}else {
this.list =[];
}
}
})
......@@ -715,7 +717,7 @@
account: this.robotDetailInfo.account,
coin: [this.robotDetailInfo.coin, this.robotDetailInfo.base],
page: "1",
size: this.pageSize1,
size: this.pageSize1+'',
opt: this.checkedOptions1,
status: this.checkedStates1,
min_time: this.transactionTime1[0],
......@@ -733,6 +735,8 @@
item.status = item.status==="0" ? "失败" : "成功";
return item;
})
}else {
this.list1 = [];
}
}
})
......
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 to comment