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
d7f6d12e93
  1. 16
      src/api/distribution/VehicleArrivalManagement.js
  2. 18
      src/api/distribution/distributionStockList.js
  3. 12
      src/api/distribution/truckLoadingDetails.js
  4. 2
      src/config/website.js
  5. 397
      src/option/distribution/TripartiteTransfer.js
  6. 66
      src/option/distribution/VehicleArrivalManagement.js
  7. 66
      src/option/distribution/VehicleStowage.js
  8. 96
      src/option/distribution/arteryDistrilbutionBillLadingList.js
  9. 80
      src/option/distribution/zeroAdditionalRecording.js
  10. 20
      src/option/waybill/ChangeOrder.js
  11. 22
      src/option/waybill/FreezeOrder.js
  12. 4
      src/option/waybill/ReceiptManagement.js
  13. 48
      src/option/waybill/TemporaryStorageList.js
  14. 12
      src/option/waybill/WarehousingByTrainNumber.js
  15. 64
      src/option/waybill/WaybillOrderList.js
  16. 10
      src/option/waybill/ZeroTagList.js
  17. 24
      src/option/waybill/orderPackageList.js
  18. 42
      src/option/waybill/orderPackageListDetails.js
  19. 169
      src/views/basicdata/vehicle/basicdataVehicle.vue
  20. 10
      src/views/basicdata/vehicle/basicdataVehicleform.vue
  21. 47
      src/views/distribution/artery/TripartiteTransfer.vue
  22. 12
      src/views/distribution/artery/TripartiteTransferDetails.vue
  23. 50
      src/views/distribution/artery/VehicleArrivalManagement.vue
  24. 23
      src/views/distribution/artery/VehicleStowage.vue
  25. 85
      src/views/distribution/artery/truckLoadingDetails.vue
  26. 114
      src/views/distribution/inventory/distributionStockListDetails.vue
  27. 18
      src/views/distribution/reservation/reservationAddFrom.vue
  28. 6
      vite.config.js
  29. 2404
      yarn.lock

16
src/api/distribution/VehicleArrivalManagement.js

@ -15,7 +15,7 @@ export const postloadArriveCarsPageList = (page, params) => {
};
/**
* 到车管理分页列表
* 到车
*/
export const postloadArriveCarByLoadId = (page, params) => {
return request({
@ -27,3 +27,17 @@ export const postloadArriveCarByLoadId = (page, params) => {
},
});
};
/**
* 取消到车
*/
export const postloadCancelArriveCarByLoadId = (page, params) => {
return request({
url: '/api/logpm-trunkline/carsLoad/cancelArriveCarByLoadId',
method: 'post',
data: {
...page,
...params,
},
});
};

18
src/api/distribution/distributionStockList.js

@ -37,7 +37,7 @@ export const getStockListOwn = (current, size, params) => {
}
/**
* 查看库存品包件库存品
* 查看预约详细的包件
* @param params
* @returns {AxiosPromise}
*/
@ -52,6 +52,22 @@ export const showInventoryPackgeCode = (reservationId,stockListId) => {
})
}
/**
* 查看库存品包件二维码
* @param params
* @returns {AxiosPromise}
*/
export const showInventorySourcePackageCode = (incomingBatch,packageIds) => {
return request({
url: '/api/logpm-distribution/distributionStockList/showInventorySourcePackageCode',
method: 'get',
params: {
incomingBatch,
packageIds
}
})
}
/**
* 商场的库存品列表
* @param {*} current

12
src/api/distribution/truckLoadingDetails.js

@ -0,0 +1,12 @@
import request from '@/axios';
/**
* 初始化获取配载信息
*/
export const postLoadingDetail = (data = {}) => {
return request({
url: '/api/logpm-trunkline/carsLoad/loadingDetail',
method: 'post',
data,
});
};

2
src/config/website.js

