|
|
@@ -355,8 +355,22 @@
|
|
|
}
|
|
|
this.loading = true
|
|
|
let params = {
|
|
|
+ Order: this.Column.Order,
|
|
|
+ Prop: this.Column.Prop,
|
|
|
+ Status: '2',
|
|
|
CatalogType: this.formData.CatalogType
|
|
|
}
|
|
|
+ let myCreateOn = []
|
|
|
+ // 解析时间
|
|
|
+ if (this.CreateOn && this.CreateOn.length === 2) {
|
|
|
+ this.CreateOn[1].setHours(23)
|
|
|
+ this.CreateOn[1].setMinutes(59)
|
|
|
+ this.CreateOn[1].setSeconds(59)
|
|
|
+ myCreateOn.push(this.formatDateTime(this.CreateOn[0]))
|
|
|
+ myCreateOn.push(this.formatDateTime(this.CreateOn[1]))
|
|
|
+ }
|
|
|
+ // 查询条件
|
|
|
+ Object.assign(params, this.searchForm)
|
|
|
api.exportExcelIncome(params, this.$axios).then(res => {
|
|
|
this.loading = false
|
|
|
let docurl = res.data
|