Commit 1fb7879b by caoyanzhi

update: 数据容错处理

parent 64c5a7f5
......@@ -256,8 +256,8 @@ export default {
search: that.searchInput || '', // 搜索字段
pageNum: that.currentPage, // 当前页
pageSize: that.pageSize, // 一页显示个数
startDate: this.dateRange[0] || '',
endDate: this.dateRange[1] || '',
startDate: Array.isArray(this.dateRange) ? this.dateRange[0] : '',
endDate: Array.isArray(this.dateRange) ? this.dateRange[1] : '',
cardStatus: this.cardStatus
};
postRequest('/haoban-app-customer-web/cardCoupon/find-card-log-page', para)
......
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