|
@@ -201,8 +201,12 @@ export default {
|
|
|
month: record.month,
|
|
|
year: record.year
|
|
|
}
|
|
|
- exportMonthReportFeeMonth(parameter).then(file => {
|
|
|
- this.BaseTool.UPLOAD.downLoadExportExcel(file)
|
|
|
+ exportMonthReportFeeMonth(parameter).then(res => {
|
|
|
+ if (res.data == null) {
|
|
|
+ this.$message.info(res.message)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.BaseTool.UPLOAD.downLoadExportExcel(res)
|
|
|
})
|
|
|
},
|
|
|
handlePrint (record) {
|