Commit 4b3fec7e by caoyanzhi

update: 云日报记录查询条件

parent 61fa3b84
......@@ -377,12 +377,16 @@ export default {
search: that.conditionObj.searchInput || '', // 搜索字段
storeGroupIds: storeGroups.join(',') || '', // 门店分组,分组
storeType: that.conditionObj.storeType || '', //门店类型
startDate: that.conditionObj.dateRange[0] || '',
endDate: that.conditionObj.dateRange[1] || '',
// startDate: that.conditionObj.dateRange[0] || '',
// endDate: that.conditionObj.dateRange[1] || '',
currentPage: that.currentPage, // 当前页
pageSize: that.pageSize, // 一页显示个数
enterpriseId: that.activeBrand
};
if (Array(this.conditionObj.dateRange) && this.conditionObj.dateRange.length > 0) {
para.startDate = `${this.conditionObj.dateRange[0]} 00:00:00`;
para.endDate = `${this.conditionObj.dateRange[1]} 23:59:59`;
}
getRequest('/haoban-app-daily-three-web/daily/page-brand-task', para)
.then(res => {
let resData = res.data;
......
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