This commit is contained in:
2024-05-24 15:59:49 +08:00
parent cf2a5a7861
commit dcba6962f2
19 changed files with 1508 additions and 286 deletions

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2022-08-24 11:19:43
* @LastEditors: zwq
* @LastEditTime: 2023-10-10 15:29:31
* @LastEditTime: 2024-05-24 09:45:34
* @Description:
*/
export default {
@@ -155,16 +155,13 @@ export default {
this.getDataList()
},
/** 导出按钮操作 */
handleExport(id) {
handleExport(params,name) {
// 处理查询参数
let params = { warehouseId:id };
params.pageNo = undefined;
params.pageSize = undefined;
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
this.exportLoading = true;
return this.urlOptions.exportURL(params);
}).then(response => {
this.$download.excel(response, '导出.xls');
this.$download.excel(response, name+'.xls');
this.exportLoading = false;
}).catch(() => { });
}

View File

@@ -2,7 +2,7 @@
/*
* @Date: 2020-12-29 16:49:28
* @LastEditors: zwq
* @LastEditTime: 2024-04-25 16:39:43
* @LastEditTime: 2024-05-21 14:44:43
* @FilePath: \basic-admin\src\filters\basicData\index.js
* @Description:
*/
@@ -88,6 +88,7 @@ const table = {
deliveryType: {
1: '单托盘出库',
2: '多托盘出库',
3: '点对点出库',
},
trayType: {
2: '12臂',