Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

fix_bug_pro20231227
马远东 1 year ago
parent
commit
2ff6a538d6
  1. 67
      src/api/distribution/AddVehicleStowage.js
  2. 15
      src/api/distribution/VehicleArrivalManagement.js
  3. 103
      src/api/distribution/VehicleStowage.js
  4. 50
      src/components/tablecmt/tablecmt.vue
  5. 565
      src/option/distribution/addVehicleStowage.js
  6. 11
      src/router/views/index.js
  7. 1341
      src/views/distribution/artery/AddVehicleStowage.vue
  8. 33
      src/views/distribution/artery/VehicleArrivalManagement.vue
  9. 132
      src/views/distribution/artery/VehicleStowage.vue
  10. 991
      src/views/distribution/artery/truckLoadingDetails.vue
  11. 45
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  12. 9
      src/views/distribution/inventory/CreateOrder.vue
  13. 155
      src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue
  14. 669
      src/views/distribution/reservation/reservationAddFrom.vue
  15. 11
      src/views/distribution/reservation/reservationDetails.vue
  16. 121
      src/views/distribution/signfor/distributionSignfor.vue
  17. 109
      src/views/mail/inventory/list.vue
  18. 2202
      src/views/mail/order/add.vue
  19. 67
      src/views/mail/order/list.vue
  20. 20
      src/views/mail/reservation/list.vue
  21. 178
      src/views/waybill/CreateZeroOrder.vue
  22. 8
      vite.config.js

67
src/api/distribution/AddVehicleStowage.js

@ -0,0 +1,67 @@
import request from '@/axios';
/**
* 初始化获取配载信息
*/
export const postloadFindLoadInitData = (data = {}) => {
return request({
url: '/api/logpm-trunkline/carsLoad/findLoadInitData',
method: 'post',
data,
});
};
/**
* 通过名称查询仓库信息
*/
export const postFindWarehouseListByName = data => {
return request({
url: '/api/logpm-trunkline/carsLoad/findWarehouseListByName',
method: 'post',
data,
});
};
/**
* 查询可用订单
*/
export const postFindAllOrderList = data => {
return request({
url: '/api/logpm-trunkline/carsLoad/findAllOrderList',
method: 'post',
data,
});
};
/**
* 根据名称查询车辆
*/
export const postFindCarListByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findCarListByName',
method: 'post',
data,
});
};
/**
* 通过名称查司机
*/
export const postFindDriverListByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findDriverListByName',
method: 'post',
data,
});
};
/**
* 新增配载计划
*/
export const postSaveNew = data => {
return request({
url: '/api/logpm-trunkline/carsLoad/saveNew',
method: 'post',
data,
});
};

15
src/api/distribution/VehicleArrivalManagement.js

@ -0,0 +1,15 @@
import request from '@/axios';
/**
* 获取配载计划分页
*/
export const postloadArriveCarsPageList = (page, params) => {
return request({
url: '/api/logpm-trunkline/carsLoad/arriveCarsPageList',
method: 'post',
data: {
...page,
...params,
},
});
};

103
src/api/distribution/VehicleStowage.js

@ -0,0 +1,103 @@
import request from '@/axios';
/**
* 获取配载计划分页
*/
export const postloadCarsPageList = (page, params) => {
return request({
url: '/api/logpm-trunkline/carsLoad/loadCarsPageList',
method: 'post',
data: {
...page,
...params,
},
});
};
/**
* 查询所有计费方式
*/
export const postFindChargeTypeList = data => {
return request({
url: '/api/logpm-trunkline/billlading/findChargeTypeList',
method: 'post',
data,
});
};
/**
* 创建新提货单
*/
export const postSaveNew = data => {
return request({
url: '/api/logpm-trunkline/billlading/saveNew',
method: 'post',
data,
});
};
/**
* 查询运单列表
*/
export const postList = data => {
return request({
url: '/api/logpm-warehouseWaybill/list',
method: 'post',
data,
});
};
/**
* 更新提货单状态
*/
export const postUpdateBillladingStatus = data => {
return request({
url: '/api/logpm-trunkline/billlading/updateBillladingStatus',
method: 'post',
data,
});
};
/**
* 查询提货单详情
*/
export const postBillladingDetail = data => {
return request({
url: '/api/logpm-trunkline/billlading/billladingDetail',
method: 'post',
data,
});
};
/**
* 查询提货单包件明细
*/
export const postBillladingPackageDetail = data => {
return request({
url: '/api/logpm-trunkline/billlading/billladingPackageDetail',
method: 'post',
data,
});
};
/**
* 更新提货单关联运单数据
*/
export const postUpdateBillladingWaybillNum = data => {
return request({
url: '/api/logpm-trunkline/billlading/updateBillladingWaybillNum',
method: 'post',
data,
});
};
/**
* 提货单添加运单
*/
export const postAddWaybillToBillladingId = data => {
return request({
url: '/api/logpm-trunkline/billlading/addWaybillToBillladingId',
method: 'post',
data,
});
};

50
src/components/tablecmt/tablecmt.vue

