|
|
|
@ -105,9 +105,9 @@
|
|
|
|
|
> |
|
|
|
|
取消提货 |
|
|
|
|
</el-button> |
|
|
|
|
<!-- <el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain |
|
|
|
|
>导出 |
|
|
|
|
</el-button> --> |
|
|
|
|
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain> |
|
|
|
|
导出 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -332,6 +332,7 @@ import {
|
|
|
|
|
postBillladingPackageDetail, |
|
|
|
|
postFindWaybillBillladingList, |
|
|
|
|
postAddWaybillToBillladingId, |
|
|
|
|
postPageListExport, |
|
|
|
|
} from '@/api/distribution/arteryDistrilbutionBillLadingList'; |
|
|
|
|
// 引入表格配置文件 |
|
|
|
|
import { |
|
|
|
@ -350,6 +351,7 @@ import {
|
|
|
|
|
deepClone, |
|
|
|
|
handleTranslationDataSeclect, |
|
|
|
|
} from '@/utils/util'; |
|
|
|
|
import { dateNow } from '@/utils/date'; |
|
|
|
|
import { detail } from '@/api/flow/flow'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
@ -992,6 +994,24 @@ export default {
|
|
|
|
|
this.form.consigneeMobile = _item.consigneeMobile || ''; |
|
|
|
|
this.form.num = this.form.maxNum; |
|
|
|
|
}, |
|
|
|
|
/** 导出 */ |
|
|
|
|
async handleExportInfo() { |
|
|
|
|
try { |
|
|
|
|
this.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const res = await postPageListExport(this.query); |
|
|
|
|
|
|
|
|
|
const { status, data } = res; |
|
|
|
|
if (status !== 200) return; |
|
|
|
|
console.log('data :>> ', data); |
|
|
|
|
|
|
|
|
|
downloadXls(data, `干线提货数据-${dateNow()}.xlsx`); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
this.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
activated() { |
|
|
|
|
if (this.$store.state.isRefresh.refreshObj.addArteryDistrilbutionBillLadingList) { |
|
|
|
|