Commit 1b662e23377c85d78f8ffc74dacaf25b83fd5938
1 parent
0ea94afc
充值明细 签名
Showing
1 changed file
with
6 additions
and
6 deletions
pages/rechargeDetail/rechargeDetail.vue
... | ... | @@ -251,8 +251,8 @@ |
251 | 251 | let data = { |
252 | 252 | kind: that.kind, |
253 | 253 | type: that.type, |
254 | - beginDate: new Date(that.beginDate + " 00:00:00"), | |
255 | - endDate: new Date(that.overDate + " 23:59:59") | |
254 | + beginDate: that.beginDate + " 00:00:00", | |
255 | + endDate: that.overDate + " 23:59:59" | |
256 | 256 | }; |
257 | 257 | console.log(data) |
258 | 258 | that.$myRequest({ |
... | ... | @@ -276,12 +276,12 @@ |
276 | 276 | let that = this |
277 | 277 | that.status = 'loading' |
278 | 278 | let paramsData = { |
279 | - pageNum: that.page, | |
280 | - pageSize: that.pageSize, | |
279 | + pageNum: that.page.toString(), | |
280 | + pageSize: that.pageSize.toString(), | |
281 | 281 | kind: that.kind, |
282 | 282 | type: that.type, |
283 | - beginDate: new Date(that.beginDate + " 00:00:00"), | |
284 | - endDate: new Date(that.overDate + " 23:59:59") | |
283 | + beginDate: that.beginDate + " 00:00:00", | |
284 | + endDate: that.overDate + " 23:59:59" | |
285 | 285 | } |
286 | 286 | |
287 | 287 | that.$myRequest({ | ... | ... |