diff --git a/src/views/emis/emisSettleSubBill/SubBillConfirmBySiteList.vue b/src/views/emis/emisSettleSubBill/SubBillConfirmBySiteList.vue index 06032222..51363a0b 100644 --- a/src/views/emis/emisSettleSubBill/SubBillConfirmBySiteList.vue +++ b/src/views/emis/emisSettleSubBill/SubBillConfirmBySiteList.vue @@ -1183,8 +1183,9 @@ export default { cancelForm(){ this.openForm = false; }, - /** 导出按钮操作 */ - handleExport() { + + /** 导出按钮操作 */ + handleExport() { const loadingInstance = this.$loading({ text: '正在导出...' }) @@ -1197,7 +1198,7 @@ export default { qExportParam.pageNum=1; qExportParam.pageSize=5000; - listEmisWaybill(qExportParam).then(response => { + listEmisSettleSubBill(qExportParam).then(response => { if (response.code === 200) { this.exportData(response.rows,loadingInstance); } @@ -1382,6 +1383,7 @@ export default { return v[j] })) }, + /** 列索引函数 */ getIndex($index) { return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1