出口清单
This commit is contained in:
parent
d8dbf37c19
commit
5be6c4285b
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user