Merge pull request '出口清单' (#177) from master-xjkh into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-frontend/pulls/177
This commit is contained in:
wuteng 2025-12-26 15:53:36 +08:00
commit 64bf2957db

View File

@ -336,6 +336,16 @@
v-hasPermi="['emis:emisWaybill:export']"
>导出</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExportExportList"
v-hasPermi="['emis:emisWaybill:exportExportList']"
>出口清单导出</el-button>
</el-col>
</el-row>
</div>
@ -1248,7 +1258,14 @@ export default {
getIndex($index) {
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
},
handleExportExportList(){
let qExportParam=this.initQueryParams();
qExportParam.pageNum=1;
qExportParam.pageSize=10000;
this.download('emis/emisWaybill/exportExportList', {
...qExportParam
}, `出口清单.xlsx`)
},
}
};
</script>