代码更新

This commit is contained in:
2022-10-20 21:33:22 +08:00
parent 3d3e8731b3
commit 13020ff9b1
2 changed files with 30 additions and 12 deletions

View File

@@ -97,7 +97,7 @@ export default {
add: false, add: false,
edit: false, edit: false,
del: false, del: false,
download: true, download: false,
reset: true reset: true
} }
}) })
@@ -121,13 +121,22 @@ export default {
return true return true
}, },
downdtl() { downdtl() {
debugger
if (this.currentRow !== null) { if (this.currentRow !== null) {
crud.downloadLoading = true crud.downloadLoading = true
const data = { debugger
var data = {}
if (this.crud.query.createTime !== undefined) {
data = {
'begin_time': this.crud.query.createTime[0], 'begin_time': this.crud.query.createTime[0],
'end_time': this.crud.query.createTime[1], 'end_time': this.crud.query.createTime[1],
'assessor_id': this.crud.query.assessor_id 'assessor_id': this.crud.query.assessor_id
} }
} else {
data = {
'assessor_id': this.crud.query.assessor_id
}
}
download('/api/performancemst/download', data).then(result => { download('/api/performancemst/download', data).then(result => {
downloadFile(result, '工作量统计', 'xlsx') downloadFile(result, '工作量统计', 'xlsx')
crud.downloadLoading = false crud.downloadLoading = false

View File

@@ -131,7 +131,7 @@ export default {
add: false, add: false,
edit: false, edit: false,
del: false, del: false,
download: true, download: false,
reset: true reset: true
} }
}) })
@@ -158,13 +158,22 @@ export default {
downdtl() { downdtl() {
if (this.currentRow !== null) { if (this.currentRow !== null) {
crud.downloadLoading = true crud.downloadLoading = true
const data = { var data = {}
if (this.crud.query.createTime !== undefined) {
data = {
'begin_time': this.crud.query.createTime[0], 'begin_time': this.crud.query.createTime[0],
'end_time': this.crud.query.createTime[1], 'end_time': this.crud.query.createTime[1],
'status': this.crud.query.status, 'status': this.crud.query.status,
'pcsn': this.crud.query.pcsn, 'pcsn': this.crud.query.pcsn,
'material_code': this.crud.query.material_code 'material_code': this.crud.query.material_code
} }
} else {
data = {
'status': this.crud.query.status,
'pcsn': this.crud.query.pcsn,
'material_code': this.crud.query.material_code
}
}
download('/api/powderOrderQuery/download', data).then(result => { download('/api/powderOrderQuery/download', data).then(result => {
downloadFile(result, '粉料开单记录', 'xlsx') downloadFile(result, '粉料开单记录', 'xlsx')
crud.downloadLoading = false crud.downloadLoading = false