@ -40,7 +40,7 @@
<!-- <el-text class="mx-1">{{ column.label }}</el-text> -->
<el-input
v-if="column.type == 2 || column.type == 13"
v-model="column.values"
v-model.trim="column.values"
clearable
:placeholder="`请输入${column.label}`"
@change="inputchange($event, column)"
@ -116,7 +116,7 @@
<el-input
@blur="handleNumberRange(column, scope.row)"
v-if="column.type == 10"
v-model="scope.row[column.prop]"
v-model.trim="scope.row[column.prop]"
type="number"
:min="0"
:max="scope.row.residueNumber"
@ -201,11 +201,8 @@ onMounted(() => {
var bodyContent = document.querySelectorAll('.maboxhi');
const _height = getWinHight();
console.log('bodyContent :>> ', bodyContent);
//
bodyContent.forEach(val => {
console.log('_height :>> ', _height);
console.log('val.getBoundingClientRect().top :>> ', val);
val.style.height = _height - val.getBoundingClientRect().top - 65 + 'px';
// if (val.style.height === '890px') val.style.height = '600px';
});
@ -324,7 +321,7 @@ watchEffect(() => {
});
});
onMounted(() => {
if (props.checkselect) {
/* if (props.checkselect) {
props.checkselect.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
@ -334,8 +331,29 @@ onMounted(() => {
selecttable.value.toggleRowSelection(item, true);
}
});
} */
let _checkSelect = props.checkselect;
if (!_checkSelect) {
_checkSelect = [];
}
handleCheckSelect(_checkSelect);
});
/** 勾选 */
function handleCheckSelect(select: []) {
if (select.length !== 0) {
select.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}
} else {
selecttable.value.toggleRowSelection(item, true);
}
});
} else {
selecttable.value.clearSelection();
}
}
function godowns(url) {
let a = document.createElement('a'); //a
a.href = url; //myurl
@ -402,27 +420,20 @@ function handleNumberRange(column: TableColumnType, row: TableDataType) {
row.enterNum = row.num;
}
}
console.log(row, 'row');
}
function handleEdit(index: number, row: TableDataType) {
console.log(index, row);
}
function handleEdit(index: number, row: TableDataType) {}
function makeCargo(value, column: TableColumnType) {
emit('makeCargo', value, column);
}
function inputchange(value, column: TableColumnType) {
if (typeof value == 'string') {
console.log(value, column);
emit('inputTxt', value, column);
}
}
function selectchange(value, column: TableColumnType) {
console.log(value, column);
emit('selectCheck', value, column);
}
function timechange(value, column: TableColumnType) {
console.log(value, column);
emit('timeCheck', value, column);
}
const handleSelectionChange = (param: TableDataType[]) => {
@ -431,25 +442,19 @@ const handleSelectionChange = (param: TableDataType[]) => {
emit('selection', param);
};
function inputclear(value, column: TableColumnType) {
console.log('', column);
emit('inputTxt', '', column);
}
function selectclear(value, column: TableColumnType) {
console.log('', column);
emit('selectCheck', '', column);
}
function timeclear(value, column: TableColumnType) {
console.log('', column);
emit('timeCheck', '', column);
}
function handleDelete(index: number, row: TableDataType) {
console.log(index, row);
}
function handleDelete(index: number, row: TableDataType) {}
const getSummaries = (param: any) => {
const { columns, data } = param;
let newarr = [];
let tji = 0;
console.log(columns, data);
columns.map((item, index) => {
if (index == 0) {
newarr[index] = '总计';
@ -467,7 +472,6 @@ const getSummaries = (param: any) => {
}
});
// console.log(columns)
console.log(newarr);
return newarr;
};
watchEffect(() => {
@ -543,7 +547,7 @@ function copyContent(content: string) {
}
}
defineExpose({});
defineExpose({ handleCheckSelect });
</script>
<style lang="scss">
// :root{

565
src/option/distribution/addVehicleStowage.js

@ -0,0 +1,565 @@
/** 节点信息 */
export const nodeInfoColumnList = [
{
prop: 'nodeName',
label: '节点名称',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'nowTransportCost',
label: '现付运输费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'oilCost',
label: '现付油卡费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'tollFee',
label: '路桥费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'backTransportCost',
label: '回付运输费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'reachTransportCost',
label: '到付运输费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'wholeCarInfoCost',
label: '整车信息费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'wholeCarInsuranceCost',
label: '整车保险费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'wholeCarGroundCost',
label: '整车落地费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'hairWholeCost',
label: '发站装车费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'hairWholeOtherCost',
label: '发站其它费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'unloadCost',
label: '到站卸车费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
{
prop: 'unloadOtherCost',
label: '到站其它费',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
},
/* {
prop: 'orderCode',
label: '预计到达时间',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
head: false,
}, */
];
/** 运单池的表头 */
export const columnList = [
{
prop: '',
label: '复选框',
type: 0,
width: 55,
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
fixed: true,
},
{
prop: 'createTime',
label: '开单日期',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'waybillNo',
label: '运单号',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'destination',
label: '到站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'destinationWarehouseName',
label: '目的站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'shipper',
label: '发货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'consignee',
label: '收货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeName',
label: '收货人',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'productName',
label: '品类名称',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalNum',
label: '件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'stockNum',
label: '在库数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'price',
label: '单价',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalWeight',
label: '重量(KG)',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalVolume',
label: '体积',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'freight',
label: '运费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'customerTrain',
label: '客户车次',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'remark',
label: '运单备注',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
];
/** 调度池的表头 */
export const newColumnList = [
{
prop: '',
label: '复选框',
type: 0,
width: 55,
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
fixed: true,
},
{
prop: 'createTime',
label: '开单日期',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'waybillNo',
label: '运单号',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'destination',
label: '到站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'destinationWarehouseName',
label: '目的站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'shipper',
label: '发货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'consignee',
label: '收货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeName',
label: '收货人',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'productName',
label: '品类名称',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalNum',
label: '件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'stockNum',
label: '在库数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'planNum',
label: '计划数',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'loadingNum',
label: '装车数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'price',
label: '单价',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalWeight',
label: '重量(KG)',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalVolume',
label: '体积',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'freight',
label: '运费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'customerTrain',
label: '客户车次',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'remark',
label: '运单备注',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
];

11
src/router/views/index.js

@ -191,6 +191,17 @@ export default [
/* webpackChunkName: "views" */ '@/views/distribution/artery/zeroAdditionalRecording.vue'
),
},
{
path: 'AddVehicleStowage',
name: '新增配载',
meta: {
i18n: 'data',
},
component: () =>
import(
/* webpackChunkName: "views" */ '@/views/distribution/artery/AddVehicleStowage.vue'
),
},
],
},
// {

1341
src/views/distribution/artery/AddVehicleStowage.vue

File diff suppressed because it is too large Load Diff

33
src/views/distribution/artery/VehicleArrivalManagement.vue

@ -162,7 +162,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:current-page="page.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -237,7 +237,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="trickleLoadingPage.currentPage"
:current-page="trickleLoadingPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="trickleLoadingPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -274,6 +274,7 @@ import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls } from '@/utils/util';
import { columnList, detailsColumnList } from '@/option/distribution/VehicleArrivalManagement';
import { postloadArriveCarsPageList } from '@/api/distribution/VehicleArrivalManagement';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -321,7 +322,7 @@ const details = reactive({
columnList,
detailsColumnList,
/** 列表数据 */
data: [{}],
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
@ -333,13 +334,13 @@ const details = reactive({
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
/** 装车明细分页参数 */
trickleLoadingPage: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
@ -383,7 +384,25 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = (page: any) => {};
const onLoad = async (page: any, params = {}) => {
try {
// loading
details.loadingObj.list = true;
//
const res = await postloadArriveCarsPageList(details.page, { ...details.query, ...params });
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
onLoad(details.page);
/** 搜索 */
const searchChange = () => {
@ -394,7 +413,7 @@ const searchChange = () => {
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
details.page.pageNum = 1;
onLoad(details.page);
};

132
src/views/distribution/artery/VehicleStowage.vue

@ -66,9 +66,7 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="searchChange"
>新增配载
</el-button>
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新增配载 </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset()"
> </el-button
>
@ -120,9 +118,9 @@
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-text @click="handleShowzeroAdditionalRecording(slotProps.scope)">
<!-- <el-text @click="handleShowzeroAdditionalRecording(slotProps.scope)">
零担补录
</el-text>
</el-text> -->
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text>
<el-text>编辑</el-text>
<el-text>数据同步</el-text>
@ -135,10 +133,10 @@
</el-row>
<!-- 统计 -->
<el-row>
<!-- <el-row>
<div>选择数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
<div>总计: 总数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
</el-row>
</el-row> -->
<!-- 分页模块 -->
<el-row class="el-fy">
@ -150,7 +148,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:current-page="page.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -250,7 +248,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="trickleLoadingPage.currentPage"
:current-page="trickleLoadingPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="trickleLoadingPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -390,6 +388,7 @@ import {
warehouseNodeColumnList,
truckLoadingColumnList,
} from '@/option/distribution/VehicleStowage';
import { postloadCarsPageList } from '@/api/distribution/VehicleStowage';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -452,13 +451,13 @@ const details = reactive<any>({
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
/** 装车明细分页参数 */
trickleLoadingPage: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
@ -474,14 +473,6 @@ const details = reactive<any>({
/** 列表Dom节点 */
listNode: '',
form: {},
/** 零担补录信息 */
zeroAdditionalRecordingInfo: {
oldPage: {
pageSize: 30,
currentPage: 1,
total: 0,
},
},
/** 全屏 */
fullscreenObj: {
/** 装车明细 */
@ -501,7 +492,6 @@ const {
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
} = toRefs(details);
@ -516,10 +506,100 @@ onMounted(() => {
console.log('details.listNode :>> ', details.listNode);
clearTimeout(timer);
}, 100);
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let checkListnewarr = functions.getStorage(window.location.pathname + 'checkList');
let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList');
let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist');
if (checkListnewarr) {
details.columnList.map(item => {
item.head = false;
});
checkListnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
item.head = true;
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.head) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'checkList', arr);
}
if (flexListnewarr) {
details.columnList.map(item => {
item.fixed = false;
});
flexListnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
if (item.type == 6) {
item.fixed = 'right';
} else {
item.fixed = true;
}
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.fixed) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'flexList', arr);
}
if (sortlistnewarr) {
details.columnList.map(item => {
item.sortable = false;
});
sortlistnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
item.sortable = true;
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.sortable) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'sortlist', arr);
}
});
/** 请求页面数据 */
const onLoad = (page: any) => {};
const onLoad = async (page: any, params = {}) => {
try {
// loading
details.loadingObj.list = true;
//
const res = await postloadCarsPageList(details.page, { ...details.query, ...params });
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
onLoad(details.page);
/** 搜索 */
const searchChange = () => {
@ -530,7 +610,7 @@ const searchChange = () => {
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
details.page.pageNum = 1;
onLoad(details.page);
};
@ -694,6 +774,14 @@ const handleFullScrean = (_type: 'open' | 'close', _name: string) => {
break;
}
};
/** 新增配载 */
const handleAdd = () => {
$router.push({
path: '/distribution/artery/AddVehicleStowage',
query: { name: '新增配载', type: 1 },
});
};
</script>
<style scoped lang="scss">

991
src/views/distribution/artery/truckLoadingDetails.vue

@ -0,0 +1,991 @@
<template>
<basic-container>
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d">
<el-form-item label="网点:">
<el-input v-model="query.serviceNumber" placeholder="请选择网点" clearable></el-input>
</el-form-item>
<el-form-item label="承运时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="发车时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="创建时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="签收时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="车次号:" class="el-times">
<el-input v-model="query.stockupArea" placeholder="请输入车次号"></el-input>
</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>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="Plus" @click="handleShowTransfer('add')"
>新增中转
</el-button>
<el-button type="primary" icon="Printer" @click="searchReset()">装载清单</el-button>
<el-button type="primary" icon="Printer" @click="searchReset()"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="Van" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消发车</el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消装车</el-button>
<el-button type="primary" icon="CircleCheck" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Edit" @click="searchReset()"> </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>
</el-row>
<!-- 表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '批次号'">
<el-text>123</el-text>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
删除
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
文员签收
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
结算
</el-button>
<el-button type="text" @click="handleShowTruckLoadingDetails(slotProps.scope)"
>装车明细</el-button
>
</template>
</template>
</tablecmt>
</el-row>
<!-- 统计 -->
<el-row>
<div>选择数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
<div>总计: 总数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<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"
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 编辑弹窗 -->
<el-dialog
title="装车明细"
v-model="details.popUpShow.truckLoadingDetailVisited"
width="80%"
:before-close="beforeClose"
append-to-body
class="truckLoadingDetailPopUp"
>
<el-form :inline="true" :model="query" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="扫码时间:" class="el-times">
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="卸车时间:" class="el-times">
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Edit" @click="searchChange">中转批量签收</el-button>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"> </el-button>
<el-button icon="el-icon-printer" @click="searchReset()">二维码</el-button>
<el-button
icon="Operation"
@click="showdrawer(true, 'truckLoadingDetail')"
circle
></el-button>
</el-form-item>
</div>
</el-form>
<tablecmt
:columnList="details.detailsColumnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps"> </template>
</tablecmt>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="trickleLoadingPage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="trickleLoadingPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="trickleLoadingPage.total"
>
</el-pagination>
</el-dialog>
<!-- 创建 && 编辑 中转 -->
<el-dialog
title="新增中转"
v-model="details.popUpShow.transferVisited"
width="80%"
:before-close="beforeClose"
append-to-body
class="transferPopUp"
>
<el-form :inline="true" label-width="100px" :model="query" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="中转承运商">
<el-select
teleported="true"
v-model="query.value"
class="m-2"
placeholder="Select"
size="default"
>
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="经办人">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="送货方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="付款方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="运费分摊方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="送货司机">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="客户类型">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="是否结算">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="代收贷款">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
<el-form-item label="承运单号">
<el-input />
</el-form-item>
<el-form-item label="承运时间">
<el-date-picker
v-model="query.value1"
type="date"
placeholder="承运时间"
size="default"
/>
</el-form-item>
<el-form-item label="客户收货时间">
<el-date-picker
v-model="query.value1"
type="date"
placeholder="客户收货时间"
size="default"
/>
</el-form-item>
<el-form-item label="运费">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
<el-form-item label="司机结算费">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
</div>
<div style="width: 100%">
<el-form-item label="备注"> <el-input type="textarea" placeholder="备注" /></el-form-item>
</div>
</el-form>
<div class="add_row">
<!-- 列表模块 -->
<div style="width: 47%">
<div class="add_row_title">运单池</div>
<div v-if="!search">
<el-form :inline="true" label-width="80px" :model="details.oldQuery" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="备注" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item label="托盘码" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开单日期"
end-placeholder="开单日期"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"
> </el-button
>
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
</el-form-item>
</div>
</el-form>
</div>
<div style="margin-bottom: 10px" class="flex-c-sb">
<!-- 控件 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true, 1)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
<el-button type="text" style="cursor: pointer" @click="handleAddWaybill">
加入调度池
<el-icon><CaretRight /></el-icon>
</el-button>
</div>
<tablecmt
:columnList="details.oldColumnList"
:tableData="details.oldData"
:loading="loadingObj.oldListLoading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
</tablecmt>
<!-- 统计行 -->
<div class="statistics_row">
<!-- <div>合计: 选择数: {{ addInfo.oldSelectionList.length }}</div>
<div>件数: {{ selectionList.length }}</div>
<div>重量: {{ selectionList.length }}</div>
<div>体积: {{ selectionList.length }}</div> -->
</div>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
style="zoom: 0.9"
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="zeroAdditionalRecordingInfo.oldPage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="zeroAdditionalRecordingInfo.oldPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="zeroAdditionalRecordingInfo.oldPage.total"
>
</el-pagination>
</div>
</div>
<!-- 列表模块 -->
<div style="width: 47%">
<div class="add_row_title">调度池</div>
<div v-if="!search">
<el-form :inline="true" label-width="80px" :model="details.newQuery" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="备注" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item label="托盘码" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开单日期"
end-placeholder="开单日期"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"
> </el-button
>
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
</el-form-item>
</div>
</el-form>
</div>
<div style="margin-bottom: 10px" class="flex-c-sb">
<el-button type="text" class="pointer" @click="handleRemoveWaybill">
<el-icon><CaretLeft /></el-icon>
移除调度池
</el-button>
<!-- 控件 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true, 2)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
<tablecmt
:columnList="details.newColumnList"
:tableData="details.newData"
:loading="loadingObj.newListLoading"
@inputTxt="newInputsc"
@timeCheck="newTimesc"
@btnCheck="newBtnsc"
@selectCheck="newSelectsc"
@selection="newSelectionChange"
>
</tablecmt>
<div class="statistics_row">
<!-- <div>合计: 选择数: {{ addInfo.oldSelectionList.length }}</div>
<div>件数: {{ selectionList.length }}</div>
<div>重量: {{ selectionList.length }}</div>
<div>体积: {{ selectionList.length }}</div> -->
</div>
</div>
<!-- <el-button></el-button> -->
</div>
</el-dialog>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.editColumnList"
></edittablehead>
</template>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import functions from '@/utils/functions';
import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls } from '@/utils/util';
import {
columnList,
detailsColumnList,
oldColumnList,
newColumnList,
} from '@/option/distribution/TripartiteTransfer';
import { useRouter } from 'vue-router';
//
const $router = useRouter();
const details = reactive<any>({
/** 是否开启搜索 */
search: true,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
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];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 装车明细表头信息 */
detailsColumnList,
/** 修改的列表信息 */
editColumnList: [],
/** 运单池 */
oldColumnList,
/** 调度池 */
newColumnList,
/** 列表数据 */
data: [{}],
newData: [],
oldData: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
oldListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 30,
total: 0,
},
/** 装车明细分页参数 */
trickleLoadingPage: {
currentPage: 1,
pageSize: 30,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 装车详情 */
truckLoadingDetailVisited: false,
/** 零担补录 */
transferVisited: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 零担补录信息 */
zeroAdditionalRecordingInfo: {
oldPage: {
pageSize: 30,
currentPage: 1,
total: 0,
},
},
/** 无用 */
options: [],
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
} = toRefs(details);
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
onMounted(() => {
const timer = setTimeout(() => {
details.listNode = document.querySelector('.maboxhi');
details.listNode.style.transition = 'all .5s ease-out';
console.log('details.listNode :>> ', details.listNode);
clearTimeout(timer);
}, 100);
});
/** 请求页面数据 */
const onLoad = (page: any) => {};
/** 搜索 */
const searchChange = () => {
onLoad(details.page);
};
/** 清空表单 */
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
onLoad(details.page);
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean, _type?: string) => {
switch (_type) {
case 'truckLoadingDetail':
details.editColumnList = details.detailsColumnList;
break;
default:
console.log('123 :>> ', 123);
details.editColumnList = details.columnList;
break;
// details.
}
details.drawerShow = _flag;
};
/** 是否开启搜索区 */
const searchHide = () => {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;
} else {
}
return document.documentElement.clientHeight;
}
details.search = !details.search;
const timer = setTimeout(() => {
details.listNode.style.height =
getWinHight() - details.listNode.getBoundingClientRect().top - 70 + 'px';
clearTimeout(timer);
}, 10);
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
onLoad(details.page);
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
onLoad(details.page);
};
/** 表格表头输入框搜索 */
const btnsc = () => {};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
details.query[row.prop] = index;
if (!index) delete details.query[row.prop];
if (row.prop === 'certificateTypeName') {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
onLoad(details.page);
};
/** 表格表头复选框选择 */
const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 表格表头输入框搜索 */
const newInputsc = (index, row) => {
details.newQuery[row.prop] = index;
onLoad(details.page);
};
/** 表格表头时间选择 */
const newTimesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.newQuery[row.prop] = index;
if (!index) {
delete details.newQuery[row.prop];
}
onLoad(details.page);
};
/** 表格表头输入框搜索 */
const newBtnsc = () => {};
/** 表格表头下拉框选择 */
const newSelectsc = (index, row) => {
details.newQuery[row.prop] = index;
if (!index) delete details.newQuery[row.prop];
if (row.prop === 'certificateTypeName') {
details.newQuery['certificateType'] = index;
if (!index) delete details.newQuery['certificateType'];
}
onLoad(details.page);
};
/** 表格表头复选框选择 */
const newSelectionChange = (list: any) => {
details.newSelectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad(details.page);
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
};
/** 弹出层开启前清除数据 */
const beforeClose = done => {
done();
details.form = {};
details.view = false;
};
/** 显示装车详情 */
const handleShowTruckLoadingDetails = ({ row }) => {
details.popUpShow.truckLoadingDetailVisited = true;
nextTick(() => {
// ,
const _node = document.querySelector('.truckLoadingDetailPopUp .maboxhi');
_node.style.height = '550px';
console.log('_node :>> ', _node);
});
};
/** 跳转零担补录 */
const handleShowzeroAdditionalRecording = ({ row }) => {
//
$router.push('/distribution/artery/zeroAdditionalRecording');
};
/** 新增中转 */
const addTransfer = async () => {
return null;
};
/** 修改中转 */
const editTransfer = async () => {
return null;
};
/** 显示新增或修改中转弹窗 */
const handleShowTransfer = async (_type: string) => {
switch (_type) {
//
case 'add':
await addTransfer();
break;
//
case 'edit':
await editTransfer();
break;
default:
break;
}
details.popUpShow.transferVisited = true;
nextTick(() => {
// ,
const _nodeList = document.querySelectorAll('.transferPopUp .maboxhi');
_nodeList.forEach(val => (val.style.height = '300px'));
});
};
/** 添加运单 */
const handleAddWaybill = () => {
// if (this.addInfo.oldSelectionList.length === 0) return this.$message.warning('');
// this.addInfo.newData = [...this.addInfo.newData, ...this.addInfo.oldSelectionList];
// this.addInfo.haveIds = this.addInfo.map(val => val.id);
};
/** 移除运单 */
const handleRemoveWaybill = () => {
// if (this.addInfo.newSelectionList.length === 0) return this.$message.warning('');
// this.addInfo.newData = [...this.addInfo.newData, ...this.addInfo.oldSelectionList];
// this.addInfo.haveIds = this.addInfo.map(val => val.id);
};
</script>
<style scoped lang="scss">
.fo-fl {
display: flex;
flex-wrap: wrap;
zoom: 0.9;
}
//
:deep(.el-date-editor.el-input) {
height: 100% !important;
width: 100% !important;
}
:deep(.el-range-editor.el-input__wrapper) {
height: 100% !important;
}
//
.add_row {
display: flex;
justify-content: space-between;
}
.add_row_title {
text-align: center;
margin-bottom: 10px;
font-size: 18px;
font-weight: bold;
}
//
.statistics_row {
margin: 10px 0;
font-size: 14px;
zoom: 0.9;
display: flex;
> div {
margin-right: 20px;
}
}
//
.crad_container {
display: flex;
.card_container_item {
flex: 1;
// padding: 10px;
border-radius: 5px;
box-shadow: 0 0 5px #ccc;
&:first-child {
margin-right: 20px;
}
.card_container_item_title {
padding: 10px;
border-bottom: 1px solid #ccc;
display: flex;
justify-content: space-between;
align-items: center;
}
.card_container_item_box {
padding: 10px;
}
}
}
.pointer {
cursor: pointer;
}
.transferPopUp :deep(.el-textarea) {
width: 500px;
}
</style>

45
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -3141,33 +3141,48 @@ export default {
// this.wid= row.id
// this.getWrapdetails(this.wpage)
},
handleOne(row) {
console.log('签收>>>>>>>>>>', row);
this.loading = true;
this.$confirm('确认一键装车?')
.then(_ => {
let data = {};
data.reservationId = row.id;
data.deliveryId = this.deliverydata.id;
console.log('------------->data', data);
getOneclick(data).then(res => {
this.$message.success(res.data.msg);
this.onLoad();
});
})
.catch(_ => {})
.finally(()=>{
this.loading = false;
});
},
//
handleSignone(row) {
console.log('一键签收222>>>>>>>>>>', row);
if (row.loadingStatus != '已装车'){
ElMessage({
message: '请先进行装车',
type: 'warning',
});
return;
}
this.reservationId = row.reservationId; //ID
this.signtitle = '一键签收';
this.signform = row;
this.TcForm = row;
this.signBox = true;
},
inventoryDetail(row) {
console.log('一键签收当前行参数>>>>>>>>>>', row);
},
handleOne(row) {
console.log('签收>>>>>>>>>>', row);
this.$confirm('确认一键装车?')
.then(_ => {
let data = {};
data.reservationId = row.id;
data.deliveryId = this.deliverydata.id;
console.log('------------->data', data);
getOneclick(data).then(res => {
this.$message.success(res.data.msg);
this.onLoad();
});
})
.catch(_ => {});
},
getWrapdetails(page) {
let params = {};
params.reservationId = this.wid;

9
src/views/distribution/inventory/CreateOrder.vue

@ -27,7 +27,9 @@
</div>
<div class="mt10">
<el-form-item class="mt10" label="运单号: " prop="waybillNo" label-width="80px">
<div><el-input v-model="query.waybillNo" placeholder="运单号" clearable /></div>
<div>
<el-input v-model.trim="query.waybillNo" placeholder="运单号" clearable />
</div>
</el-form-item>
</div>
</div>
@ -642,6 +644,7 @@
controls-position="right"
:precision="0"
:step="1"
:min="0"
/>
</el-form-item>
@ -1393,7 +1396,7 @@ const handleAdd = () => {
const initOrderList = async (params = {}) => {
try {
details.form.freezeStatus = '0';
const res = await getopenOrderAdvancePageList(details.page, { ...details.from, ...params });
const res = await getopenOrderAdvancePageList(details.page, { ...details.form, ...params });
//
console.log('res :>> ', res);
const { code, data } = res.data;
@ -1612,7 +1615,7 @@ const handleChooseConsigner = (column, prop, order) => {
/** 返回上一个页面 */
function back() {
useStores.commit('DEL_TAG_CURRENT');
$router.back(-1);
$router.back('-1');
}
/** 重置数据 */

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

@ -126,7 +126,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:current-page="page.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -324,7 +324,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="addInfo.oldPages.currentPage"
:current-page="addInfo.oldPages.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="addInfo.oldPages.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -761,7 +761,7 @@
background
@size-change="detailSizeChange"
@current-change="detailCurrentChange"
:current-page="detailPage.currentPage"
:current-page="detailPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="detailPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -857,13 +857,13 @@ export default {
numBill: 0,
//
page: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 40,
total: 0,
},
/** 详情内分页信息 */
detailPage: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 40,
},
@ -887,7 +887,7 @@ export default {
newSelectionList: [],
/** 未选择 -- 页码数据 */
oldPages: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 40,
},
@ -1099,7 +1099,7 @@ export default {
// this.loading = true;
this.options = [];
this.form.customerCode = null;
let cl = await getListClient(this.page.currentPage, this.page.pageSize, {
let cl = await getListClient(this.page.pageNum, this.page.pageSize, {
clientName: query,
});
console.log('客户信息1234>>>>', cl.data.data.records);
@ -1147,7 +1147,7 @@ export default {
searchReset() {
this.query = {};
this.stockupDate = [];
this.page.currentPage = 1;
this.page.pageNum = 1;
this.onLoad(this.page);
},
/** 表单提交 */
@ -1368,8 +1368,8 @@ export default {
// this.$refs.table.clearSelection();
},
/** 页码改变执行回调 */
currentChange(currentPage) {
this.page.currentPage = currentPage;
currentChange(pageNum) {
this.page.pageNum = pageNum;
this.onLoad(this.page);
},
/** 页数改变执行回调 */
@ -1378,8 +1378,8 @@ export default {
this.onLoad(this.page);
},
/** 详情 -- 页码改变执行回调 */
detailCurrentChange(currentPage) {
this.page.currentPage = currentPage;
detailCurrentChange(pageNum) {
this.page.pageNum = pageNum;
this.onLoad(this.page);
},
/** 详情 -- 页数改变执行回调 */
@ -1426,61 +1426,78 @@ export default {
},
/** 请求页面数据 */
async onLoad(page, params = {}) {
this.loading = true;
if (this.stockupDate.length > 0) {
let startDate = this.stockupDate[0];
let entDate = this.stockupDate[1];
params.startDate = this.getTime(startDate.toString());
params.entDate = this.getTime(entDate.toString());
}
getListOwnNUm(params).then(res => {
console.log('查询数量!!!', res.data.data);
if (!!res.data.data) {
this.treatNum = !res.data.data.treatNum ? 0 : parseInt(res.data.data.treatNum);
this.stopNum = !res.data.data.stopNum ? 0 : res.data.data.stopNum;
this.numBill = parseInt(this.treatNum) + parseInt(this.stopNum);
}
});
getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
console.log('???????', data);
this.page.total = data.total;
this.data = data.records;
try {
// loading
this.loading = true;
this.data.forEach(i => {
if (!!i.list) {
i.collectFee = 0;
i.storageFee = 0;
i.transport = 0;
i.forklift = 0;
i.otherFee = 0;
i.list.forEach(a => {
const { cost, money } = a; // acostmoney
switch (cost) {
case '1': //
i.collectFee = money ? parseInt(money) : 0;
break;
case '2': //
i.storageFee = money ? parseInt(money) : 0;
break;
case '3': //
console.log('0=-0-=');
i.transport = money ? parseInt(money) : 0;
break;
case '4': //
i.forklift = money ? parseInt(money) : 0;
break;
case '5': //
i.otherFee = money ? parseInt(money) : 0;
break;
}
});
}
});
console.log(this.data);
//
const res = await postPageList(page, { ...this.query, ...params });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
this.data = data.records;
this.page.total = res.total;
} catch (error) {
} finally {
this.loading = false;
this.selectionClear();
});
}
// if (this.stockupDate.length > 0) {
// let startDate = this.stockupDate[0];
// let entDate = this.stockupDate[1];
// params.startDate = this.getTime(startDate.toString());
// params.entDate = this.getTime(entDate.toString());
// }
// getListOwnNUm(params).then(res => {
// console.log('!!!', res.data.data);
// if (!!res.data.data) {
// this.treatNum = !res.data.data.treatNum ? 0 : parseInt(res.data.data.treatNum);
// this.stopNum = !res.data.data.stopNum ? 0 : res.data.data.stopNum;
// this.numBill = parseInt(this.treatNum) + parseInt(this.stopNum);
// }
// });
// getListOwn(page.pageNum, page.pageSize, Object.assign(params, this.query)).then(res => {
// const data = res.data.data;
// console.log('???????', data);
// this.page.total = data.total;
// this.data = data.records;
// this.data.forEach(i => {
// if (!!i.list) {
// i.collectFee = 0;
// i.storageFee = 0;
// i.transport = 0;
// i.forklift = 0;
// i.otherFee = 0;
// i.list.forEach(a => {
// const { cost, money } = a; // acostmoney
// switch (cost) {
// case '1': //
// i.collectFee = money ? parseInt(money) : 0;
// break;
// case '2': //
// i.storageFee = money ? parseInt(money) : 0;
// break;
// case '3': //
// console.log('0=-0-=');
// i.transport = money ? parseInt(money) : 0;
// break;
// case '4': //
// i.forklift = money ? parseInt(money) : 0;
// break;
// case '5': //
// i.otherFee = money ? parseInt(money) : 0;
// break;
// }
// });
// }
// });
// console.log(this.data);
// this.loading = false;
// this.selectionClear();
// });
},
async getMenDian(row, num) {
// console.log("",row);
@ -1520,7 +1537,7 @@ export default {
aa = i.value;
}
});
let bu = await getListName(this.page.currentPage, this.page.pageSize, {
let bu = await getListName(this.page.pageNum, this.page.pageSize, {
clientId: aa,
typeService: '3',
});
@ -1528,7 +1545,7 @@ export default {
if (bu.data.data?.records.length > 0) {
this.form.serviceType = bu.data.data.records[0].mold;
}
let cl = await getListClient(this.page.currentPage, this.page.pageSize, { pid: row });
let cl = await getListClient(this.page.pageNum, this.page.pageSize, { pid: row });
// console.log(">>>>",cl.data.data.records);
this.shop = [];
cl.data.data.records.forEach(i => {
@ -1545,7 +1562,7 @@ export default {
// this.loading = true;
this.options = [];
this.form.clientId = null;
let cl = await getListClient(this.page.currentPage, this.page.pageSize, {
let cl = await getListClient(this.page.pageNum, this.page.pageSize, {
clientCode: query,
});
console.log('客户信息1234>>>>', cl.data.data.records);

669
src/views/distribution/reservation/reservationAddFrom.vue

File diff suppressed because it is too large Load Diff

11
src/views/distribution/reservation/reservationDetails.vue

@ -704,6 +704,17 @@
}
],
stockListColumnList:[
{
prop: 'incomingBatch',
label: '入库批次号',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: true,
sortable: true,
head: false
},
{
prop: 'orderCode',
label: '订单自编号',

121
src/views/distribution/signfor/distributionSignfor.vue

@ -759,64 +759,83 @@ export default {
const idList= this.selectionList.map(item=>{
console.log('>>>>>>>>>',item);
return{id:item.id,reservationCode:item.reservationCode,client:item.consignee}
return item.id;
})
const _arr = [];
console.log(idList);
if (idList.length > 0){
// this.fullscreenLoading = true;
// this.dialogVisible = true;
idList.forEach(item=>{
return _arr.push(handlePicture(item.id));
})
console.log('arr>>>>>>>>>>>>>>>>>>>>',_arr);
function delayedTimer() {
console.log('Delayed timer executed!');
}
const timerId = setTimeout(delayedTimer, 500);
Promise.all(_arr).then((response)=>{
console.log('response>>>>>>>>>>>>>>>>>>>>>',response);
response.forEach((res, index) =>{
console.log('res>>>>>>>>>>>>>>>>>>>>>',res.data);
if (res.data.size > 0){
const _item = idList[index];
const blob = new Blob([res.data], {type: 'application/zip'});
let a = document.createElement("a");
a.href = window.URL.createObjectURL(blob);
// a.href = 'http://192.168.10.25:2888/D:/Test';
a.download = _item.client +'-'+_item.reservationCode +".zip";
// a.download = 'aaa' + ".zip";
a.style.display = "none";
document.body.appendChild(a);
a.click(); // aahref
a.remove();
}
})
for (let i = 0; i < 100; i++) {
this.fileSize = i;
}
// this.dialogVisible = false;
setTimeout(() => {
clearTimeout(timerId);
console.log('延迟执行完成');
this.fullscreenLoading = false;
console.log("ids-------------->",idList);
handlePicture(idList.join(",")).then(res=>{
if (res.data.size > 0){
// const _item = this.selectionList[index];
const blob = new Blob([res.data], {type: 'application/zip'});
let a = document.createElement("a");
a.href = window.URL.createObjectURL(blob);
// a.href = 'http://192.168.10.25:2888/D:/Test';
// a.download = _item.client +'-'+_item.reservationCode +".zip";
a.download = (new Date()).valueOf() + ".zip";
a.style.display = "none";
document.body.appendChild(a);
a.click(); // aahref
a.remove();
}
})
this.$notify({
title: '提示',
message: ('i', { style: 'color: teal'}, '开始下载...')
});
}, 3000);
})
// const _arr = [];
// console.log(idList);
// if (idList.length > 0){
// // this.fullscreenLoading = true;
// // this.dialogVisible = true;
//
// idList.forEach(item=>{
//
// return _arr.push(handlePicture(item.id));
// })
//
//
// console.log('arr>>>>>>>>>>>>>>>>>>>>',_arr);
// function delayedTimer() {
// console.log('Delayed timer executed!');
// }
// const timerId = setTimeout(delayedTimer, 500);
// Promise.all(_arr).then((response)=>{
//
// console.log('response>>>>>>>>>>>>>>>>>>>>>',response);
// response.forEach((res, index) =>{
// console.log('res>>>>>>>>>>>>>>>>>>>>>',res.data);
// if (res.data.size > 0){
// const _item = idList[index];
// const blob = new Blob([res.data], {type: 'application/zip'});
// let a = document.createElement("a");
// a.href = window.URL.createObjectURL(blob);
// // a.href = 'http://192.168.10.25:2888/D:/Test';
// a.download = _item.client +'-'+_item.reservationCode +".zip";
// // a.download = 'aaa' + ".zip";
// a.style.display = "none";
// document.body.appendChild(a);
// a.click(); // aahref
// a.remove();
// }
// })
// for (let i = 0; i < 100; i++) {
// this.fileSize = i;
// }
// // this.dialogVisible = false;
// setTimeout(() => {
// clearTimeout(timerId);
// console.log('');
// this.fullscreenLoading = false;
//
// this.$notify({
// title: '',
// message: ('i', { style: 'color: teal'}, '...')
// });
// }, 3000);
// })
//
// 3
}
// }

109
src/views/mail/inventory/list.vue

@ -255,23 +255,65 @@ export default {
checkarr: [],
fixed: true,
},
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '130',
width: '120',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'marketName',
label: '商场/客户',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'storeName',
label: '门店名称',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'serviceTypeName',
label: '服务类型',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: true,
sortable: true,
@ -292,7 +334,7 @@ export default {
label: '物料名称',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -302,7 +344,7 @@ export default {
label: '物料编码',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -317,26 +359,8 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'mallName',
// label: '',
@ -352,7 +376,7 @@ export default {
label: '库存数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -362,7 +386,7 @@ export default {
label: '冻结数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -371,7 +395,7 @@ export default {
label: '出库数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -401,31 +425,12 @@ export default {
label: '品牌',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'marketName',
label: '商场/客户',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'storeName',
label: '门店名称',
type: 2,
values: '',
width: '130',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'storeCode',
// label: '',
@ -461,7 +466,7 @@ export default {
label: '仓库名称',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -471,7 +476,7 @@ export default {
label: '物料单位',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -481,7 +486,7 @@ export default {
label: '拆包数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -491,7 +496,7 @@ export default {
label: '拆包状态',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [ {
value: `true`,
label: '是',

2202
src/views/mail/order/add.vue

File diff suppressed because it is too large Load Diff

67
src/views/mail/order/list.vue

@ -352,8 +352,8 @@ export default {
fixed: true,
},
{
prop: 'serviceNumber',
label: '服务号',
prop: 'waybillNumber',
label: '运单号',
type: 2,
values: '',
width: '130',
@ -363,8 +363,8 @@ export default {
head: false,
},
{
prop: 'waybillNumber',
label: '运单号',
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '130',
@ -373,12 +373,13 @@ export default {
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
values: '',
width: '130',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
@ -388,7 +389,7 @@ export default {
label: '商场名称',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -398,7 +399,7 @@ export default {
label: '货物名称',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -408,7 +409,7 @@ export default {
label: '所在仓库',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -418,7 +419,7 @@ export default {
label: '入库时间',
type: 4,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -428,7 +429,7 @@ export default {
label: '在库时间',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -438,7 +439,7 @@ export default {
label: '订单总件数',
type: 1,
values: '',
width: '130',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
@ -448,7 +449,7 @@ export default {
label: '收货单位',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -466,7 +467,7 @@ export default {
label: '在库件数',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -475,7 +476,7 @@ export default {
label: '可用数量',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -485,7 +486,7 @@ export default {
label: '未入库数量',
type: 1,
values: '',
width: '130',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
@ -494,7 +495,7 @@ export default {
label: '分拣数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -503,7 +504,7 @@ export default {
label: '配送数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -512,7 +513,7 @@ export default {
label: '中转数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -521,7 +522,7 @@ export default {
label: '签收数量',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -530,7 +531,7 @@ export default {
label: '上架状态',
type: 3,
values: '',
width: '130',
width: '140',
checkarr: [
],
@ -538,10 +539,10 @@ export default {
sortable: true,
},{
prop: 'allocation',
label: '货区-货位-货架',
label: '货位信息',
type: 1,
values: '',
width: '150',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -550,7 +551,7 @@ export default {
label: '订单来源',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -560,7 +561,7 @@ export default {
label: '所在托盘',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -570,7 +571,7 @@ export default {
label: '冻结状态',
type: 3,
values: '',
width: '130',
width: '140',
checkarr: [
],
@ -583,7 +584,7 @@ export default {
label: '预约状态',
type: 3,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -593,7 +594,7 @@ export default {
label: '订单状态',
type: 3,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -603,7 +604,7 @@ export default {
label: '是否齐套',
type: 3,
values: '',
width: '130',
width: '140',
checkarr: [
{
value: '2',
@ -642,7 +643,7 @@ export default {
label: '顾客名字',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -652,7 +653,7 @@ export default {
label: '顾客电话',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -662,7 +663,7 @@ export default {
label: '顾客地址',
type: 2,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -672,7 +673,7 @@ export default {
label: '增值服务',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
@ -690,7 +691,7 @@ export default {
label: '创建时间',
type: 1,
values: '',
width: '130',
width: '140',
checkarr: [],
fixed: false,
sortable: true,

20
src/views/mail/reservation/list.vue

@ -44,8 +44,8 @@
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"
>添加预约
</el-button>
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo(1)" plain
>导出
</el-button>
@ -80,7 +80,7 @@
@click="viewReservation(slotProps.scope)"
>查看
</el-text>
<el-text
size="small"
type="primary"
@ -89,7 +89,7 @@
@click="cancelReservation(slotProps.scope)"
>取消预约
</el-text>
</template>
</tablecmt>
</template>
@ -103,7 +103,7 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo(2)" plain
>导出
</el-button>
@ -138,7 +138,7 @@
@click="viewReservation(slotProps.scope)"
>查看
</el-text>
</template>
</tablecmt>
</template>
@ -410,7 +410,7 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'periodOfTimeName',
label: '时段',
@ -1365,10 +1365,10 @@ export default {
// this.query.reservationStatus = '1';
// }
let query = this.queryB;
query.reservationStatus = '2';
query.reservationStatus = '20';
if (this.activename === 'nocheck') {
query = this.queryA;
query.reservationStatus = this.queryA.reservationStatus || '1';
query.reservationStatus= '10';
}
// if (this.queryA.reservationStatus)
getReservationList(page.currentPage, page.pageSize, Object.assign(params, query)).then(res => {
@ -1381,7 +1381,7 @@ export default {
item.orderSource = a.dictValue;
}
});
this.resvervationStatusData.forEach(e => {
if (item.reservationStatus === e.dictKey) {
item.reservationStatus = e.dictValue;

178
src/views/waybill/CreateZeroOrder.vue

@ -14,7 +14,7 @@
<div class="flex-c-sb form_top">
<div>
<el-form-item class="mt10" label="运单号: " prop="waybillNo" label-width="80px">
<div><el-input v-model="query.waybillNo" placeholder="运单号" clearable /></div>
<div><el-input v-model.trim="query.waybillNo" placeholder="运单号" clearable /></div>
</el-form-item>
</div>
@ -28,7 +28,7 @@
</div>
<!-- 第一排 -->
<div class="table-row mt15">
<div class="table-row mt15 border-top">
<el-form-item label="发站仓:" prop="departureWarehouseName" class="el-times">
<el-input disabled v-model="query.departureWarehouseName" placeholder="货号"></el-input>
</el-form-item>
@ -395,7 +395,10 @@
<div style="margin-right: 10px; width: 55%; flex: none; zoom: 0.9">
<div style="flex: 1">
<div class="table-row-title" style="margin-bottom: 10px">
<div class="table-row-title-item">合计费用</div>
<div class="table-row-title-item">
合计费用
<span class="red">{{ totalCost }}</span>
</div>
</div>
<div>
<el-form label-width="fit-content">
@ -410,6 +413,9 @@
<el-form-item label="送货费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.deliveryFee"
></el-input-number>
@ -417,6 +423,9 @@
<el-form-item label="提货费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.pickupFee"
></el-input-number>
@ -424,6 +433,9 @@
<el-form-item label="仓库管理费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.warehouseManagementFee"
></el-input-number>
@ -431,6 +443,9 @@
<el-form-item label="仓储费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.storageFee"
></el-input-number>
@ -440,30 +455,45 @@
<el-row>
<el-form-item label="装卸费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.handlingFee"
></el-input-number>
</el-form-item>
<el-form-item label="其它费用:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.otherFee"
></el-input-number>
</el-form-item>
<el-form-item label="保价费:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.insuranceFee"
></el-input-number>
</el-form-item>
<el-form-item label="申明价值:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.claimingValue"
></el-input-number>
</el-form-item>
<el-form-item label="回扣:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.rebate"
></el-input-number>
@ -498,18 +528,7 @@
</el-select>
</el-form-item>
<el-form-item
label="付款方式:"
label-width="fit-content"
:rules="[
{
required: true,
message: '请选择付款方式',
trigger: 'change',
},
]"
prop="payWay"
>
<el-form-item label="付款方式:" label-width="fit-content" prop="payWay">
<el-select
v-model="query.payWay"
:teleported="false"
@ -527,6 +546,9 @@
<el-form-item label-width="fit-content" label="现付:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.xianPay"
></el-input-number>
@ -536,6 +558,9 @@
<el-row>
<el-form-item label-width="fit-content" label="到付:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.daoPay"
></el-input-number>
@ -543,6 +568,9 @@
<el-form-item label-width="fit-content" label="月结:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.yuePay"
></el-input-number>
@ -550,6 +578,9 @@
<el-form-item label-width="fit-content" label="回付:">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.huiPay"
></el-input-number>
@ -571,6 +602,9 @@
<div style="font-size: 14px">代收货款:</div>
<el-form-item label-width="0">
<el-input-number
:precision="2"
:min="0"
:step="0.1"
controls-position="right"
v-model="query.replacePrice"
></el-input-number>
@ -600,9 +634,9 @@
</el-form-item>
<el-form-item
prop="deliveryWay"
label="送货方式:"
label-width="fit-content"
prop="deliveryWay"
class="el-times"
>
<el-select v-model="query.deliveryWay" class="m-2" placeholder="送货方式">
@ -735,8 +769,6 @@ const details = reactive<any>({
destinationWarehouseId: '',
/** 货物号 */
goodsCode: '',
/** 订单号 */
orderCode: '',
/** 发货单位id */
shipperId: '',
/** 发货单位 */
@ -1050,12 +1082,7 @@ const details = reactive<any>({
{
required: true,
message: '请填写或选择发站仓',
trigger: 'blur',
},
{
required: true,
message: '请填写或选择发站仓',
trigger: 'change',
trigger: ['change', 'blur'],
},
],
/** 到站 */
@ -1063,7 +1090,7 @@ const details = reactive<any>({
{
required: true,
message: '请填写或选择到站地',
trigger: 'blur',
trigger: 'change',
},
],
/** 目的站名称 */
@ -1079,12 +1106,7 @@ const details = reactive<any>({
{
required: true,
message: '请选择或输入发货单位',
trigger: 'blur',
},
{
required: true,
message: '请选择或输入发货单位',
trigger: 'change',
trigger: ['change', 'blur'],
},
],
/** 发货人 */
@ -1092,12 +1114,7 @@ const details = reactive<any>({
{
required: true,
message: '请选择或输入收货人',
trigger: 'blur',
},
{
required: true,
message: '请选择或输入收货人',
trigger: 'change',
trigger: ['change', 'blur'],
},
],
/** 发货人电话 */
@ -1105,12 +1122,7 @@ const details = reactive<any>({
{
required: true,
message: '请选择或输入发货人电话',
trigger: 'blur',
},
{
required: true,
message: '请选择或输入发货人电话',
trigger: 'change',
trigger: ['change', 'blur'],
},
],
/** 收货单位 */
@ -1118,12 +1130,7 @@ const details = reactive<any>({
{
required: true,
message: '请选择或输入收货单位',
trigger: 'blur',
},
{
required: true,
message: '请选择或输入收货单位',
trigger: 'change',
trigger: ['change', 'blur'],
},
],
/** 收货人 */
@ -1133,11 +1140,6 @@ const details = reactive<any>({
message: '请选择或输入收货人',
trigger: 'blur',
},
{
required: true,
message: '请选择或输入收货人',
trigger: 'change',
},
],
/** 收货人电话 */
consigneeMobile: [
@ -1146,9 +1148,12 @@ const details = reactive<any>({
message: '请选择或输入收货人电话',
trigger: 'blur',
},
],
/** 付款方式 */
payWay: [
{
required: true,
message: '请选择或输入收货人电话',
message: '请选择付款方式',
trigger: 'change',
},
],
@ -1160,7 +1165,7 @@ const details = reactive<any>({
trigger: 'change',
},
],
/** 付款方式 */
/** 紧急度 */
urgency: [
{
required: true,
@ -1168,14 +1173,6 @@ const details = reactive<any>({
trigger: 'change',
},
],
/** 付款方式 */
payWay: [
{
required: true,
message: '请选择付款方式',
trigger: 'change',
},
],
},
payRules: [],
@ -1225,6 +1222,22 @@ const details = reactive<any>({
const { query, data, drawerShow, page, loadingObj } = toRefs(details);
//
const totalCost = computed(() => {
// let _num = 0;
const _num = computeNumber(0, '+', details.totalObj.totalFreight)
.next('+', details.query.deliveryFee)
.next('+', details.query.pickupFee)
.next('+', details.query.warehouseManagementFee)
.next('+', details.query.storageFee)
.next('+', details.query.handlingFee)
.next('+', details.query.otherFee)
.next('+', details.query.insuranceFee)
.next('+', details.query.rebate)
.next('+', details.query.claimingValue).result;
return _num;
});
const consignee = ref();
const consigneeName = ref();
const consigneeMobile = ref();
@ -1250,7 +1263,7 @@ getLazyTreeAll().then(res => {
});
/** 初始化获取暂存单转运单信息 */
const onLoad = async idsArr => {
const onLoad = async (idsArr = []) => {
const res = await postOpenOrderOpenZeroWaybillInfo();
const { code, data } = res.data;
console.log('data :>> ', data);
@ -1549,6 +1562,8 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
</script>
<style scoped lang="scss">
$borderColor: #172e60;
:deep(.el-date-editor.el-input, .el-date-editor.el-input__wrapper) {
height: 100% !important;
}
@ -1567,15 +1582,33 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
margin-bottom: 10px;
}
.border-top {
border-top: 1px solid $borderColor;
}
.table-row {
width: 100%;
display: flex;
// border: 1px solid #ddd;
// border-top: 1px solid $borderColor;
border-left: 1px solid $borderColor;
border-bottom: none;
box-sizing: border-box;
&:first-child {
display: block;
border-top: 1px solid $borderColor;
border-left: 1px solid $borderColor;
> div {
width: 100%;
border: none;
}
}
&:last-child {
display: block;
border: 1px solid #777;
border-bottom: 1px solid $borderColor;
border-right: 1px solid $borderColor;
box-sizing: border-box;
> div {
@ -1587,7 +1620,8 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
> div {
flex: 1;
padding: 5px;
border: 1px solid #777;
border-bottom: 1px solid $borderColor;
border-right: 1px solid $borderColor;
display: inline-flex;
box-sizing: border-box;
}
@ -1720,4 +1754,12 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
.mt15 {
margin-top: 15px;
}
.red {
color: var(--token-simulation-red-base-62);
}
:deep(.el-divider__text.is-center) {
font-size: 28px;
}
</style>

8
vite.config.js

@ -14,7 +14,7 @@ export default ({ mode, command }) => {
'/api': {
// target: 'http://192.168.10.126:8889',
// hy
// target: 'http://192.168.10.48:8888',
target: 'http://192.168.10.48:13000',
// lmy
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.101:8888',
@ -24,11 +24,11 @@ export default ({ mode, command }) => {
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.141:8777',
target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.116:8777',
// tjj
// target: 'http://192.168.10.25:13000',
// cg
// target: 'http://192.168.10.200:13000',
// cg
// target: 'http://192.168.10.200:13000',
// target: 'http://192.168.10.94:8888',
// target: 'http://test.api.huitongys.com',
// target: 'http://h5uapi.huitongys.com',

Loading…
Cancel
Save