Commit e2d77954 by crushh

update: 群发任务门店详细时间筛选

parent 6fde49bb
...@@ -333,8 +333,8 @@ export default { ...@@ -333,8 +333,8 @@ export default {
storeId: that.$route.params.id storeId: that.$route.params.id
}; };
if (Array.isArray(para.date) && para.date.length === 2) { if (Array.isArray(para.date) && para.date.length === 2) {
para.startTime = para.date[0]; para.startTime = `${para.date[0]} 00:00:00`;
para.endTime = para.date[1]; para.endTime = `${para.date[1]} 23:59:59`;
delete para.date; delete para.date;
} }
if (this.$route.query.ecmPlanId) { if (this.$route.query.ecmPlanId) {
......
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