Browse Source

Merge branch 'dev' into pre-production

pre-production
pref_mail@163.com 1 month ago
parent
commit
2b0f0f3ad6
  1. 12
      src/api/basicdata/TripartiteMaterial.js
  2. 26
      src/views/basicdata/TripartiteMaterial/list.vue

12
src/api/basicdata/TripartiteMaterial.js

@ -61,6 +61,18 @@ export const getDownTemplate = () => {
});
};
/**
* 导出
*/
export const getExportList = data => {
return request({
url: '/api/logpm-basicdata/factoryCategory/exportList',
method: 'post',
data,
responseType: 'blob',
});
};
/**
* 获取详情列表
*/

26
src/views/basicdata/TripartiteMaterial/list.vue

@ -33,7 +33,7 @@
"
>
</el-button>
<!-- <el-button type="primary" icon="Edit" @click="handleEdit"> 编辑 </el-button> -->
<el-button type="primary" icon="Download" @click="handleExport"> 导出 </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -252,6 +252,7 @@ import {
postLazyTree,
postBrandLists,
getDownTemplate,
getExportList,
} from '@/api/basicdata/TripartiteMaterial';
import { useStore } from 'vuex';
@ -644,6 +645,29 @@ const handleDownloadTemplate = async () => {
}
};
/** 导出 */
const handleExport = async () => {
try {
details.loadingObj.pageLoading = true;
const submitData = { ...details.query };
const res = await getExportList(submitData);
const { status, data } = res;
if (status !== 200) return;
downloadXls(data, '三方物料 - ' + new Date().getTime() + '.xlsx');
console.log('res :>> ', res);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
/** 导出表格数据 */
const handleExportData = () => {
exportExcel(details.columnList, details.data, '三方物料 - ' + new Date().getTime());

Loading…
Cancel
Save