Browse Source

加计扣除导出参数调整

ljb 8 months ago
parent
commit
02526f4595

+ 1 - 1
src/views/external-reports/jjkc-standards/jjkc-auxiliary-details.vue

@@ -150,7 +150,7 @@ export default {
       })
     },
     handleExportClick({ xmId }) {
-      const exportParams = { xmId, ...this.params, costType: this.costType, yearAndMonth: this.yearAndMonth };
+      const exportParams = { xmId, ...this.params, type: this.costType, yearAndMonth: this.yearAndMonth };
       exportBloByPost(`/api/kd-scientific/xm/cost/details/deduction-list/export?${this.website.tokenHeader}=${getToken()}`, exportParams).then(res => {
         downloadXls(res.data, `${this.pageTitle}.xlsx`);
       });