Browse Source

新增提货导出

dev-xx
qb 8 months ago
parent
commit
4230a136a3
  1. 13
      src/api/distribution/arteryDistrilbutionBillLadingList.js
  2. 26
      src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue
  3. 30
      src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue

13
src/api/distribution/arteryDistrilbutionBillLadingList.js

@ -173,5 +173,18 @@ export const postPageListExport = data => {
url: '/api/logpm-trunkline/billlading/pageListExport', url: '/api/logpm-trunkline/billlading/pageListExport',
method: 'post', method: 'post',
data, data,
responseType: 'blob',
});
};
/**
* 干线提货详情导出
*/
export const postBillladingDetailExport = data => {
return request({
url: '/api/logpm-trunkline/billlading/billladingDetailExport',
method: 'post',
data,
responseType: 'blob',
}); });
}; };

26
src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue

@ -105,9 +105,9 @@
> >
取消提货 取消提货
</el-button> </el-button>
<!-- <el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain <el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain>
>导出 导出
</el-button> --> </el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -332,6 +332,7 @@ import {
postBillladingPackageDetail, postBillladingPackageDetail,
postFindWaybillBillladingList, postFindWaybillBillladingList,
postAddWaybillToBillladingId, postAddWaybillToBillladingId,
postPageListExport,
} from '@/api/distribution/arteryDistrilbutionBillLadingList'; } from '@/api/distribution/arteryDistrilbutionBillLadingList';
// //
import { import {
@ -350,6 +351,7 @@ import {
deepClone, deepClone,
handleTranslationDataSeclect, handleTranslationDataSeclect,
} from '@/utils/util'; } from '@/utils/util';
import { dateNow } from '@/utils/date';
import { detail } from '@/api/flow/flow'; import { detail } from '@/api/flow/flow';
export default { export default {
@ -992,6 +994,24 @@ export default {
this.form.consigneeMobile = _item.consigneeMobile || ''; this.form.consigneeMobile = _item.consigneeMobile || '';
this.form.num = this.form.maxNum; 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() { activated() {
if (this.$store.state.isRefresh.refreshObj.addArteryDistrilbutionBillLadingList) { if (this.$store.state.isRefresh.refreshObj.addArteryDistrilbutionBillLadingList) {

30
src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue

@ -80,6 +80,11 @@
> >
确认修改 确认修改
</el-button> </el-button>
<!-- 导出 -->
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain>
导出
</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div> <div>
@ -287,9 +292,11 @@ import {
postFindChargeTypeList, postFindChargeTypeList,
postUpdateBillladingWaybillNum, postUpdateBillladingWaybillNum,
postFindBillladingLogList, postFindBillladingLogList,
postBillladingDetailExport,
} from '@/api/distribution/arteryDistrilbutionBillLadingList'; } from '@/api/distribution/arteryDistrilbutionBillLadingList';
import { isNumber } from '@/utils/util'; import { isNumber, downloadXls } from '@/utils/util';
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import { dateNow } from '@/utils/date';
import { getToken } from '@/utils/auth'; import { getToken } from '@/utils/auth';
export default { export default {
data() { data() {
@ -871,6 +878,27 @@ export default {
break; break;
} }
}, },
/** 导出 */
async handleExportInfo() {
try {
this.loadingObj.pageLoading = true;
const res = await postBillladingDetailExport({
...this.query,
billladingId: this.$route.query.id,
});
const { status, data } = res;
if (status !== 200) return;
console.log('data :>> ', data);
downloadXls(data, `干线提货数据-${this.deliverydata.billladingCode}-${dateNow()}.xlsx`);
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
}, },
}; };
</script> </script>

Loading…
Cancel
Save