|
|
|
@ -164,6 +164,13 @@
|
|
|
|
|
>批量打印</el-button |
|
|
|
|
> --> |
|
|
|
|
<!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain>删 除</el-button>--> |
|
|
|
|
<el-button |
|
|
|
|
type="danger" |
|
|
|
|
icon="el-icon-download" |
|
|
|
|
@click="handleExportInfo" |
|
|
|
|
plain |
|
|
|
|
>导出 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -328,7 +335,7 @@ import {
|
|
|
|
|
remove, |
|
|
|
|
getPage, |
|
|
|
|
getstatistics, |
|
|
|
|
printBatch, |
|
|
|
|
printBatch, getDeliveryListExport |
|
|
|
|
} from '@/api/distribution/distributionDeliveryList'; |
|
|
|
|
import option from '@/option/distribution/distributionDeliveryList'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
@ -337,6 +344,8 @@ import { addIncrement } from '@/api/distribution/distributionStockArticle';
|
|
|
|
|
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery'; |
|
|
|
|
import { getVehicleList } from '@/api/basicdata/basicdataVehicle'; |
|
|
|
|
import print from '@/utils/print'; |
|
|
|
|
import { getBillLadingExport } from '@/api/distribution/distrilbutionBillLading'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
@ -702,6 +711,23 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
/** |
|
|
|
|
* 导出 |
|
|
|
|
* */ |
|
|
|
|
handleExportInfo(){ |
|
|
|
|
let row = {}; |
|
|
|
|
// if (!!this.ids) { |
|
|
|
|
// row.ids = this.ids; |
|
|
|
|
// } |
|
|
|
|
const ids = this.selectionList.join(','); |
|
|
|
|
row.ids = ids; |
|
|
|
|
// console.log("<><><>>",ids); |
|
|
|
|
getDeliveryListExport(row).then(res => { |
|
|
|
|
// console.log(res.data); |
|
|
|
|
downloadXls(res.data, '全部配送计划数据.xlsx'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
getvehicleData() { |
|
|
|
|
return new Promise((rv, rev) => { |
|
|
|
|
getVehicleList(1, 10, '').then(res => { |
|
|
|
|