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',
method: 'post',
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 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) {

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

@ -80,6 +80,11 @@
>
确认修改
</el-button>
<!-- 导出 -->
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain>
导出
</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div>
@ -287,9 +292,11 @@ import {
postFindChargeTypeList,
postUpdateBillladingWaybillNum,
postFindBillladingLogList,
postBillladingDetailExport,
} from '@/api/distribution/arteryDistrilbutionBillLadingList';
import { isNumber } from '@/utils/util';
import { isNumber, downloadXls } from '@/utils/util';
import { ElMessage } from 'element-plus';
import { dateNow } from '@/utils/date';
import { getToken } from '@/utils/auth';
export default {
data() {
@ -871,6 +878,27 @@ export default {
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>

Loading…
Cancel
Save