|
|
|
@ -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()); |
|
|
|
|