This commit is contained in:
linfso 2024-09-04 15:24:27 +08:00
parent 2ed367144d
commit 1c05d7b541

View File

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