@ -52,7 +52,7 @@ export default {
// 第三方系统授权地址
authUrl: 'http://localhost/blade-auth/oauth/render',
// 报表设计器地址(cloud端口为8108,boot端口为80)
reportUrl: 'http://8.137.14.82:8108/ureport',
reportUrl: 'http://localhost:8108/ureport',
// 单点登录系统认证(blade-auth服务的地)
ssoUrl: 'http://localhost:8100/oauth/authorize?client_id=saber&response_type=code&redirect_uri=',
// 单点登录回调地址(Saber服务的登录界面地址)

397
src/option/distribution/TripartiteTransfer.js

@ -18,7 +18,7 @@ export const columnList = [
{
prop: 'carsNo',
label: '中转批次号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'carrierName',
label: '承运商',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -49,7 +49,7 @@ export const columnList = [
{
prop: 'payMethod',
label: '付款方式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -79,7 +79,7 @@ export const columnList = [
{
prop: 'carrierOrderCode',
label: '承运单号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -99,7 +99,7 @@ export const columnList = [
{
prop: 'loadStatus',
label: '状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -109,7 +109,7 @@ export const columnList = [
{
prop: 'isSettlement',
label: '是否结算',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -119,7 +119,7 @@ export const columnList = [
{
prop: 'customerType',
label: '客户类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -159,7 +159,7 @@ export const columnList = [
{
prop: 'deliveryType',
label: '送货方式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -169,7 +169,7 @@ export const columnList = [
{
prop: 'operator',
label: '经办人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -189,7 +189,7 @@ export const columnList = [
{
prop: 'settlementValue',
label: '结算金额',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -199,7 +199,7 @@ export const columnList = [
{
prop: 'settlementPerson',
label: '结算人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -246,9 +246,9 @@ export const detailsColumnList = [
fixed: true,
},
{
prop: 'orderCode',
prop: 'waybillNo',
label: '运单号',
type: 13,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -257,9 +257,9 @@ export const detailsColumnList = [
head: false,
},
{
prop: 'orderCode',
label: '合同号',
type: 13,
prop: 'loadCode',
label: '配载批次',
type: 1,
values: '',
width: '150',
checkarr: [],
@ -268,59 +268,70 @@ export const detailsColumnList = [
head: false,
},
{
prop: 'orderPackageCode',
label: '包条码',
type: 13,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'driverName',
label: '计划目的地',
type: 3,
prop: 'orderCode',
label: '合同号',
type: 1,
values: '',
width: '130',
width: '150',
checkarr: [],
fixed: false,
fixed: true,
sortable: true,
head: false,
},
{
prop: 'driverPhone',
label: '目的地',
type: 3,
prop: 'scanCode',
label: '包条码/产品名称',
type: 1,
values: '',
width: '130',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'warehouseName',
// {
// prop: 'driverName',
// label: '计划目的地',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'driverPhone',
// label: '目的地',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'scanStatusName',
label: '装卸状态',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'lineNameTitle',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'lineNameTitle',
// label: '订单来源',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'nodeNub',
label: '装车仓库',
type: 3,
prop: 'trayName',
label: '托盘名称',
type: 1,
values: '',
width: '130',
checkarr: [],
@ -328,8 +339,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'startTime',
label: '扫码时间',
prop: 'trayCode',
label: '托盘码',
type: 1,
values: '',
width: '130',
@ -337,10 +348,60 @@ export const detailsColumnList = [
fixed: false,
sortable: true,
},
{
prop: 'endTime',
label: '装卸仓库',
type: 3,
// {
// prop: 'nodeNub',
// label: '装车仓库',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'startTime',
// label: '扫码时间',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'endTime',
// label: '装卸仓库',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'planVolume',
// label: '卸车时间',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'billladingStatus',
// label: '装车类型',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'typeName',
label: '类型',
type: 1,
values: '',
width: '130',
checkarr: [],
@ -348,8 +409,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'planVolume',
label: '卸车时间',
prop: 'isDataName',
label: '有无数据',
type: 1,
values: '',
width: '130',
@ -358,9 +419,9 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'billladingStatus',
label: '装车类型',
type: 3,
prop: 'isAbnormalName',
label: '是否异常',
type: 1,
values: '',
width: '130',
checkarr: [],
@ -370,103 +431,93 @@ export const detailsColumnList = [
{
prop: 'chargeType',
label: '是否补录',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalFee',
label: '是否齐套',
type: 3,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'remark',
label: '托盘码',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'carrierName',
label: '一级品类',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'waybillCount',
label: '二级品类',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalNum',
label: '三级品类',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalWeight',
label: '物料名称',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalVolume',
label: '装车扫描人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'createUserName',
label: '卸车人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalWeight',
label: '同步状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'totalFee',
// label: '是否齐套',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'carrierName',
// label: '一级品类',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'waybillCount',
// label: '二级品类',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'totalNum',
// label: '三级品类',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'totalWeight',
// label: '物料名称',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'totalVolume',
// label: '装车扫描人',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'createUserName',
// label: '卸车人',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'totalWeight',
// label: '同步状态',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
];
/** 运单池列表 */
@ -500,7 +551,7 @@ export const oldColumnList = [
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -511,7 +562,7 @@ export const oldColumnList = [
{
prop: 'orderPackageCode',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '200',
checkarr: [],
@ -521,7 +572,7 @@ export const oldColumnList = [
{
prop: 'driverName',
label: '到站',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -531,7 +582,7 @@ export const oldColumnList = [
{
prop: 'driverPhone',
label: '目的网点',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -541,7 +592,7 @@ export const oldColumnList = [
{
prop: 'warehouseName',
label: '发货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -551,7 +602,7 @@ export const oldColumnList = [
{
prop: 'lineNameTitle',
label: '收货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -561,7 +612,7 @@ export const oldColumnList = [
{
prop: 'nodeNub',
label: '收货人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -571,7 +622,7 @@ export const oldColumnList = [
{
prop: 'startTime',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -581,7 +632,7 @@ export const oldColumnList = [
{
prop: 'endTime',
label: '品类名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -661,7 +712,7 @@ export const oldColumnList = [
{
prop: 'totalNum',
label: '运单备注',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -701,7 +752,7 @@ export const newColumnList = [
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -712,7 +763,7 @@ export const newColumnList = [
{
prop: 'orderPackageCode',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '200',
checkarr: [],
@ -722,7 +773,7 @@ export const newColumnList = [
{
prop: 'driverName',
label: '到站',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -732,7 +783,7 @@ export const newColumnList = [
{
prop: 'driverPhone',
label: '目的网点',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -742,7 +793,7 @@ export const newColumnList = [
{
prop: 'warehouseName',
label: '发货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -752,7 +803,7 @@ export const newColumnList = [
{
prop: 'lineNameTitle',
label: '收货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -762,7 +813,7 @@ export const newColumnList = [
{
prop: 'nodeNub',
label: '收货人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -772,7 +823,7 @@ export const newColumnList = [
{
prop: 'startTime',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -782,7 +833,7 @@ export const newColumnList = [
{
prop: 'endTime',
label: '品类名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -862,7 +913,7 @@ export const newColumnList = [
{
prop: 'totalNum',
label: '运单备注',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

66
src/option/distribution/VehicleArrivalManagement.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'carsNo',
label: '批次号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const columnList = [
{
prop: 'carsLineName',
label: '路线',
type: 13,
type: 6,
values: '',
width: '200',
checkarr: [],
@ -91,7 +91,7 @@ export const columnList = [
// {
// prop: 'endTime',
// label: '直发商家',
// type: 3,
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
@ -101,7 +101,7 @@ export const columnList = [
// {
// prop: 'planVolume',
// label: '类型',
// type: 3,
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
@ -111,7 +111,7 @@ export const columnList = [
{
prop: 'loadStatus',
label: '车辆状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -121,7 +121,7 @@ export const columnList = [
{
prop: 'driverName',
label: '主驾司机',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -131,7 +131,7 @@ export const columnList = [
{
prop: 'driverMobile',
label: '主驾司机手机号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -141,7 +141,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '车牌号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -151,7 +151,7 @@ export const columnList = [
{
prop: 'startWarehouseName',
label: '起点仓库',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -161,7 +161,7 @@ export const columnList = [
{
prop: 'endWarehouseNames',
label: '终点仓库',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -171,7 +171,7 @@ export const columnList = [
{
prop: 'arriveTime',
label: '到车时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -181,7 +181,7 @@ export const columnList = [
{
prop: 'startTime',
label: '实际发车时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -334,7 +334,7 @@ export const columnList = [
{
prop: 'createUserName',
label: '经办人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -383,7 +383,7 @@ export const detailsColumnList = [
{
prop: 'orderCode',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -394,7 +394,7 @@ export const detailsColumnList = [
{
prop: 'orderCode',
label: '合同号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -405,7 +405,7 @@ export const detailsColumnList = [
{
prop: 'orderPackageCode',
label: '包条码',
type: 13,
type: 6,
values: '',
width: '200',
checkarr: [],
@ -415,7 +415,7 @@ export const detailsColumnList = [
{
prop: 'driverName',
label: '计划目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -425,7 +425,7 @@ export const detailsColumnList = [
{
prop: 'driverPhone',
label: '目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -435,7 +435,7 @@ export const detailsColumnList = [
{
prop: 'warehouseName',
label: '装卸状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -445,7 +445,7 @@ export const detailsColumnList = [
{
prop: 'lineNameTitle',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -455,7 +455,7 @@ export const detailsColumnList = [
{
prop: 'nodeNub',
label: '装车仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -475,7 +475,7 @@ export const detailsColumnList = [
{
prop: 'endTime',
label: '装卸仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -495,7 +495,7 @@ export const detailsColumnList = [
{
prop: 'billladingStatus',
label: '装车类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -505,7 +505,7 @@ export const detailsColumnList = [
{
prop: 'chargeType',
label: '是否补录',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -515,7 +515,7 @@ export const detailsColumnList = [
{
prop: 'totalFee',
label: '是否齐套',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -525,7 +525,7 @@ export const detailsColumnList = [
{
prop: 'remark',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -535,7 +535,7 @@ export const detailsColumnList = [
{
prop: 'carrierName',
label: '一级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -545,7 +545,7 @@ export const detailsColumnList = [
{
prop: 'waybillCount',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -555,7 +555,7 @@ export const detailsColumnList = [
{
prop: 'totalNum',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -565,7 +565,7 @@ export const detailsColumnList = [
{
prop: 'totalWeight',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -575,7 +575,7 @@ export const detailsColumnList = [
{
prop: 'totalVolume',
label: '装车扫描人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -585,7 +585,7 @@ export const detailsColumnList = [
{
prop: 'createUserName',
label: '卸车人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -595,7 +595,7 @@ export const detailsColumnList = [
{
prop: 'totalWeight',
label: '同步状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],

66
src/option/distribution/VehicleStowage.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'waybillNo',
label: '批次号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const columnList = [
{
prop: 'carsLineName',
label: '路线',
type: 13,
type: 6,
values: '',
width: '250',
checkarr: [],
@ -102,7 +102,7 @@ export const columnList = [
// {
// prop: 'endTime',
// label: '直发商家',
// type: 3,
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
@ -112,7 +112,7 @@ export const columnList = [
// {
// prop: 'planVolume',
// label: '类型',
// type: 3,
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
@ -122,7 +122,7 @@ export const columnList = [
{
prop: 'loadStatusName',
label: '车辆状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -132,7 +132,7 @@ export const columnList = [
{
prop: 'driverName',
label: '主驾司机',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -142,7 +142,7 @@ export const columnList = [
{
prop: 'driverMobile',
label: '主驾司机手机号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -152,7 +152,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '车牌号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -162,7 +162,7 @@ export const columnList = [
{
prop: 'startWarehouseName',
label: '起点仓库',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -172,7 +172,7 @@ export const columnList = [
{
prop: 'endWarehouseNames',
label: '终点仓库',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -182,7 +182,7 @@ export const columnList = [
{
prop: 'arriveTime',
label: '到车时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -192,7 +192,7 @@ export const columnList = [
{
prop: 'startTime',
label: '实际发车时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -345,7 +345,7 @@ export const columnList = [
// {
// prop: 'totalWeight',
// label: '经办人',
// type: 2,
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
@ -405,7 +405,7 @@ export const detailsColumnList = [
{
prop: 'orderCode',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -416,7 +416,7 @@ export const detailsColumnList = [
{
prop: 'orderCode',
label: '合同号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -427,7 +427,7 @@ export const detailsColumnList = [
{
prop: 'orderPackageCode',
label: '包条码',
type: 13,
type: 6,
values: '',
width: '200',
checkarr: [],
@ -437,7 +437,7 @@ export const detailsColumnList = [
{
prop: 'driverName',
label: '计划目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -447,7 +447,7 @@ export const detailsColumnList = [
{
prop: 'driverPhone',
label: '目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -457,7 +457,7 @@ export const detailsColumnList = [
{
prop: 'warehouseName',
label: '装卸状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -467,7 +467,7 @@ export const detailsColumnList = [
{
prop: 'lineNameTitle',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -477,7 +477,7 @@ export const detailsColumnList = [
{
prop: 'nodeNub',
label: '装车仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -497,7 +497,7 @@ export const detailsColumnList = [
{
prop: 'endTime',
label: '装卸仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -517,7 +517,7 @@ export const detailsColumnList = [
{
prop: 'billladingStatus',
label: '装车类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -527,7 +527,7 @@ export const detailsColumnList = [
{
prop: 'chargeType',
label: '是否补录',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -537,7 +537,7 @@ export const detailsColumnList = [
{
prop: 'totalFee',
label: '是否齐套',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -547,7 +547,7 @@ export const detailsColumnList = [
{
prop: 'remark',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -557,7 +557,7 @@ export const detailsColumnList = [
{
prop: 'carrierName',
label: '一级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -567,7 +567,7 @@ export const detailsColumnList = [
{
prop: 'waybillCount',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -577,7 +577,7 @@ export const detailsColumnList = [
{
prop: 'totalNum',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -587,7 +587,7 @@ export const detailsColumnList = [
{
prop: 'totalWeight',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -597,7 +597,7 @@ export const detailsColumnList = [
{
prop: 'totalVolume',
label: '装车扫描人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -607,7 +607,7 @@ export const detailsColumnList = [
{
prop: 'createUserName',
label: '卸车人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -617,7 +617,7 @@ export const detailsColumnList = [
{
prop: 'totalWeight',
label: '同步状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],

96
src/option/distribution/arteryDistrilbutionBillLadingList.js

@ -18,7 +18,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '提货批次',
type: 13,
type: 6,
values: '',
width: '180',
checkarr: [],
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '车牌号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -39,7 +39,7 @@ export const columnList = [
{
prop: 'driverName',
label: '司机名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -49,7 +49,7 @@ export const columnList = [
{
prop: 'driverPhone',
label: '司机电话',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -59,7 +59,7 @@ export const columnList = [
{
prop: 'warehouseName',
label: '仓库名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -79,7 +79,7 @@ export const columnList = [
{
prop: 'nodeNub',
label: '线路节点数',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -89,7 +89,7 @@ export const columnList = [
{
prop: 'startTime',
label: '提货开始时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -99,7 +99,7 @@ export const columnList = [
{
prop: 'endTime',
label: '提货完成时间',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -109,7 +109,7 @@ export const columnList = [
{
prop: 'planVolume',
label: '预计数量',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -119,7 +119,7 @@ export const columnList = [
{
prop: 'billladingStatus',
label: '状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -129,7 +129,7 @@ export const columnList = [
{
prop: 'chargeType',
label: '计费模式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -139,7 +139,7 @@ export const columnList = [
{
prop: 'totalFee',
label: '提货费用',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -149,7 +149,7 @@ export const columnList = [
{
prop: 'remark',
label: '备注',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -159,7 +159,7 @@ export const columnList = [
{
prop: 'carrierName',
label: '承运商',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -169,7 +169,7 @@ export const columnList = [
{
prop: 'waybillCount',
label: '单数',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -179,7 +179,7 @@ export const columnList = [
{
prop: 'totalNum',
label: '件数',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -189,7 +189,7 @@ export const columnList = [
{
prop: 'totalWeight',
label: '重量',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -199,7 +199,7 @@ export const columnList = [
{
prop: 'totalVolume',
label: '体积',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -209,7 +209,7 @@ export const columnList = [
{
prop: 'createUserName',
label: '创建人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -249,7 +249,7 @@ export const columnDetailList = [
{
prop: 'billladingCode',
label: '提货批次',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -260,7 +260,7 @@ export const columnDetailList = [
{
prop: 'driverName',
label: '提货司机',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -270,7 +270,7 @@ export const columnDetailList = [
{
prop: 'carNumber',
label: '提货车牌',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -280,7 +280,7 @@ export const columnDetailList = [
{
prop: 'waybillNo',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -290,7 +290,7 @@ export const columnDetailList = [
{
prop: 'orderCode',
label: '合同号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -300,7 +300,7 @@ export const columnDetailList = [
{
prop: 'destination',
label: '目的地',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -310,7 +310,7 @@ export const columnDetailList = [
{
prop: 'incomingType',
label: '入库类型',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -320,7 +320,7 @@ export const columnDetailList = [
{
prop: '',
label: '是否齐套',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -330,7 +330,7 @@ export const columnDetailList = [
{
prop: 'trayCode',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -340,7 +340,7 @@ export const columnDetailList = [
{
prop: 'firstPickName',
label: '一级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -350,7 +350,7 @@ export const columnDetailList = [
{
prop: 'secondPickName',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -360,7 +360,7 @@ export const columnDetailList = [
{
prop: 'thirdPickName',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -370,7 +370,7 @@ export const columnDetailList = [
{
prop: 'materialName',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -380,7 +380,7 @@ export const columnDetailList = [
{
prop: 'brand',
label: '品牌',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -390,7 +390,7 @@ export const columnDetailList = [
{
prop: '',
label: '操作仓库',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -400,7 +400,7 @@ export const columnDetailList = [
{
prop: 'createUserName',
label: '操作人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -410,7 +410,7 @@ export const columnDetailList = [
{
prop: '',
label: '提货扫码时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -439,7 +439,7 @@ export const columnNewList = [
{
prop: 'pickupBatch',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -450,7 +450,7 @@ export const columnNewList = [
{
prop: 'serviceNumber',
label: '网点',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -460,7 +460,7 @@ export const columnNewList = [
{
prop: 'waybillNumber',
label: '发货人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -470,7 +470,7 @@ export const columnNewList = [
{
prop: 'consigneeUnit',
label: '客户车次号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -480,7 +480,7 @@ export const columnNewList = [
{
prop: 'customerName',
label: '发货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -490,7 +490,7 @@ export const columnNewList = [
{
prop: 'customerTelephone',
label: '货物名称',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -500,7 +500,7 @@ export const columnNewList = [
{
prop: 'warehouse',
label: '件数',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -511,7 +511,7 @@ export const columnNewList = [
{
prop: 'warehouseEntryTime',
label: '重量',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -522,7 +522,7 @@ export const columnNewList = [
{
prop: 'collectFee',
label: '体积',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -533,7 +533,7 @@ export const columnNewList = [
{
prop: 'transport',
label: '运费',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -544,7 +544,7 @@ export const columnNewList = [
{
prop: 'storageFee',
label: '运单备注',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -554,7 +554,7 @@ export const columnNewList = [
{
prop: 'forklift',
label: '开单时间',
type: 4,
type: 1,
values: '',
width: '150',
checkarr: [],

80
src/option/distribution/zeroAdditionalRecording.js

@ -17,7 +17,7 @@ export const oldColumnList = [
{
prop: 'orderCode',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const oldColumnList = [
{
prop: 'orderCode',
label: '合同号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -39,7 +39,7 @@ export const oldColumnList = [
{
prop: 'orderPackageCode',
label: '包条码',
type: 13,
type: 6,
values: '',
width: '200',
checkarr: [],
@ -49,7 +49,7 @@ export const oldColumnList = [
{
prop: 'driverName',
label: '计划目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -59,7 +59,7 @@ export const oldColumnList = [
{
prop: 'driverPhone',
label: '目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -69,7 +69,7 @@ export const oldColumnList = [
{
prop: 'warehouseName',
label: '装卸状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -79,7 +79,7 @@ export const oldColumnList = [
{
prop: 'lineNameTitle',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -89,7 +89,7 @@ export const oldColumnList = [
{
prop: 'nodeNub',
label: '装车仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -109,7 +109,7 @@ export const oldColumnList = [
{
prop: 'endTime',
label: '装卸仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -129,7 +129,7 @@ export const oldColumnList = [
{
prop: 'billladingStatus',
label: '装车类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -139,7 +139,7 @@ export const oldColumnList = [
{
prop: 'chargeType',
label: '是否补录',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -149,7 +149,7 @@ export const oldColumnList = [
{
prop: 'totalFee',
label: '是否齐套',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -159,7 +159,7 @@ export const oldColumnList = [
{
prop: 'remark',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -169,7 +169,7 @@ export const oldColumnList = [
{
prop: 'carrierName',
label: '一级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -179,7 +179,7 @@ export const oldColumnList = [
{
prop: 'waybillCount',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -189,7 +189,7 @@ export const oldColumnList = [
{
prop: 'totalNum',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -199,7 +199,7 @@ export const oldColumnList = [
{
prop: 'totalWeight',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -209,7 +209,7 @@ export const oldColumnList = [
{
prop: 'totalVolume',
label: '装车扫描人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -219,7 +219,7 @@ export const oldColumnList = [
{
prop: 'createUserName',
label: '卸车人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -229,7 +229,7 @@ export const oldColumnList = [
{
prop: 'totalWeight',
label: '同步状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -258,7 +258,7 @@ export const newColumnList = [
{
prop: 'orderCode',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -269,7 +269,7 @@ export const newColumnList = [
{
prop: 'orderCode',
label: '合同号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -280,7 +280,7 @@ export const newColumnList = [
{
prop: 'orderPackageCode',
label: '包条码',
type: 13,
type: 6,
values: '',
width: '200',
checkarr: [],
@ -290,7 +290,7 @@ export const newColumnList = [
{
prop: 'driverName',
label: '计划目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -300,7 +300,7 @@ export const newColumnList = [
{
prop: 'driverPhone',
label: '目的地',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -310,7 +310,7 @@ export const newColumnList = [
{
prop: 'warehouseName',
label: '装卸状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -320,7 +320,7 @@ export const newColumnList = [
{
prop: 'lineNameTitle',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -330,7 +330,7 @@ export const newColumnList = [
{
prop: 'nodeNub',
label: '装车仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -350,7 +350,7 @@ export const newColumnList = [
{
prop: 'endTime',
label: '装卸仓库',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -370,7 +370,7 @@ export const newColumnList = [
{
prop: 'billladingStatus',
label: '装车类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -380,7 +380,7 @@ export const newColumnList = [
{
prop: 'chargeType',
label: '是否补录',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -390,7 +390,7 @@ export const newColumnList = [
{
prop: 'totalFee',
label: '是否齐套',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -400,7 +400,7 @@ export const newColumnList = [
{
prop: 'remark',
label: '托盘码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -410,7 +410,7 @@ export const newColumnList = [
{
prop: 'carrierName',
label: '一级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -420,7 +420,7 @@ export const newColumnList = [
{
prop: 'waybillCount',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -430,7 +430,7 @@ export const newColumnList = [
{
prop: 'totalNum',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -440,7 +440,7 @@ export const newColumnList = [
{
prop: 'totalWeight',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -450,7 +450,7 @@ export const newColumnList = [
{
prop: 'totalVolume',
label: '装车扫描人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -460,7 +460,7 @@ export const newColumnList = [
{
prop: 'createUserName',
label: '卸车人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -470,7 +470,7 @@ export const newColumnList = [
{
prop: 'totalWeight',
label: '同步状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],

20
src/option/waybill/ChangeOrder.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '开单网点',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -38,7 +38,7 @@ export const columnList = [
{
prop: 'driverName',
label: '状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -48,7 +48,7 @@ export const columnList = [
{
prop: 'driverPhone',
label: '开单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -58,7 +58,7 @@ export const columnList = [
{
prop: 'warehouseName',
label: '制单员',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -88,7 +88,7 @@ export const columnList = [
{
prop: 'startTime',
label: '申请网点',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -98,7 +98,7 @@ export const columnList = [
{
prop: 'endTime',
label: '申请人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -108,7 +108,7 @@ export const columnList = [
{
prop: 'planVolume',
label: '修改原因',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -128,7 +128,7 @@ export const columnList = [
{
prop: 'chargeType',
label: '审核网点',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -148,7 +148,7 @@ export const columnList = [
{
prop: 'remark',
label: '审核人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

22
src/option/waybill/FreezeOrder.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -98,7 +98,7 @@ export const columnList = [
{
prop: 'legacyStatus',
label: '遗留',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -108,7 +108,7 @@ export const columnList = [
{
prop: 'customerName',
label: '顾客姓名',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -118,7 +118,7 @@ export const columnList = [
{
prop: 'customerPhone',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -178,7 +178,7 @@ export const columnList = [
{
prop: 'orderType',
label: '订单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -188,7 +188,7 @@ export const columnList = [
{
prop: 'systemType',
label: '订单来源',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -328,7 +328,7 @@ export const packageListColumnList = [
{
prop: 'endTime',
label: '遗留',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -338,7 +338,7 @@ export const packageListColumnList = [
{
prop: 'planVolume',
label: '顾客姓名',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -348,7 +348,7 @@ export const packageListColumnList = [
{
prop: 'billladingStatus',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -408,7 +408,7 @@ export const packageListColumnList = [
{
prop: 'totalNum',
label: '订单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -418,7 +418,7 @@ export const packageListColumnList = [
{
prop: 'totalWeight',
label: '订单来源',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],

4
src/option/waybill/ReceiptManagement.js

@ -18,7 +18,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '运单号',
type: 2,
type: 1,
values: '',
checkarr: [],
fixed: true,
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '货号',
type: 2,
type: 1,
values: '',
checkarr: [],
width: '180',

48
src/option/waybill/TemporaryStorageList.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const columnList = [
// {
// prop: 'carNumber',
// label: '汇通商场',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -98,7 +98,7 @@ export const columnList = [
{
prop: 'legacyStatus',
label: '遗留',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -108,7 +108,7 @@ export const columnList = [
{
prop: 'customerName',
label: '顾客姓名',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -118,7 +118,7 @@ export const columnList = [
{
prop: 'customerPhone',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -128,7 +128,7 @@ export const columnList = [
{
prop: 'customerAddress',
label: '顾客地址',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -148,7 +148,7 @@ export const columnList = [
{
prop: 'dealerCode',
label: '商场编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -158,7 +158,7 @@ export const columnList = [
{
prop: 'storeCode',
label: '门店编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -168,7 +168,7 @@ export const columnList = [
{
prop: 'waybillCount',
label: '创建人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -178,7 +178,7 @@ export const columnList = [
{
prop: 'orderType',
label: '订单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -188,7 +188,7 @@ export const columnList = [
{
prop: 'systemType',
label: '订单来源',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -208,7 +208,7 @@ export const columnList = [
{
prop: 'serviceNum',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -247,7 +247,7 @@ export const packageListColumnList = [
{
prop: 'billladingCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -258,7 +258,7 @@ export const packageListColumnList = [
{
prop: 'carNumber',
label: '汇通商场',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -328,7 +328,7 @@ export const packageListColumnList = [
{
prop: 'endTime',
label: '遗留',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -338,7 +338,7 @@ export const packageListColumnList = [
{
prop: 'planVolume',
label: '顾客姓名',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -348,7 +348,7 @@ export const packageListColumnList = [
{
prop: 'billladingStatus',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -358,7 +358,7 @@ export const packageListColumnList = [
{
prop: 'chargeType',
label: '顾客地址',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -378,7 +378,7 @@ export const packageListColumnList = [
{
prop: 'remark',
label: '商场编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -388,7 +388,7 @@ export const packageListColumnList = [
{
prop: 'carrierName',
label: '门店编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -398,7 +398,7 @@ export const packageListColumnList = [
{
prop: 'waybillCount',
label: '创建人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -408,7 +408,7 @@ export const packageListColumnList = [
{
prop: 'totalNum',
label: '订单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -418,7 +418,7 @@ export const packageListColumnList = [
{
prop: 'totalWeight',
label: '订单来源',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -438,7 +438,7 @@ export const packageListColumnList = [
{
prop: 'createUserName',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

12
src/option/waybill/WarehousingByTrainNumber.js

@ -18,7 +18,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -129,7 +129,7 @@ export const columnList = [
{
prop: 'billladingStatus',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -139,7 +139,7 @@ export const columnList = [
{
prop: 'chargeType',
label: '顾客地址',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -209,7 +209,7 @@ export const columnList = [
{
prop: 'remark',
label: '商场编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -229,7 +229,7 @@ export const columnList = [
{
prop: 'carrierName',
label: '门店编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

64
src/option/waybill/WaybillOrderList.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'waybillNo',
label: '运单号',
type: 13,
type: 6,
values: '',
width: '150',
checkarr: [],
@ -28,7 +28,7 @@ export const columnList = [
{
prop: 'orderNo',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -38,7 +38,7 @@ export const columnList = [
{
prop: 'destinationWarehouseName',
label: '目的仓',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -48,7 +48,7 @@ export const columnList = [
{
prop: 'departureWarehouseName',
label: '发站仓',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -58,7 +58,7 @@ export const columnList = [
{
prop: 'customerTrain',
label: '客户车次',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -68,7 +68,7 @@ export const columnList = [
{
prop: 'brand',
label: '品牌',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -78,7 +78,7 @@ export const columnList = [
{
prop: 'shipper',
label: '发货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -88,7 +88,7 @@ export const columnList = [
{
prop: 'shipperName',
label: '发货人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -98,7 +98,7 @@ export const columnList = [
{
prop: 'shipperMobile',
label: '发货方手机号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -108,7 +108,7 @@ export const columnList = [
{
prop: 'shipperAddress',
label: '发货方地址',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -118,7 +118,7 @@ export const columnList = [
{
prop: 'consignee',
label: '收货单位',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -138,7 +138,7 @@ export const columnList = [
{
prop: 'consigneeMobile',
label: '收货方手机号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -148,7 +148,7 @@ export const columnList = [
{
prop: 'consigneeAddress',
label: '收货方地址',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -158,7 +158,7 @@ export const columnList = [
{
prop: 'destination',
label: '到站',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -168,7 +168,7 @@ export const columnList = [
{
prop: 'goodsName',
label: '货物名称',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -198,7 +198,7 @@ export const columnList = [
{
prop: 'totalCount',
label: '总数',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -352,7 +352,7 @@ export const columnList = [
{
prop: 'payWay',
label: '付款方式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -406,7 +406,7 @@ export const columnList = [
{
prop: 'deliveryWay',
label: '送货方式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -416,7 +416,7 @@ export const columnList = [
{
prop: 'urgency',
label: '紧急度',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -449,7 +449,7 @@ export const columnList = [
{
prop: 'transportType',
label: '运输方式',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -459,7 +459,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '运单标识',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -480,7 +480,7 @@ export const columnList = [
{
prop: 'agent',
label: '经办人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -512,7 +512,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '审核状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -522,7 +522,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '结算状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -533,7 +533,7 @@ export const columnList = [
{
prop: 'remark',
label: '备注',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -544,7 +544,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '批次号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -555,7 +555,7 @@ export const columnList = [
/* {
prop: 'remark',
label: '送货司机',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -619,7 +619,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -630,7 +630,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '冻结状态',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -641,7 +641,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '审核人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -663,7 +663,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '承运单号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -674,7 +674,7 @@ export const columnList = [
/* {
prop: 'carrierName',
label: '中转物流',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

10
src/option/waybill/ZeroTagList.js

@ -20,7 +20,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '标签',
type: 2,
type: 1,
values: '',
checkarr: [],
fixed: true,
@ -31,7 +31,7 @@ export const columnList = [
{
prop: 'billladingCode',
label: '运单号',
type: 2,
type: 1,
values: '',
checkarr: [],
fixed: true,
@ -42,7 +42,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '发货单位',
type: 2,
type: 1,
values: '',
checkarr: [],
width: '130',
@ -92,7 +92,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '收货人',
type: 2,
type: 1,
values: '',
checkarr: [],
width: '130',
@ -142,7 +142,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '单数',
type: 2,
type: 1,
values: '',
checkarr: [],
width: '130',

24
src/option/waybill/orderPackageList.js

@ -18,7 +18,7 @@ export const packageListColumnList = [
{
prop: 'billladingCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -29,7 +29,7 @@ export const packageListColumnList = [
{
prop: 'carNumber',
label: '汇通商场',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -99,7 +99,7 @@ export const packageListColumnList = [
{
prop: 'endTime',
label: '遗留',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -109,7 +109,7 @@ export const packageListColumnList = [
{
prop: 'planVolume',
label: '顾客姓名',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -119,7 +119,7 @@ export const packageListColumnList = [
{
prop: 'billladingStatus',
label: '顾客电话',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -129,7 +129,7 @@ export const packageListColumnList = [
{
prop: 'chargeType',
label: '顾客地址',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -149,7 +149,7 @@ export const packageListColumnList = [
{
prop: 'remark',
label: '商场编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -159,7 +159,7 @@ export const packageListColumnList = [
{
prop: 'carrierName',
label: '门店编码',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -169,7 +169,7 @@ export const packageListColumnList = [
{
prop: 'waybillCount',
label: '创建人',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -179,7 +179,7 @@ export const packageListColumnList = [
{
prop: 'totalNum',
label: '订单类型',
type: 3,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -189,7 +189,7 @@ export const packageListColumnList = [
{
prop: 'totalWeight',
label: '订单来源',
type: 4,
type: 1,
values: '',
width: '130',
checkarr: [],
@ -209,7 +209,7 @@ export const packageListColumnList = [
{
prop: 'createUserName',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '130',
checkarr: [],

42
src/option/waybill/orderPackageListDetails.js

@ -18,7 +18,7 @@ export const packageListColumnList = [
{
prop: 'waybillNo',
label: '运单号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -29,7 +29,7 @@ export const packageListColumnList = [
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -40,7 +40,7 @@ export const packageListColumnList = [
{
prop: 'warehouseName',
label: '当前所在仓',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -90,7 +90,7 @@ export const packageListColumnList = [
{
prop: 'secondPackName',
label: '二级品类',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -101,7 +101,7 @@ export const packageListColumnList = [
{
prop: 'thirdPackName',
label: '三级品类',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -112,7 +112,7 @@ export const packageListColumnList = [
{
prop: 'materialCode',
label: '物料编码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -123,7 +123,7 @@ export const packageListColumnList = [
{
prop: 'materialName',
label: '物料名称',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -134,7 +134,7 @@ export const packageListColumnList = [
{
prop: 'orderPackageCode',
label: '包条码',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -145,7 +145,7 @@ export const packageListColumnList = [
{
prop: 'systemType',
label: '订单来源',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -156,7 +156,7 @@ export const packageListColumnList = [
{
prop: 'serviceNum',
label: '服务号',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -167,7 +167,7 @@ export const packageListColumnList = [
{
prop: 'quantity',
label: '发货数量',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -178,7 +178,7 @@ export const packageListColumnList = [
// {
// prop: '',
// label: '所在托盘',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -189,7 +189,7 @@ export const packageListColumnList = [
{
prop: 'volume',
label: '体积',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -200,7 +200,7 @@ export const packageListColumnList = [
// {
// prop: '',
// label: '基地发货日期',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -211,7 +211,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '车次类型',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -222,7 +222,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '汇通车次号',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -233,7 +233,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '装车时间',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -244,7 +244,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '签收时间',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -255,7 +255,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '导入仓库',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -266,7 +266,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '创建人',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
@ -277,7 +277,7 @@ export const packageListColumnList = [
// {
// prop: 'billladingCode',
// label: '创建时间',
// type: 2,
// type: 1,
// values: '',
// width: '150',
// checkarr: [],

169
src/views/basicdata/vehicle/basicdataVehicle.vue

@ -77,174 +77,6 @@ import NProgress from 'nprogress';
import 'nprogress/nprogress.css';
import BasicdataVehicleform from '/src/views/basicdata/vehicle/basicdataVehicleform.vue';
// export default {
// components: { BasicdataVehicleform },
// data() {
// return {
// form: {},
// query: {},
// search: {},
// loading: true,
// vehicleformdata: {},
// dicDatas: [],
// edit: true, //
// page: {
// pageSize: 30,
// currentPage: 1,
// total: 0
// },
// selectionList: [],
// option: {
// height: 'auto',
// calcHeight: 30,
// tip: false,
// searchShow: false,
// searchMenuSpan: 6,
// border: true,
// index: true,
// viewBtn: false,
// editBtn: false,
// selection: true,
// dialogClickModal: false,
// column: [
// {
// label: '',
// prop: 'id',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'tenantId',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'createUser',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'createTime',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'updateUser',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'updateTime',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'status',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: ';1-2-',
// prop: 'isDeleted',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'createDept',
// type: 'input',
// addDisplay: false,
// editDisplay: false,
// viewDisplay: false,
// hide: true
// },
// {
// label: '',
// prop: 'vehicleNub',
// type: 'input',
// search: true,
// labelWidth: '150',
// width: '100px',
// align: 'center',
// span: 11
// },
// {
// label: '',
// labelWidth: '150',
// // width: 'fit-content',
// width: '100px',
// align: 'center',
// span: 11,
// prop: 'carrierName',
// type: 'input',
// editDisplay: false,
// addDisplay: false
// },
// {
// label: '',
// prop: 'vehicleOwners',
// type: 'select',
// labelWidth: '150',
// width: '200px',
// align: 'center',
// span: 11,
// multiple: true,
// dicData: []
// // dicUrl: '/api/logpm-basicdata/vehicle/dictionary',
// // props: {
// // label: 'vehicleNub',
// // value: 'id',
// // },
// // addDisplay: false,
// // editDisplay: false,
// // viewDisplay: false,
// // hide: true,
// },
// {
// label: '',
// prop: 'vehicleSource',
// type: 'select',
// search: true,
// labelWidth: '150',
// width: '100px',
// align: 'center',
// span: 11,
// dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_vehicle_source',
// props: {
// label: 'dictValue',
// value: 'dictKey'
// }
// }
export default {
components: { BasicdataVehicleform },
data() {
@ -1262,6 +1094,7 @@ export default {
this.dicDatas = [];
//
this.getOwns();
this.getOwns();
this.loading = false;
this.selectionClear();
});

10
src/views/basicdata/vehicle/basicdataVehicleform.vue

@ -406,7 +406,7 @@ export default {
span: 6,
},
{
label: '车辆总质量(T)',
label: '车辆总质量(kg)',
prop: 'vehicleQuality',
type: 'input',
labelWidth: '150',
@ -415,7 +415,7 @@ export default {
span: 6,
},
{
label: '整备质量(T)',
label: '整备质量(kg)',
prop: 'curbWeight',
type: 'input',
labelWidth: '150',
@ -424,7 +424,7 @@ export default {
span: 6,
},
{
label: '载荷质量(T)',
label: '载荷质量(kg)',
prop: 'loadMass',
type: 'input',
labelWidth: '150',
@ -433,7 +433,7 @@ export default {
span: 6,
},
{
label: '外廓宽(M)',
label: '外廓宽(mm)',
prop: 'outerWidth',
type: 'input',
labelWidth: '150',
@ -516,7 +516,7 @@ export default {
filterable: true,
dicUrl: '/api/logpm-basicdata/carrier/dictionary',
props: {
label: 'number',
label: 'carrierName',
value: 'id',
},
rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }],

47
src/views/distribution/artery/TripartiteTransfer.vue

@ -138,11 +138,6 @@
</template>
</tablecmt>
<!-- 统计 -->
<el-row>
<div>选择数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
<div>总计: 总数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
@ -1000,27 +995,31 @@ const handleShowConfirm = () => {
/** 提交到达 */
const submitConfirmArrive = async () => {
console.log('details.selectionList :>> ', details.selectionList);
console.log(
'details.selectionList.map(val => val.id) :>> ',
details.selectionList.map(val => val.id)
);
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
...details.form,
};
const res = await postArriveCars(submitData);
const { code } = res.data;
if (code !== 200) {
return;
if (!details.form.arriveDateStr) {
return ElMessage({
message: '请选择到达日期',
type: 'warning',
});
}
ElMessage({
type: 'success',
message: '到达成功',
});
try {
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
...details.form,
};
onLoad();
const res = await postArriveCars(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '到达成功',
});
} catch (error) {
} finally {
onLoad();
}
};
/** 发车 */

12
src/views/distribution/artery/TripartiteTransferDetails.vue

@ -20,10 +20,9 @@
remote
reserve-keyword
placeholder="中转承运商"
@change="val => carrierNameChange(val, index)"
@change="val => carrierNameChange()"
:remote-method="remoteMethod"
:loading="details.loadingObj.loading"
:disabled="index === 0"
>
<el-option
v-for="val in details.carrierNameOptions"
@ -315,7 +314,7 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, computeNumber, setNodeHeight, getWinHight, debounce } from '@/utils/util';
import { downloadXls, computeNumber, setNodeHeight, debounce } from '@/utils/util';
import { columnList, newColumnList } from '@/option/distribution/addVehicleStowage';
import {
postloadFindLoadInitData,
@ -327,7 +326,7 @@ import {
} from '@/api/distribution/AddVehicleStowage';
import { postSaveNewTripartiteTransfer } from '@/api/distribution/addTripartiteTransfer.js';
import type { FormInstance, FormRules } from 'element-plus';
import { useRouter } from 'vue-router';
import { useRouter, useRoute } from 'vue-router';
import { useStore } from 'vuex';
// vuex
@ -335,6 +334,7 @@ const $store = useStore();
//
const $router = useRouter();
const $route = useRoute();
//
const ruleFormRef = ref();
@ -484,6 +484,8 @@ const details = reactive<any>({
driverListByName: [],
/** 被选中在调度池的订单列表 */
orderCodeList: [],
});
const {
@ -654,7 +656,7 @@ const clearSelectionList = () => {
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean, _type?: string) => {
const showdrawer = (_flag?: boolean, _type?: number) => {
switch (_type) {
default:
console.log('123 :>> ', 123);

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

@ -91,6 +91,9 @@
>装载清单</el-button
>
<el-button type="primary" icon="el-icon-printer" @click="handleArrive">到达</el-button>
<el-button type="primary" icon="el-icon-printer" @click="handleCloseArrive"
>取消到达</el-button
>
<el-button type="primary" icon="el-icon-delete" @click="searchReset()">
中途到达卸车
</el-button>
@ -179,7 +182,7 @@
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-text @click="handleShowTruckLoadingDetails">装车明细</el-text>
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text>
<el-text>编辑</el-text>
</template>
</template>
@ -317,6 +320,7 @@ import { columnList, detailsColumnList } from '@/option/distribution/VehicleArri
import {
postloadArriveCarsPageList,
postloadArriveCarByLoadId,
postloadCancelArriveCarByLoadId,
} from '@/api/distribution/VehicleArrivalManagement';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -562,13 +566,21 @@ const beforeClose = done => {
/** 显示装车详情 */
const handleShowTruckLoadingDetails = ({ row }) => {
details.popUpShow.truckLoadingDetailVisited = true;
nextTick(() => {
// ,
const _node = document.querySelector('.truckLoadingDetailPopUp .maboxhi');
_node.style.height = '550px';
$router.push({
path: '/distribution/artery/truckLoadingDetails',
query: {
loadId: row.id,
name: row.carsNo + '--' + '装车明细',
},
});
// details.popUpShow.truckLoadingDetailVisited = true;
// nextTick(() => {
// // ,
// const _node = document.querySelector('.truckLoadingDetailPopUp .maboxhi');
// _node.style.height = '550px';
// });
};
/** 显示对比报表 */
@ -599,6 +611,30 @@ const handleArrive = async () => {
onLoad();
};
/** 到车 */
const handleCloseArrive = async () => {
console.log(
'details.selectionList.map(val => val.id) :>> ',
details.selectionList.map(val => val.id)
);
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
...details.form,
};
const res = await postloadCancelArriveCarByLoadId(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '取消成功',
});
onLoad();
};
</script>
<style scoped lang="scss">

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

@ -791,14 +791,23 @@ const handleComparativeStatement = () => {
/** 显示装车详情 */
const handleShowTruckLoadingDetails = ({ row }) => {
details.popUpShow.truckLoadingDetailVisited = true;
nextTick(() => {
// ,
const _node = document.querySelector('.truckLoadingDetailPopUp .maboxhi');
_node.style.height = '550px';
console.log('_node :>> ', _node);
console.log('row :>> ', row);
$router.push({
path: '/distribution/artery/truckLoadingDetails',
query: {
loadId: row.id,
name: row.carsNo + '--' + '装车明细',
},
});
// details.popUpShow.truckLoadingDetailVisited = true;
// nextTick(() => {
// // ,
// const _node = document.querySelector('.truckLoadingDetailPopUp .maboxhi');
// _node.style.height = '550px';
// console.log('_node :>> ', _node);
// });
};
/** 显示零担补录 */

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

@ -87,7 +87,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"
@ -104,23 +104,21 @@
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.editColumnList"
:columnList="details.detailsColumnList"
></edittablehead>
</template>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import functions from '@/utils/functions';
import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
import { postLoadingDetail } from '@/api/distribution/truckLoadingDetails';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls } from '@/utils/util';
import { detailsColumnList } from '@/option/distribution/TripartiteTransfer';
import { useRouter } from 'vue-router';
//
const $router = useRouter();
import { useRouter, useRoute } from 'vue-router';
const details = reactive<any>({
/** 是否开启搜索 */
@ -162,7 +160,7 @@ const details = reactive<any>({
/** 装车明细表头信息 */
detailsColumnList,
/** 列表数据 */
data: [{}],
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
@ -174,7 +172,7 @@ const details = reactive<any>({
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
@ -188,6 +186,9 @@ const details = reactive<any>({
/** 列表Dom节点 */
listNode: '',
form: {},
pageInfo: {
loadId: '',
},
});
const {
@ -203,6 +204,10 @@ const {
trickleLoadingPage,
} = toRefs(details);
//
const $router = useRouter();
const $route = useRoute();
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
@ -223,11 +228,11 @@ onMounted(() => {
let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList');
let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist');
if (checkListnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.head = false;
});
checkListnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
item.head = true;
}
@ -235,7 +240,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.head) {
arr.push(item.label);
}
@ -243,11 +248,11 @@ onMounted(() => {
functions.setStorage(window.location.pathname + 'checkList', arr);
}
if (flexListnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.fixed = false;
});
flexListnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
if (item.type == 6) {
item.fixed = 'right';
@ -259,7 +264,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.fixed) {
arr.push(item.label);
}
@ -267,11 +272,11 @@ onMounted(() => {
functions.setStorage(window.location.pathname + 'flexList', arr);
}
if (sortlistnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.sortable = false;
});
sortlistnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
item.sortable = true;
}
@ -279,7 +284,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.sortable) {
arr.push(item.label);
}
@ -289,7 +294,28 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = (page: any) => {};
const onLoad = async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
details.query.loadId = details.pageInfo.loadId;
//
const res = await postLoadingDetail({ ...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;
}
};
details.pageInfo.loadId = $route.query.loadId;
onLoad();
/** 搜索 */
const searchChange = () => {
@ -300,7 +326,7 @@ const searchChange = () => {
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
details.page.pageNum = 1;
onLoad(details.page);
};
@ -504,18 +530,13 @@ const handleShowTransfer = async (_type: string) => {
});
};
/** 添加运单 */
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);
};
watch($route, (newVal, oldVal) => {
console.log('newVal :>> ', newVal);
console.log('oldVal :>> ', oldVal);
if (newVal.path !== '/distribution/artery/truckLoadingDetails') return;
details.pageInfo.loadId = $route.query.loadId;
onLoad();
});
</script>
<style scoped lang="scss">

114
src/views/distribution/inventory/distributionStockListDetails.vue

@ -142,7 +142,9 @@
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps"> </template>
<template #default="slotProps">
<el-text v-if="slotProps.scope.row.sourceType === '1'" size="small" @click="handleInventoryQRCode(slotProps.scope)">查看二维码</el-text>
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
@ -213,20 +215,37 @@
</div>
</el-row>-->
</div>
<el-dialog
title="二维码"
:visible.sync="dialogVisibleF"
width="780px"
v-model="dialogVisibleF"
>
<div>
<div v-html="html"></div>
</div>
<span slot="footer" class="dialog-footer">
<!-- <el-button type="primary" @click="ddd"> </el-button>-->
<el-button type="primary" @click="printTemplate"> </el-button>
<el-button @click="dialogVisibleF = false"> </el-button>
</span>
</el-dialog>
</basic-container>
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getListAllocation,
stockExport,
stockInfoExport,
} from '@/api/distribution/distributionStockList';
import {
getList,
getDetail,
add,
update,
remove,
getListAllocation,
stockExport,
stockInfoExport, showInventoryPackgeCode, showInventorySourcePackageCode
} from '@/api/distribution/distributionStockList';
import option from '@/option/distribution/distributionStockList';
import { mapGetters } from 'vuex';
import { getListStock } from '@/api/distribution/distributionStock';
@ -236,6 +255,8 @@ import { downloadXls } from '@/utils/util';
export default {
data() {
return {
dialogVisibleF:false,
html:'',
columnListarrs: {
//
columnWarehousing: [
@ -249,7 +270,7 @@ export default {
// fixed: true,
// },
{
prop: 'warehousingTime',
prop: 'createTime',
label: '入库时间',
type: 2,
values: '',
@ -259,6 +280,28 @@ export default {
sortable: true,
head: false,
},
{
prop: 'despatch',
label: '运单号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
@ -271,8 +314,8 @@ export default {
head: false,
},
{
prop: 'brandName',
label: '品牌',
prop: 'packageCode',
label: '包条码',
type: 2,
values: '',
width: '150',
@ -282,8 +325,8 @@ export default {
head: false,
},
{
prop: 'despatch',
label: '运单号',
prop: 'brandName',
label: '品牌',
type: 2,
values: '',
width: '150',
@ -292,6 +335,17 @@ export default {
sortable: true,
head: false,
},
// {
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'licensePlate',
label: '车牌',
@ -314,6 +368,16 @@ export default {
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '230',
checkarr: [],
fixed: 'right',
hide: true,
},
],
//
column: [
@ -571,6 +635,24 @@ export default {
},
},
methods: {
//
handleInventoryQRCode(scope){
const { row } = scope;
console.log('执行查看二维码------------>row:',row);
this.materialQRCode = row;
console.log('---------------->',row);
let qr = {
ids: row.id,
};
this.html = '';
showInventorySourcePackageCode(row.incomingBatch,row.parcelListId).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisibleF = true;
},
//
handleExport() {
let row = {};

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

@ -2762,22 +2762,24 @@ export default {
console.log('orderList-------------》', this.orderList);
if (this.orderList.length === 0) return this.$message.warning('最少选择一条数据!!!');
const list = [...this.orderList, ...this.orderData];
let _name = list[0].customerName;
let _address = list[0].customerAddress;
let _phone = list[0].customerTelephone;
let _marketName = list[0].mallName;
let _name = list[0].customerName.trim();
let _address = list[0].customerAddress.trim();
let _phone = list[0].customerTelephone.trim();
let _marketName = list[0].mallName.trim();
//
const isRturn = list.every(item => {
if (item.mallName !== _marketName) {
if (item.mallName.trim() !== _marketName) {
this.$message.warning('请选择统一商场!!!');
return false;
}
if (
item.customerName !== _name ||
item.customerAddress !== _address ||
item.customerTelephone !== _phone
(item.customerName.trim() !== _name) ||
(item.customerAddress.trim() !== _address) ||
(item.customerTelephone.trim() !== _phone)
) {
console.log("123");
this.$message.warning('请选择统一顾客订单!!!');
return false;
}

6
vite.config.js

@ -26,11 +26,9 @@ export default ({ mode, command }) => {
target: 'http://192.168.6.122:8777',
// target: 'http://192.168.6.116:8777',
// tjj
// target: 'http://192.168.10.25:13000',
// cg
// target: 'http://192.168.10.200:13000',
// sst
// target: 'http://192.168.10.94:8888',
// target: 'http://test.api.huitongys.com',
// target: 'http://192.168.10.29:13000',
// target: 'http://h5uapi.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),

2404
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save