Commit 08e07ca4 by chenyu

Merge branch 'feature/1月-1年后上线' of http://git.gicdev.com/integralMall/integral-mall into dev

parents 96b94cef 7c0270a0
......@@ -157,7 +157,7 @@
:dialogVisible.sync="dialogVisible"
:type="2"
:excelUrl="excelUrl"
:params="query"
:params="exportParams"
:projectName="projectName"
/>
</div>
......@@ -198,6 +198,14 @@ export default {
[this.query.beginTime, this.query.endTime] = val || ['', ''];
},
},
exportParams: {
get () {
return Object.assign({}, this.query, { beginTime: this.getTimeAll(this.query.beginTime), endTime: this.getTimeAll(this.query.endTime) });
},
set (val) {
Object.assign({}, this.query, { beginTime: this.getTimeAll(this.query.beginTime), endTime: this.getTimeAll(this.query.endTime) });
},
},
},
created () {
this.getSearchList();
......
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