You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1240 lines
35 KiB

2 years ago
<template>
<basic-container class="basic-container" v-loading="loadingObj.pageLoading">
2 years ago
<div class="avue-crud">
11 months ago
<div v-h5uShow="!search">
<!-- 查询模块 -->
11 months ago
<el-form :inline="true" :model="query" class="header_search">
<el-form-item label="配送车次:">
<el-input
v-model="query.trainNumbers"
placeholder="请输入配送车次"
clearable
></el-input>
</el-form-item>
<el-form-item label="配送日期:" class="el-times">
<el-date-picker
class="w100"
v-model="query.taskTimeArr"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
value-format="YYYY-MM-DD"
clearable
>
</el-date-picker>
</el-form-item>
<el-form-item label="配送种类:">
<el-select class="w100" v-model="query.deliveryKind" placeholder="请选择业务类型">
<el-option :key="'1'" :value="'自主配送'">自主配送 </el-option>
<el-option :key="'2'" :value="'外协配送'">外协配送 </el-option>
</el-select>
</el-form-item>
<el-form-item label="配送司机:">
<el-select
class="w100"
v-model="query.driverName"
filterable
clearable
placeholder="请输入司机名称"
:loading="loading"
>
<el-option
v-for="item in driverData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictValue"
>
11 months ago
</el-option>
</el-select>
</el-form-item>
<el-form-item label="配送车辆:">
<el-select
class="w100"
v-model="query.vehicleName"
filterable
clearable
placeholder="请输入司机名称"
:loading="loading"
>
<el-option
v-for="item in vehicleData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictValue"
>
11 months ago
</el-option>
</el-select>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset"> </el-button>
</el-form-item>
</el-form>
11 months ago
</div>
<!-- <el-row :gutter="24" class="rows"> -->
<!-- <el-col :xl="14" :lg="7" :md="8" :sm="24" >-->
<!-- <span style="padding-left: 10%" >配送总车次{{statistics.vehiclesNub}}/总包件数{{statistics.deliveriesTotal}}/总库存品数{{statistics.dinventoryTotal}} </span>-->
<!-- </el-col>-->
<!-- <el-col :xl="10" :lg="7" :md="8" :sm="24"> -->
<!-- /{{statistics.cinventoryTotal}}-->
<!-- <span>商配总车次{{ statistics.commercialNub }}/总包件数{{ statistics.commercialTotal }} -->
<!-- </span> -->
<!-- </el-col> -->
<!-- </el-row> -->
<!-- 商配总车次 -->
7 months ago
<div style="height: 100%">
<div class="flex-c-sb">
<div class="flex1">
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="全部列表" name="first"> </el-tab-pane>
<el-tab-pane label="待配送" name="second"> </el-tab-pane>
<el-tab-pane label="配送中" name="third"> </el-tab-pane>
<el-tab-pane label="已完成" name="fourth"> </el-tab-pane>
</el-tabs>
</div>
<div class="order-info ml10">
<ul>
<li>
<img src="../../../../public/img/bg/Delivery.png" /> 商配总车次{{
statistics.commercialNub
}}
</li>
<li>
<img src="../../../../public/img/bg/package.png" />总包件数{{
statistics.commercialTotal
}}
</li>
</ul>
</div>
</div>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left" style="margin-top: 20px">
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>-->
<!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<!-- <el-button type="primary" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" @click="toDeliveryPlan">新增商配</el-button>
<el-button type="primary" @click="printBatchOrder">批量打印</el-button>
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo" plain
>导出
</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
<tablecmt
class="tableNode"
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionsc"
>
<template #default="slotProps">
10 months ago
<template v-if="slotProps.scope.column.label === '操作'">
7 months ago
<el-text @click="printOrder(slotProps.scope.row)"> </el-text>
<el-text @click="editsolt(slotProps.scope)"> </el-text>
<el-text
size="small"
v-if="
slotProps.scope.row.deliveryStatusName !== '已完成' ||
slotProps.scope.row.deliveryStatus !== '3'
"
@click="handleEdit(slotProps.scope)"
> </el-text
>
<el-text
size="small"
v-if="!slotProps.scope.row.signingNumber && !slotProps.scope.row.scannedNumber"
@click="CancelDelivery(slotProps.scope)"
>取消配送</el-text
>
7 months ago
<el-text @click="editmap(slotProps.scope)"> </el-text>
10 months ago
</template>
10 months ago
<template v-if="slotProps.scope.column.label === '车次号'">
<el-text class="el_textBtn" @click="editsolt(slotProps.scope)">
{{
slotProps.scope.column.label === '车次号' ? slotProps.scope.row.trainNumber : ''
}}
</el-text>
10 months ago
</template>
<!--<el-button size="small" @click="costadd(slotProps.scope)"> </el-button>-->
</template>
</tablecmt>
</div>
<el-row class="el-fy">
2 years ago
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
2 years ago
<!-- 分页模块 -->
2 years ago
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
2 years ago
</el-pagination>
</div>
</el-row>
<!-- 打印模块 -->
12 months ago
<!-- <el-dialog title="二维码" :visible.sync="isShow" width="780px" v-model="isShow">
1 year ago
<div ref="tableRef">
<div v-html="html"></div>
</div>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="printTemplate"> </el-button>
1 year ago
<el-button type="primary" @click="handleExport"> </el-button>
<el-button @click="isShow = false"> </el-button>
</span>
12 months ago
</el-dialog> -->
2 years ago
</div>
2 years ago
<el-dialog
class="el-dialog"
2 years ago
v-model="dialogVisible"
title="增值服务"
width="30%"
:model="addvalue"
:before-close="handleClose"
>
2 years ago
<el-form-item label="增值服务" prop="freightMark">
<el-checkbox-group v-model="form.addvalueType" @change="handleCheckedCitiesChange">
<el-checkbox
style="width: 100%; margin-bottom: 3%"
v-for="(item, index) in addvalueServeTypeData"
:key="item.dictKey"
:label="item.dictKey"
>{{ item.dictValue }}
<span v-if="index === 0 || index === 6 || index === 2 || index === 4"
>&nbsp;件数:
<el-input
type="number"
v-model="item.f"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 1)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
<span v-if="index === 1"
>公里:
<el-input
type="primary"
v-model="item.a"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 2)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
<span v-if="index === 3"
>距离:
<el-input
type="number"
v-model="item.b"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 3)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
<span v-if="index === 5"
>人数:
<el-input
type="number"
v-model="item.c"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 4)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
<span v-if="index === 0"
>楼层:
<el-input
type="number"
v-model="item.d"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 5)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
<span v-if="item"
>预计费用:
<el-input
type="number"
v-model="item.e"
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event, index, 6)"
style="width: 20%; border: none; border-bottom: 2px solid #eee"
/>
</span>
2 years ago
</el-checkbox>
</el-checkbox-group>
</el-form-item>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="aaa"> 确定(增值服务) </el-button>
</span>
2 years ago
</template>
</el-dialog>
2 years ago
</basic-container>
12 months ago
<MyPrint :html="html" v-model="isShow" width="70%"></MyPrint>
2 years ago
<edittablehead
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="columnList"
v-model="columnList"
2 years ago
></edittablehead>
2 years ago
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getPage,
getstatistics,
printBatch,
getDeliveryListExport,
$_cancelDelivery,
} from '@/api/distribution/distributionDeliveryList';
import option from '@/option/distribution/distributionDeliveryList';
7 months ago
import { columnList } from '@/option/distribution/distributionDeliveryListdis.js';
import { mapGetters } from 'vuex';
2 years ago
import { getDictionaryBiz } from '@/api/system/dict';
2 years ago
import { addIncrement } from '@/api/distribution/distributionStockArticle';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
import print from '@/utils/print';
import {
downloadXls,
getObjType,
handleClearTableQuery,
handleSelectQuery,
setNodeHeight,
} from '@/utils/util';
1 year ago
import { ElMessage, ElMessageBox } from 'element-plus';
1 year ago
import * as XLSX from 'xlsx';
2 years ago
export default {
data() {
2 years ago
return {
height: 0,
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 打印模版
html: '',
// 是否显示打印模版
isShow: false,
2 years ago
// 查询信息
query: {},
2 years ago
//数据统计
statistics: {},
2 years ago
drawerShow: false,
2 years ago
// 分页信息
page: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40,
2 years ago
},
//配送类型
deliverytypeData: [],
2 years ago
//配送种类
deliverykindData: [],
2 years ago
//配送状态
deliveryliststateData: [],
2 years ago
// 表单数据
form: {},
// 选择行
selectionList: [],
activeName: 'first',
11 months ago
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
7 months ago
columnList: columnList,
2 years ago
// 表单配置
option: option,
2 years ago
//增值服务弹窗
dialogVisible: false,
//增值服务字典列表
addvalueServeTypeData: [],
//增值服务列表
addvalueServeType: [],
//配送方式字典列表
deliveryWayData: [],
//增值服务对象
addvalueObj: {},
//订单行数据
orderInfo: {},
deliverId: null,
//费用列表
feeList: [],
//楼层
floorList: [],
2 years ago
// 表单列表
data: [],
driverData: [],
vehicleData: [],
loadingObj: {
pageLoading: false,
},
};
2 years ago
},
watch: {
// '$route.query.reservationId': {
handler(newVal, oldVal) {
console.log(newVal, oldVal);
// this.fetchData();
this.onLoad(this.page);
},
deep: false,
immediate: true,
// }
},
mounted() {
this.getvehicleData();
this.getDriverData();
2 years ago
this.queryDictionary();
this.init();
},
computed: {
...mapGetters(['permission']),
ids() {
2 years ago
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
2 years ago
},
methods: {
//tabs切换
handleClick(tab, event) {
console.log('tab------------------>', tab.props.name);
// this.query = {};
switch (tab.props.name) {
case 'first':
1 year ago
this.query.deliveryStatus = '';
break;
case 'second':
//待配送
this.query.deliveryStatus = '1';
break;
case 'third':
//配送中
this.query.deliveryStatus = '2';
break;
case 'fourth':
//已完成
this.query.deliveryStatus = '3';
break;
}
this.onLoad(this.page);
console.log('tab------------------>', tab);
console.log('event--------------->', event);
},
/**
* 导出
* */
handleExportInfo() {
let row = {};
const ids = this.selectionList.join(',');
row.ids = ids;
row.type = '1';
row = { ...row, ...this.query };
delete row.deliveryStatusName;
delete row.kindName;
getDeliveryListExport(row).then(res => {
console.log(res.data);
downloadXls(res.data, '商配配送计划数据.xlsx');
});
},
getvehicleData() {
return new Promise((rv, rev) => {
getVehicleList().then(res => {
const data = res.data.data;
let po = [];
data.forEach(item => {
let a = {
dictKey: item.id,
dictValue: item.vehicleNub,
};
po.push(a);
});
this.vehicleData = po;
console.log('^^^^^^^^^^^^^^^^', res.data.data);
rv(res.data.data);
});
});
},
getDriverData() {
return new Promise((rv, rev) => {
getDriverList().then(res => {
const data = res.data.data;
let po = [];
if (data && data.length) {
11 months ago
data.forEach(item => {
let a = {
dictKey: item.id,
dictValue: item.name,
};
po.push(a);
});
}
11 months ago
this.driverData = po;
console.log('===============>', res.data.data);
rv(res.data.data);
});
});
},
showdrawer(value) {
this.drawerShow = value;
2 years ago
},
2 years ago
handleCheckedCitiesChange(value) {
if (value) {
this.form.addvalueType = value;
}
console.log('>>>>>', this.form);
if (value.length < 1) {
this.costList = [];
this.costListName = [];
}
this.deliveryWayData.forEach(i => {
if (value.includes(i.dictKey)) {
console.log(i);
i.pitch = true;
this.costListName = value;
}
});
},
editmap(scope) {
const { row } = scope;
console.log('row>>>>>>xxxx', row);
this.$router.push({
2 years ago
path: '/distribution/reservation/atlas1',
query: {
2 years ago
item: JSON.stringify(row),
type: '2',
},
});
},
// 取消配送
1 year ago
CancelDelivery(scope) {
if (!JSON.parse(localStorage.getItem('my_data'))) {
11 months ago
ElMessage({
message: '请选择仓库!',
type: 'warning',
});
return;
11 months ago
}
1 year ago
console.log(scope, 'scope');
let data = {
1 year ago
deliveryId: scope.row.id,
};
ElMessageBox.confirm('是否取消配送?', '提示', {
1 year ago
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
1 year ago
.then(() => {
this.loading = true; ///开启加载效果
$_cancelDelivery(data).then(res => {
console.log(res, '取消带配送');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
this.onLoad(this.page);
}
// this.loading = false;///取消配送
});
})
.catch(() => {})
.finally(() => {
this.loading = false; ///取消配送加载效果
});
},
2 years ago
textbox(e, index, a) {
if (a === 6) {
this.feeList[index + 1] = e;
return;
}
if (a === 5)
if (index === 0 && a === 5) {
this.floorList[index + 1] = e;
return;
}
this.costList[index + 1] = e;
//费用列表
},
aaa() {
let addvalueInfos = [];
this.form.addvalueType.forEach((item, index) => {
let addvalueInfo = {};
addvalueInfo.addvalueId = item;
if (item == 1 || item == 3 || item == 5 || item == 7) {
addvalueInfo.number = this.costList[item];
}
if (item == 2) {
addvalueInfo.kilometer = this.costList[item];
}
if (item == 4) {
addvalueInfo.distance = this.costList[item];
}
if (item == 6) {
addvalueInfo.peopleNum = this.costList[item];
}
if (this.floorList.length > 1) {
addvalueInfo.floor = this.floorList[1];
this.floorList = [];
}
addvalueInfo.fee = this.feeList[item];
addvalueInfos.push(addvalueInfo);
});
let params = {};
params.id = this.deliverId;
params.addvalue = addvalueInfos;
params.relatedId = 2;
console.log('params>>>>>>>>>>>>>>>>>>', params);
2 years ago
addIncrement(params).then(res => {
this.dialogVisible = false;
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
this.onLoad(this.page);
},
2 years ago
selectionsc(value) {
// 筛选出所有被选中项的id
this.selectionList = value.map(item => item.id);
2 years ago
},
delectsolt(scope) {
const { row } = scope;
console.log(row);
},
2 years ago
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
2 years ago
},
2 years ago
editsolt(scope) {
const { row } = scope;
console.log(row);
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListedt',
query: {
7 months ago
// data: encodeURIComponent(JSON.stringify(row)),
id: row.id,
name: row.trainNumber + '-查看配送',
},
2 years ago
});
},
2 years ago
costadd(scope) {
const { row } = scope;
console.log('row>>>>>>>>>>', row);
this.deliverId = row.id;
2 years ago
//查询订单的增值服务,
this.addvalueServeType = [];
this.addvalue = {};
this.dialogVisible = true;
this.costList = [];
this.feeList = [];
this.floorList = [];
// this.orderInfo = row;
},
2 years ago
btnsc(index, row) {
console.log(index, row);
},
selectsc(index, row) {
handleSelectQuery(index, row, this.query);
2 years ago
this.onLoad(this.page);
},
timesc(index, row) {
console.log(index, row);
},
inputsc(index, row) {
this.query[row.prop] = index;
if (!index) {
delete this.query[row.prop];
2 years ago
}
this.onLoad(this.page);
},
2 years ago
queryDictionary() {
getDictionaryBiz('delivery_type').then(res => {
this.deliverytypeData = res.data.data;
});
2 years ago
getDictionaryBiz('addvalue_serve_type').then(res => {
this.addvalueServeTypeData = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => {
this.deliveryWayData = res.data.data;
});
getDictionaryBiz('distribution_deliverylist_state').then(res => {
this.deliveryliststateData = res.data.data;
this.columnList[6].checkarr = res.data.data.map(item => {
item.value = item.dictKey;
item.label = item.dictValue;
return item;
2 years ago
});
2 years ago
this.onLoad(this.page);
2 years ago
});
//配送状态
getDictionaryBiz('distribution_delivery_status').then(res => {
this.$functions.checkcColumnList('deliveryStatusName', this.columnList).checkarr =
res.data.data.map(item => {
item.value = item.dictKey;
item.label = item.dictValue;
return item;
});
});
//配送种类
getDictionaryBiz('distribution_deliverylist_kind').then(res => {
this.$functions.checkcColumnList('kindName', this.columnList).checkarr = res.data.data.map(
item => {
item.value = item.dictKey;
item.label = item.dictValue;
return item;
}
);
2 years ago
});
},
//类型切换
2 years ago
// deliverytype(type){
// this.query.type=type;
// this.onLoad(this.page)
// },
init() {
2 years ago
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide() {
2 years ago
this.search = !this.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
2 years ago
},
searchChange() {
if (this.query.deliveryKind) {
let deliveryKind = this.query.deliveryKind;
switch (deliveryKind) {
case '自主配送':
this.query.kind = '1';
break;
case '外协配送':
this.query.kind = '2';
break;
}
}
2 years ago
this.onLoad(this.page);
},
searchReset() {
2 years ago
this.query = {};
this.page.currentPage = 1;
handleClearTableQuery(this.columnList);
2 years ago
this.onLoad(this.page);
},
handleSubmit() {
2 years ago
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
2 years ago
}
},
handleAdd() {
this.title = '新增';
this.form = {};
this.box = true;
2 years ago
},
handleEdit(scope) {
if (!JSON.parse(localStorage.getItem('my_data'))) {
11 months ago
ElMessage({
message: '请选择仓库!',
type: 'warning',
});
return;
11 months ago
}
const { row } = scope;
this.$store.commit('DEL_ONCE_TAG', 'deliveryDiscuss');
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
query: {
id: row.id,
name: row.trainNumber + '-编辑配送',
},
2 years ago
});
},
handleView(row) {
this.title = '查看';
2 years ago
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleViewBlank(row) {
console.log('row>>>>>>>>>>>>>>>>', row);
2 years ago
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListedt',
query: {
7 months ago
// data: encodeURIComponent(JSON.stringify(row)),
id: row.id,
name: row.trainNumber + '-查看配送',
},
2 years ago
});
},
handleDelete() {
2 years ago
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
2 years ago
return;
}
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
beforeClose(done) {
done();
2 years ago
this.form = {};
this.view = false;
},
selectionChange(list) {
2 years ago
this.selectionList = list;
},
selectionClear() {
2 years ago
this.selectionList = [];
2 years ago
// this.$refs.table.clearSelection();
2 years ago
},
currentChange(currentPage) {
2 years ago
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
2 years ago
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
/**
* 新增按钮跳转至配送计划
*/
toDeliveryPlan() {
this.$store.commit('DEL_ONCE_TAG', 'deliveryDiscuss');
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
});
},
/**
* 批量打印
*/
async printBatchOrder() {
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
try {
this.loadingObj.pageLoading = true;
this.html = '';
const res = await printBatch({ ids: Array.from(this.selectionList).join(','), type: 1 });
this.isShow = true;
console.log('res :>> ', res);
const {
data: { code, data },
} = res;
if (code === 200) {
// 初始化打印页面
data.forEach(item => {
this.html += item.templateHtml;
});
}
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
/**
* 获取单个打印页面
*/
async printOrder(row) {
try {
this.loadingObj.pageLoading = true;
console.log('row :>> ', row);
this.html = '';
const res = await printBatch({ ids: row.id, type: 1 });
console.log('res :>> ', res);
const {
data: { code, data },
} = res;
if (code === 200) {
// 初始化打印页面
data.forEach(item => {
this.html += item.templateHtml;
});
this.isShow = true;
}
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
onLoad(page, params = {}) {
2 years ago
this.loading = true;
this.query.type = '1';
const submitData = { ...params, ...this.query };
11 months ago
if (getObjType(this.query.taskTimeArr) === 'array') {
submitData.taskTimeStart = this.query.taskTimeArr[0];
submitData.taskTimeEnd = this.query.taskTimeArr[1];
11 months ago
}
delete submitData.taskTimeArr;
getPage(page.currentPage, page.pageSize, submitData).then(res => {
2 years ago
const data = res.data.data;
// eslint-disable-next-line no-empty
for (let i = 0; i < data.records.length; i++) {
// eslint-disable-next-line no-empty
for (let j = 0; j < this.deliverytypeData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].type == this.deliverytypeData[j].dictKey) {
data.records[i].type = this.deliverytypeData[j].dictValue;
}
}
for (let j = 0; j < this.deliverykindData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].kind == this.deliverykindData[j].dictKey) {
data.records[i].kind = this.deliverykindData[j].dictValue;
}
}
for (let j = 0; j < this.deliveryliststateData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].state == this.deliveryliststateData[j].dictKey) {
data.records[i].state = this.deliveryliststateData[j].dictValue;
}
}
}
this.page.total = data.total;
this.data = data.records;
// data.records
2 years ago
this.loading = false;
this.selectionClear();
});
getstatistics(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
res => {
this.statistics = res.data.data;
}
);
2 years ago
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
},
/**
* 打印
*/
printTemplate() {
print();
},
1 year ago
/** 导出 */
handleExport() {
console.log('this.$refs.tableRef :>> ', this.$refs.tableRef);
const table = this.$refs.tableRef;
/* 将表格转换为 Workbook 对象 */
const wb = XLSX.utils.table_to_book(table);
console.log('wb :>> ', wb);
wb.Sheets.Sheet1;
//单元格外侧框线
const borderAll = {
top: {
style: 'thin',
},
bottom: {
style: 'thin',
},
left: {
style: 'thin',
},
right: {
style: 'thin',
},
};
for (const key in wb.Sheets.Sheet1) {
const item = wb.Sheets.Sheet1[key];
const type = getObjType(item);
console.log('type :>> ', type);
if (type !== 'object') continue;
item.s = {
border: borderAll,
font: {
// name: "微软雅黑",
// sz: 16,
color: { rgb: '000000' },
bold: true,
italic: false,
underline: false,
},
fill: {
fgColor: { rgb: 'C5D9F1' },
},
alignment: {
horizontal: 'center',
vertical: 'center',
wrapText: false, // 自动换行
},
};
}
/* 导出 Workbook 到 Excel 文件 */
XLSX.writeFile(wb, 'data.xlsx');
},
},
2 years ago
};
</script>
<style scoped lang="scss">
.avue-crud {
:deep(.el-dialog) {
width: fit-content;
justify-content: space-between;
}
:deep(.el-row) {
flex-direction: column;
flex-wrap: nowrap;
}
}
.order-info {
ul {
list-style: none;
display: flex;
padding: 0;
li {
color: #172e60;
position: relative;
padding: 0 20px;
display: flex;
align-items: center;
font-weight: 500;
img {
margin-right: 4px;
}
}
li::after {
content: '';
display: block;
width: 0.10417vw;
height: 18px;
background-color: #dddbdb;
position: absolute;
top: 2px;
left: 0px;
}
}
li:first-child::after {
content: none;
}
li:first-child {
padding-left: 0;
}
}
.el-form-item__content {
height: 30px;
}
// 日期选择框
.el-times {
:deep(.el-tooltip__trigger) {
height: 30px !important;
}
}
.el-btn {
min-width: 200px;
margin-right: 0 !important;
:deep(.el-form-item__content) {
width: 180px;
justify-content: flex-end;
justify-content: flex-end;
}
}
.avue-crud__right {
display: flex;
2 years ago
align-items: center;
}
.fr-fm {
width: 100%;
display: flex;
justify-content: space-between;
.el-tb {
display: flex;
flex-wrap: wrap;
.el-form-item {
width: 242px;
}
}
}
:deep(.avue-crud__header) {
.avue-crud__left {
margin-top: 0 !important;
2 years ago
}
}
:deep(.avue-crud) {
display: flex;
height: 100%;
flex-direction: column;
}
:deep(.el-card__body) {
height: 100%;
}
:deep(.el-card) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
height: 30px;
display: flex;
align-items: flex-end;
justify-content: flex-end;
}
11 months ago
.w100 {
width: 100% !important;
}
.el-dropdown-link {
color: #db832a;
}
.el_list {
:deep(.el-dropdown-menu__item:hover) {
color: #db832a !important;
}
}
</style>