马远东 1 year ago
parent
commit
d91f8c1bd7
  1. 14
      src/api/distribution/distributionDeliveryList.js
  2. 45
      src/components/tablecmt/tablecmt.vue
  3. 245
      src/option/distribution/addVehicleStowage.js
  4. 5
      src/views/distribution/artery/AddVehicleStowage.vue
  5. 214
      src/views/distribution/artery/VehicleStowageDetails.vue
  6. 34
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  7. 269
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  8. 77
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  9. 104
      src/views/distribution/inventory/CreateOrder.vue
  10. 24
      src/views/distribution/reservation/reservation.vue
  11. 106
      src/views/distribution/signfor/distributionSignfortreat.vue
  12. 10
      src/views/warehouse/warehouseWaybill.vue
  13. 1
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
  14. 4
      vite.config.js

14
src/api/distribution/distributionDeliveryList.js

@ -51,7 +51,19 @@ export const getDetail = id => {
url: '/api/logpm-distribution/deliveryList/detail',
method: 'get',
params: {
id,
id
},
});
};
export const getClientDetail = (current, size, params) => {
return request({
url: '/api/logpm-distribution/deliveryList/clientDetail',
method: 'get',
params: {
...params,
current,
size,
},
});
};

45
src/components/tablecmt/tablecmt.vue

@ -170,6 +170,14 @@
</template>
</el-table-column>
</el-table>
<!-- 勾选合计行 -->
<div class="selection-total-row" v-if="shownm">
<span>勾选合计:</span>
<span v-for="item in selectCount">
<span style="margin: 0 5px">{{ item.label + ':' }}</span>
<el-text type="success">{{ item.value }}</el-text>
</span>
</div>
</div>
</template>
@ -321,6 +329,9 @@ let props = defineProps({
default: null,
},
});
/** 勾选数据统计 */
const selectCount = ref([]);
// row, column, rowIndex, columnIndex
let selectarr = ref([]);
/** 设置每行颜色 */
@ -465,8 +476,17 @@ function timechange(value, column: TableColumnType) {
emit('timeCheck', value, column);
}
const handleSelectionChange = (param: TableDataType[]) => {
// console.log(param)
//
selectCount.value.forEach(item => {
item.value = 0;
});
selectarr.value = param;
selectarr.value.forEach(val => {
selectCount.value.forEach(
item => (item.value += computeNumber(item.value, '+', val[item.prop]).result)
);
});
emit('selection', param);
};
function inputclear(value, column: TableColumnType) {
@ -480,20 +500,26 @@ function timeclear(value, column: TableColumnType) {
}
function handleDelete(index: number, row: TableDataType) {}
const getSummaries = (param: any) => {
selectCount.value = [];
const { columns, data } = param;
let newarr = [];
let tji = 0;
columns.map((item, index) => {
columns.forEach((item, index) => {
if (index == 0) {
newarr[index] = '总计';
return;
}
tji = 0;
if (props.columnList[index]?.isshowSummary) {
data.map(ite => {
for (let ite of data) {
tji = computeNumber(tji, '+', Number(ite[props.columnList[index]?.prop] || 0)).result;
});
}
newarr[index] = tji;
selectCount.value.push({
label: props.columnList[index]?.label,
value: 0,
prop: props.columnList[index]?.prop,
});
// shownm.value=true
} else {
newarr[index] = null;
@ -592,6 +618,11 @@ defineExpose({ handleCheckSelect });
--el-table-row-hover-bg-color: #d3832a;
}
//
.selection-total-row {
margin: 10px 0 5px;
font-size: 14px;
}
// .el-table .warning-row {
// --el-table-tr-bg-color: var(--el-color-warning-light-9);
// }
@ -600,10 +631,8 @@ defineExpose({ handleCheckSelect });
// }
.maboxhi {
width: 100%;
// min-height: 950px;
// height: 841px;
// flex:1;
// min-height: 100%;
display: flex;
flex-direction: column;
}
.on {
overflow: hidden;

245
src/option/distribution/addVehicleStowage.js

@ -583,17 +583,17 @@ export const detailsColumnList = [
fixed: true,
isshowSummary: true,
},
{
prop: 'carsNo',
label: '配载车次号',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: true,
sortable: true,
isshowSummary: false,
},
// {
// prop: 'carsNo',
// label: '配载车次号',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: true,
// sortable: true,
// isshowSummary: false,
// },
{
prop: 'waybillNo',
label: '运单号',
@ -604,6 +604,7 @@ export const detailsColumnList = [
fixed: true,
sortable: true,
isshowSummary: false,
isColumnMerge: true,
},
{
prop: 'orderCode',
@ -624,6 +625,7 @@ export const detailsColumnList = [
checkarr: [],
fixed: false,
sortable: true,
isColumnMerge: true,
head: false,
},
{
@ -635,6 +637,7 @@ export const detailsColumnList = [
checkarr: [],
fixed: false,
sortable: true,
isColumnMerge: true,
isshowSummary: false,
},
{
@ -646,6 +649,7 @@ export const detailsColumnList = [
checkarr: [],
fixed: false,
sortable: true,
isColumnMerge: true,
isshowSummary: false,
},
{
@ -657,6 +661,7 @@ export const detailsColumnList = [
checkarr: [],
fixed: false,
sortable: true,
isColumnMerge: true,
isshowSummary: false,
},
{
@ -667,6 +672,7 @@ export const detailsColumnList = [
width: '130',
checkarr: [],
fixed: false,
isColumnMerge: true,
sortable: true,
},
{
@ -677,21 +683,24 @@ export const detailsColumnList = [
width: '130',
checkarr: [],
fixed: false,
isColumnMerge: true,
sortable: true,
},
{
prop: 'productName',
label: '品类名称',
prop: 'waybillNum',
label: '运单总件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isColumnMerge: true,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalNum',
label: '运单总件数',
prop: 'orderNum',
label: '件数',
type: 1,
values: '',
width: '130',
@ -701,8 +710,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'totalNum',
label: '件数',
prop: 'planNum',
label: '计划件数',
type: 1,
values: '',
width: '130',
@ -712,8 +721,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'totalNum',
label: '计划件数',
prop: 'loadingNum',
label: '订单装车件数',
type: 1,
values: '',
width: '130',
@ -723,8 +732,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'totalNum',
label: '订单装车件数',
prop: 'unloadNum',
label: '车件数',
type: 1,
values: '',
width: '130',
@ -734,28 +743,86 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'stockNum',
label: '在库数',
prop: 'unloadIncome',
label: '卸车收入',
type: 1,
values: '',
width: '150',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'price',
label: '单价',
prop: 'orderLineCost',
label: '订单干线成本',
type: 1,
values: '',
width: '150',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
// {
// prop: 'totalNum',
// label: '开单单价',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// isshowSummary: true,
// isColumnMerge: true,
// sortable: true,
// },
// {
// prop: 'totalNum',
// label: '开单名称',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// isshowSummary: false,
// isColumnMerge: true,
// sortable: true,
// },
// {
// prop: 'totalNum',
// label: '订单开单名称',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// isshowSummary: false,
// sortable: true,
// },
// {
// prop: 'productName',
// label: '品类名称',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'price',
// label: '单价',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// isshowSummary: true,
// sortable: true,
// },
{
prop: 'totalWeight',
prop: 'weight',
label: '重量(KG)',
type: 1,
values: '',
@ -766,7 +833,7 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'totalVolume',
prop: 'volume',
label: '体积',
type: 1,
values: '',
@ -777,8 +844,8 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'freight',
label: '运费',
prop: 'totalFreight',
label: '运单运费',
type: 1,
values: '',
width: '130',
@ -788,24 +855,134 @@ export const detailsColumnList = [
sortable: true,
},
{
prop: 'customerTrain',
label: '客户车次',
prop: 'orderFreight',
label: '订单运费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'deliveryFee',
label: '送货费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'pickupFee',
label: '提货费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'warehouseManagementFee',
label: '仓库管理费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'storageFee',
label: '仓储费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'handlingFee',
label: '装卸费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'otherFee',
label: '其他费用',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'insuranceFee',
label: '保价费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
{
prop: 'totalFee',
label: '总费用',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
isColumnMerge: true,
sortable: true,
},
// {
// prop: 'freight',
// label: '作废运单号',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// isshowSummary: false,
// sortable: true,
// },
{
prop: 'remark',
label: '运单备注',
type: 1,
values: '',
width: '130',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
isColumnMerge: true,
isshowSummary: false,
},
];

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

@ -113,7 +113,7 @@
<div class="form_row_item">
<el-form-item inline label="副驾司机">
<el-select
v-model="form.name"
v-model="form.assistantName"
filterable
remote
reserve-keyword
@ -1075,7 +1075,8 @@ const handleNameChange = (type: number) => {
form.value.driverId = _value.driverId;
form.value.driverMobile = _value.driverPhone;
} else {
form.value.name = _value.driverName;
form.value.assistantName = _value.driverName;
form.value.assistantMobile = _value.driverPhone;
form.value.assistantId = _value.driverId;
}
};

214
src/views/distribution/artery/VehicleStowageDetails.vue

@ -20,7 +20,7 @@
</el-form-item>
<el-form-item label="分摊方式">
<el-select
readonly
disabled
:teleported="false"
v-model="form.chargeType"
class="m-2"
@ -37,7 +37,7 @@
</el-form-item>
<el-form-item label="直发商家">
<el-select
readonly
disabled
:teleported="false"
v-model="form.payMethod"
class="m-2"
@ -54,7 +54,7 @@
</el-form-item>
<el-form-item label="装车方式">
<el-select
readonly
disabled
:teleported="false"
v-model="form.loadingType"
class="m-2"
@ -180,33 +180,9 @@
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
:arraySpanMethod="
row => {
console.log('row :>> ', row);
if (row.columnIndex === 0) {
if (row.rowIndex === 0) return [2, 1];
else if (row.rowIndex === 1) return [0, 0];
}
}
"
:arraySpanMethod="row => arraySpanMethod(row)"
>
</tablecmt>
<!-- 分页模块 -->
<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="oldPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="oldPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="oldPage.total"
>
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="日 志 跟 踪" name="tab2">
@ -355,11 +331,18 @@ import {
postSelectEditDetailByLoadId,
} from '@/api/distribution/AddVehicleStowage';
import { postCarsLoadDetailInfo } from '@/api/distribution/VehicleStowageDetails.js';
import { postSaveNewTripartiteTransfer } from '@/api/distribution/addTripartiteTransfer.js';
import type { FormInstance, FormRules } from 'element-plus';
import { useRouter, useRoute } from 'vue-router';
import { useStore } from 'vuex';
/** 被合并的列 */
const mergeColumn = [];
//
detailsColumnList.map(val => {
if (val.isColumnMerge) mergeColumn.push(val.prop);
});
console.log('mergeColumn :>> ', mergeColumn);
// ,
const nodeInfokeys = nodeInfoColumnList.slice(1).map(val => val.prop);
@ -641,93 +624,82 @@ onMounted(() => {
}
});
/** 设置节点费用禁用 */
const handleEditForbidden = (_arr: any[]) => {
if (_arr.length === 0) return;
// (, )
const _firstChild = _arr[0];
_firstChild.blackList = ['unloadCost', 'unloadOtherCost'];
const _otherList = _arr.slice(1);
//
const _otherwhiteList = ['tollFee', 'reachTransportCost'];
//
const _otherBlackList = nodeInfokeys.filter(val => _otherwhiteList.indexOf(val) === -1);
// ;
for (let item of _otherList) {
item.blackList = _otherBlackList;
}
return [_firstChild, ..._otherList];
};
/** 请求页面数据 */
const onLoad = async () => {
// const res = postCarsLoadDetailInfo({ loadId: $route.query.loadId });
// console.log('res :>> ', res);
// const res = await postloadFindLoadInitData();
// const { code, data } = res.data;
// if (code !== 200) return;
// details.pageInfo = data;
// details.customerType = data.customerType;
// console.log('data :>> ', data);
// details.form.startWarehouseName = data.startWarehouseInfo.warehouseName;
// details.form.startWarehouseId = data.startWarehouseInfo.warehouseId;
// details.form.endWarehouseName = data.startWarehouseInfo.warehouseName;
// details.form.endWarehouseId = data.startWarehouseInfo.warehouseId;
// initOriginWarehouseOrder();
details.loadId = $route.query.loadId;
const res = await postSelectEditDetailByLoadId({ loadId: details.loadId });
console.log('res :>> ', res);
const { code, data } = res.data;
details.nodeInfoData = data.allCarsLineList;
details.form = data.carsLoadEntity;
details.form.driverNameAndMobile = details.form.driverName + '/' + details.form.driverMobile;
details.pageInfo.loadType = data.loadType;
details.pageInfo.chargeType = data.chargeType;
details.pageInfo.startWarehouseInfo.warehouseId = data.carsLoadEntity.startWarehouseId;
details.pageInfo.startWarehouseInfo.warehouseName = data.carsLoadEntity.startWarehouseName;
//
if (Number(details.pageType) === 2) initOriginWarehouseOrder();
//
setTabelHeight();
};
onLoad();
/** 请求运单数据 */
const initOriginWarehouseOrder = async (params = {}) => {
try {
details.loadingObj.oldListLoading = true;
const submitData = {
...details.page,
loadId: details.pageInfo.startWarehouseInfo.warehouseId,
orderCodes: details.orderCodeList,
loadId: details.loadId,
...details.query,
...params,
};
if (submitData.orderCodes.length === 0) delete submitData.orderCodes;
const res = await postFindAllOrderList(submitData);
const res = await postCarsLoadDetailInfo(submitData);
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.oldData = data.records;
details.nodeInfoData = data.carsLoadLineList;
details.oldData = [];
data.carsLoadWaybillInfoList.forEach(val => {
details.oldData.push(
...val.carsLoadOrderInfoList.map((item, index) => {
item = { ...item, ...val };
delete item.carsLoadOrderInfoList;
if (index === 0) item.mergeColumnIndex = val.carsLoadOrderInfoList.length;
else {
item.mergeColumnIndex = 0;
for (let value of mergeColumn) {
item[value] = '';
}
}
return item;
})
);
});
details.form = data;
details.form.driverNameAndMobile = details.form.driverName + '/' + details.form.driverMobile;
details.form.assistantNameAndMobile =
details.form.assistantName + '/' + details.form.assistantMobile;
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
//
await nextTick();
details.loadingObj.oldListLoading = false;
}
};
/** 请求页面数据 */
const onLoad = async () => {
details.loadId = $route.query.loadId;
//
initOriginWarehouseOrder();
//
postSelectEditDetailByLoadId({ loadId: details.loadId }).then(res => {
const { code, data } = res.data;
if (code !== 200) return;
details.pageInfo.loadType = data.loadType;
details.pageInfo.chargeType = data.chargeType;
});
// details.pageInfo.startWarehouseInfo.warehouseId = data.carsLoadEntity.startWarehouseId;
// details.pageInfo.startWarehouseInfo.warehouseName = data.carsLoadEntity.startWarehouseName;
//
//
setTabelHeight();
};
onLoad();
/** 搜索 */
const searchChange = () => {
initOriginWarehouseOrder();
@ -741,12 +713,6 @@ const searchReset = () => {
initOriginWarehouseOrder();
};
//
const clearSelectionList = () => {
details.selectionList = [];
oldColumnListNode.value.handleCheckSelect([]);
};
/** 展开列表控件 */
const showdrawer = (_flag?: boolean, _type?: number) => {
switch (_type) {
@ -766,26 +732,6 @@ const searchHide = async () => {
// setNodeHeight(details.listNode);
};
/** 远程搜索承运商 */
const remoteMethod = value => {
if (!value) return;
const res = debounce(async () => {
const res = await postFindCarrierByName({ carrierName: value });
const { code, data } = res.data;
if (code !== 200) return;
details.carrierNameOptions = data;
}, 500);
};
/** 查询司机信息 */
const remoteMethodDriver = async val => {
const res = await postFindDriverListByName({ driverName: val });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.driverListByName = data;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
@ -821,17 +767,6 @@ const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
initOriginWarehouseOrder();
};
/** 页码改变执行的回调 */
const currentChange = (pageNum: number) => {
initOriginWarehouseOrder();
};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
@ -863,11 +798,12 @@ const handleNameChange = () => {
form.value.driverMobile = _value.driverPhone;
};
const arraySpanMethod = (row, column, rowIndex, columnIndex) => {
console.log('row :>> ', row);
console.log('column :>> ', column);
console.log('rowIndex :>> ', rowIndex);
console.log('columnIndex :>> ', columnIndex);
const arraySpanMethod = (row: any) => {
const { column } = row;
if (mergeColumn.indexOf(column.property) !== -1) {
if (row.row.mergeColumnIndex !== 0) return [row.row.mergeColumnIndex, 1];
else return [0, 0];
}
};
/** 关闭页面 */

34
src/views/distribution/deliverylist/distributionDeliveryListdis.vue

@ -508,17 +508,17 @@ export default {
fixed: false,
sortable: true,
},
// {
// prop: 'kind',
// label: '',
// type: 3,
// values: '',
// width: '180',
// checkarr: [],
// fixed: false,
// sortable: true,
// hide:true,
// },
{
prop: 'clineName',
label: '客户名称',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
hide:true,
},
{
prop: 'kindName',
label: '配送种类',
@ -1468,10 +1468,10 @@ export default {
align-items: flex-end;
justify-content: flex-end;
}
:deep(.maboxhi) {
height: 100% !important;
}
.el_tabBK {
height: 70%;
}
// :deep(.maboxhi) {
// height: 100% !important;
// }
// .el_tabBK {
// // height: 70%;
// }
</style>

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

@ -134,7 +134,7 @@
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@inputTxt="inputscClient"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@ -197,11 +197,7 @@
:columnList="ordoptioncolumn"
:tableData="orddata"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
@inputTxt="inputscOrder"
>
<template #default="slotProps"> </template>
</tablecmt>
@ -212,7 +208,7 @@
:columnList="wrapoptioncolumn"
:tableData="packdata"
:loading="loading"
@inputTxt="inputsc"
@inputTxt="inputscPackage"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@ -272,7 +268,7 @@
:columnList="inventoryoptioncolumn"
:tableData="inventorydata"
:loading="loading"
@inputTxt="inputsc"
@inputTxt="inputscInventory"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@ -613,18 +609,18 @@
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getOneclick,
getorddetail,
getWrapdetail,
getpackdetail,
getinventorydetail,
} from '@/api/distribution/distributionDeliveryList';
import {
getList,
getDetail,
add,
update,
remove,
getOneclick,
getorddetail,
getWrapdetail,
getpackdetail,
getinventorydetail, getClientDetail
} from '@/api/distribution/distributionDeliveryList';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList';
import { update as updatesign, getOneclickq } from '@/api/distribution/distributionSignfor';
@ -669,6 +665,17 @@ export default {
reservationId: null, //ID
windowHeight: null,
columnList: [
{
prop: 'trainNumber',
label: '配送车次号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'reservationCode',
label: '预约单号',
@ -681,8 +688,8 @@ export default {
head: false,
},
{
prop: 'trainNumber',
label: '配送车次号',
prop: 'waybillNo',
label: '运单号',
type: 2,
values: '',
width: '150',
@ -725,7 +732,7 @@ export default {
{
prop: 'deliveryAddress',
label: '收货地址',
type: 3,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -767,7 +774,7 @@ export default {
{
prop: 'reservationStockListNum',
label: '计划库存品数',
type: 2,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -1093,8 +1100,8 @@ export default {
],
ordoptioncolumn: [
{
prop: 'orderCode',
label: '订单自编号',
prop: 'waybillNumber',
label: '运单号',
type: 2,
values: '',
width: '150',
@ -1104,8 +1111,8 @@ export default {
head: false,
},
{
prop: 'descriptionGoods',
label: '货物名称',
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
@ -1114,6 +1121,28 @@ export default {
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'descriptionGoods',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'materialName',
label: '物料名称',
@ -1128,7 +1157,7 @@ export default {
{
prop: 'totalNumber',
label: '包件总数',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1138,7 +1167,7 @@ export default {
{
prop: 'handQuantity',
label: '在库数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1148,7 +1177,7 @@ export default {
{
prop: 'deliveryNumber',
label: '计划数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1158,7 +1187,7 @@ export default {
{
prop: 'stockupNumber',
label: '已备数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1168,7 +1197,7 @@ export default {
{
prop: 'loadingNumber',
label: '装车数量',
type: 3,
type: 1,
values: '',
width: '150',
checkarr: [],
@ -1211,7 +1240,7 @@ export default {
{
prop: 'consigneeUnit',
label: '收货单位',
type: 1,
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1221,7 +1250,7 @@ export default {
{
prop: 'consigneePerson',
label: '运单收货人',
type: 1,
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1231,7 +1260,7 @@ export default {
{
prop: 'consigneeAddress',
label: '运单收货地址',
type: 1,
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1241,7 +1270,7 @@ export default {
{
prop: 'consigneeMobile',
label: '运单收货电话',
type: 1,
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1251,7 +1280,7 @@ export default {
{
prop: 'customerName',
label: '终端收货人',
type: 1,
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1261,7 +1290,7 @@ export default {
{
prop: 'customerAddress',
label: '终端收货地址',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -1271,7 +1300,7 @@ export default {
{
prop: 'customerTelephone',
label: '终端收货电话',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -1359,7 +1388,7 @@ export default {
{
prop: 'sendWarehouseName',
label: '发站仓',
type: 3,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -1377,32 +1406,31 @@ export default {
sortable: true,
head: false,
},
{
prop: 'fahuoTime',
label: '发货时间',
prop: 'trainNumber',
label: '入库车次',
type: 2,
values: '',
width: '150',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'warehouseEntryTimeEnd',
label: '入库时间',
prop: 'firsts',
label: '一级品类',
type: 2,
values: '',
width: '150',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'trainNumber',
label: '入库车次',
type: 1,
prop: 'second',
label: '二级品类',
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1410,9 +1438,9 @@ export default {
sortable: true,
},
{
prop: 'firsts',
label: '级品类',
type: 1,
prop: 'thirdProduct',
label: '级品类',
type: 2,
values: '',
width: '180',
checkarr: [],
@ -1420,24 +1448,26 @@ export default {
sortable: true,
},
{
prop: 'second',
label: '二级品类',
prop: 'fahuoTime',
label: '发货时间',
type: 1,
values: '',
width: '180',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'thirdProduct',
label: '三级品类',
prop: 'warehouseEntryTimeEnd',
label: '入库时间',
type: 1,
values: '',
width: '180',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageStatusName',
@ -1517,7 +1547,7 @@ export default {
{
prop: 'quantity',
label: '包件数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1528,7 +1558,7 @@ export default {
{
prop: 'reservationNum',
label: '计划数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1538,7 +1568,7 @@ export default {
{
prop: 'loadingNub',
label: '装车数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1548,7 +1578,7 @@ export default {
{
prop: 'signingNub',
label: '签收数量',
type: 2,
type: 1,
values: '',
width: '180',
checkarr: [],
@ -1633,17 +1663,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
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: 'marketName',
label: '商场名称',
@ -1921,6 +1951,10 @@ export default {
dialogFormCustomer: false,
//
query: {},
orderQuery: {},
clientQuery: {},
inventoryQuery: {},
packageQuery: {},
formCustomer: {},
formCustomerRolus: {
consignee: [{ required: true, message: '请输入姓名', trigger: 'blur' }],
@ -2852,17 +2886,31 @@ export default {
let tabName = tab.paneName;
switch (tabName) {
case 'tab1':
//
this.handleClient(this.page);
console.log('ssss');
break;
case 'tab2':
//
this.handleOrder(this.page);
console.log('ssss');
break;
case 'tab3':
//
this.handlePackage(this.page);
console.log('ssss');
break;
case 'tab4':
//
this.handleInventory(this.page);
console.log('ssss');
break;
default:
this.clientQuery ={};
this.orderQuery ={};
this.packageQuery ={};
this.inventoryQuery ={};
break;
}
},
searchHide() {
@ -2878,6 +2926,36 @@ export default {
},
inputsc() {},
inputscOrder(index, row) {
console.log('index',index);
console.log('row',row);
this.orderQuery[row.prop] = index;
if (!index) delete this.orderQuery[row.prop];
this.handleOrder(this.page);
},
inputscPackage(index, row) {
console.log('index',index);
console.log('row',row);
this.packageQuery[row.prop] = index;
if (!index) delete this.packageQuery[row.prop];
this.handlePackage(this.page);
},
inputscClient(index, row) {
console.log('index',index);
console.log('row',row);
this.clientQuery[row.prop] = index;
if (!index) delete this.clientQuery[row.prop];
this.handleClient(this.page);
},
inputscInventory(index, row) {
console.log('index',index);
console.log('row',row);
this.inventoryQuery[row.prop] = index;
if (!index) delete this.inventoryQuery[row.prop];
this.handleInventory(this.page);
},
timesc() {},
btnsc() {},
selectsc() {},
@ -3154,12 +3232,23 @@ export default {
this.ord = false;
this.inventory = false;
},
//
handleClient(page) {
let params = {};
console.log();
params.deliveryId = this.deliverydata.id;
getClientDetail(page.currentPage, page.pageSize, Object.assign(params, this.clientQuery)).then(res => {
console.log('查看>>>>>订单>>', res.data.data);
const data = res.data.data;
this.data = data.records;
this.ordpage.total = data.total;
});
},
//
handleOrder(page) {
let params = {};
params.deliveryId = this.deliverydata.id;
getorddetail(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
getorddetail(page.currentPage, page.pageSize, Object.assign(params, this.orderQuery)).then(res => {
console.log('查看>>>>>订单>>', res.data.data);
const data = res.data.data;
this.orddata = data.records;
@ -3170,7 +3259,7 @@ export default {
handlePackage(page) {
let params = {};
params.deliveryId = this.deliverydata.id;
getpackdetail(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
getpackdetail(page.currentPage, page.pageSize, Object.assign(params, this.packageQuery)).then(
res => {
console.log('查看>>>>>包间>>', res.data.data);
const data = res.data.data;
@ -3183,7 +3272,7 @@ export default {
handleInventory(page) {
let params = {};
params.deliveryId = this.deliverydata.id;
getinventorydetail(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
getinventorydetail(page.currentPage, page.pageSize, Object.assign(params, this.inventoryQuery)).then(
res => {
console.log('查看>>>>>库存>>', res.data.data);
const data = res.data.data;
@ -3421,16 +3510,16 @@ export default {
this.deliverydata.deliveryNumber = packNum;
this.deliverydata.inventoryNub = invenNum;
this.deliverydata.signingNumber = signNum;
console.log('---------------------------->a', a);
console.log('---------------------------->packNum', packNum);
console.log('---------------------------->invenNum', invenNum);
console.log('---------------------------->signNum', signNum);
this.handleOrder(this.packpage);
this.handlePackage(this.packpage);
console.log('--------->deliveryType', this.deliverydata);
if (this.deliverydata.deliveryType !== '商配') {
this.handleInventory(this.packpage);
}
// console.log('---------------------------->a', a);
// console.log('---------------------------->packNum', packNum);
// console.log('---------------------------->invenNum', invenNum);
// console.log('---------------------------->signNum', signNum);
// this.handleOrder(this.packpage);
// this.handlePackage(this.packpage);
// console.log('--------->deliveryType', this.deliverydata);
// if (this.deliverydata.deliveryType !== '') {
// this.handleInventory(this.packpage);
// }
});
this.loading = false;

77
src/views/distribution/deliverylist/distributionDeliveryListmar.vue

@ -161,6 +161,7 @@
</template>
</tablecmt>
</div>
<div class="el-fx-btn">
<div class="el_fontsize" style="font-size: 14px">
勾选数量: {{ selectionList.length }}
@ -180,36 +181,6 @@
</el-pagination>
</div>
</el-row>
<el-row>
<!-- <el-table ref="table" v-loading="loading"-->
<!-- @selection-change="selectionChange"-->
<!-- :data="data"-->
<!-- :height="height"-->
<!-- style="width: 100%"-->
<!-- :border="option.border">-->
<!--&lt;!&ndash; <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>&ndash;&gt;-->
<!-- <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>-->
<!--&lt;!&ndash; <el-table-column v-if="option.index" label="#" type="index" width="50" align="center">&ndash;&gt;-->
<!--&lt;!&ndash; </el-table-column>&ndash;&gt;-->
<!-- <template v-for="(item,index) in option.column">-->
<!-- &lt;!&ndash; table字段 &ndash;&gt;-->
<!-- <el-table-column v-if="item.hide!==true"-->
<!-- :prop="item.prop"-->
<!-- :label="item.label"-->
<!-- :width="item.width"-->
<!-- :key="index">-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- &lt;!&ndash; 操作栏模块 &ndash;&gt;-->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!--&lt;!&ndash; <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>&ndash;&gt;-->
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleViewBlank(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleViewBlank(row)">查看地图</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- </el-table>-->
</el-row>
<!-- 打印模块 -->
<el-dialog title="二维码" :visible.sync="isShow" width="780px" v-model="isShow">
@ -232,46 +203,6 @@
</span>
</el-dialog>
</div>
<!-- <el-dialog v-model="dialogVisible" title="增值服务" width="30%" :model="addvalue" :before-close="handleClose">-->
<!-- <el-form-item label="增值服务" prop="freightMark">-->
<!-- <el-checkbox-group v-model="form.addvalueType" @change="handleCheckedCitiesChange">-->
<!-- <el-checkbox style="width: 100%; margin-bottom: 3%" v-for="(item, index) in addvalueServeTypeData"-->
<!-- :key="item.dictKey" :label="item.dictKey">{{ item.dictValue }}-->
<!-- <span v-if="index === 0 || index === 6 || index === 2 || index === 4">&nbsp;件数:-->
<!-- <el-input type="number" v-model="item.f" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 1)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- <span v-if="index === 1">公里:-->
<!-- <el-input type="primary" v-model="item.a" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 2)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- <span v-if="index === 3">距离:-->
<!-- <el-input type="number" v-model="item.b" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 3)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- <span v-if="index === 5">人数:-->
<!-- <el-input type="number" v-model="item.c" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 4)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- <span v-if="index === 0">楼层:-->
<!-- <el-input type="number" v-model="item.d" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 5)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- <span v-if="item">预计费用:-->
<!-- <el-input type="number" v-model="item.e" :disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1"-->
<!-- @change="textbox($event, index, 6)" style="width: 20%; border: none; border-bottom: 2px solid #eee" />-->
<!-- </span>-->
<!-- </el-checkbox>-->
<!-- </el-checkbox-group>-->
<!-- </el-form-item>-->
<!-- <template #footer>-->
<!-- <span class="dialog-footer">-->
<!-- <el-button @click="dialogVisible = false">取消</el-button>-->
<!-- <el-button type="primary" @click="aaa"> 确定(增值服务) </el-button>-->
<!-- </span>-->
<!-- </template>-->
<!-- </el-dialog>-->
</basic-container>
<edittablehead
@setcolum="setnewcolum"
@ -929,6 +860,10 @@ export default {
async setTableHeight() {
await this.$nextTick();
console.log('this.tableNode :>> ', this.$refs.tableNode.$el);
const elNode = this.$refs.tableNode.$el;
// getWinHeight
console.log('getWinHeight() :>> ', getWinHeight());
setNodeHeight(elNode, getWinHeight() - elNode.getBoundingClientRect().top - 60 + 'px');
},
//tabs
@ -1554,7 +1489,7 @@ export default {
}
.el-fx-btn {
display: flex;
justify-content: flex-end;
justify-content: space-between;
margin-right: 20px;
width: 100%;
}

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

@ -684,7 +684,11 @@
</el-form-item>
<div class="flex-c-c">
<el-button type="primary" icon="Position" @click="handleSubmit(ruleFormRef)"
<el-button
type="primary"
:loading="details.loadingObj.submitLoadingBtn"
icon="Position"
@click="handleSubmit(ruleFormRef)"
>提交</el-button
>
<el-button type="primary" icon="Refresh" @click="handleRefresh">重置</el-button>
@ -1224,6 +1228,8 @@ const details = reactive<any>({
stowageLoading: false,
/** 收货方 */
consignerLoading: false,
/** 提交按钮 */
submitLoadingBtn: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
@ -1648,54 +1654,64 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
if (!formEl) return;
formEl.validate(async valid => {
if (valid) {
//
const _flag = details.goodsList.every(val => {
console.log('val :>> ', val);
if (!val.goodsName || !isNumer(val.num) || val.num === 0) return false;
return true;
});
if (!_flag) {
return ElMessage({
type: 'warning',
message: '请填写正确的货物名称和件数',
try {
// loading
details.loadingObj.submitLoadingBtn = true;
//
const _flag = details.goodsList.every(val => {
console.log('val :>> ', val);
if (!val.goodsName || !isNumer(val.num) || val.num === 0) return false;
return true;
});
}
console.log('submit!');
const submitData = {
...details.query,
waybillDetailList: details.goodsList,
advanceIds: info.value.advanceIds,
...details.totalObj,
huilaiPay: 1,
};
if (!_flag) {
return ElMessage({
type: 'warning',
message: '请填写正确的货物名称和件数',
});
}
const { destination } = submitData;
console.log('submit!');
const submitData = {
...details.query,
waybillDetailList: details.goodsList,
advanceIds: info.value.advanceIds,
...details.totalObj,
huilaiPay: 1,
};
if (destination.length === 1) {
return ElMessage({ message: '请选择正确到站地址', type: 'warning' });
}
//
const _findeLocation = details.regionOptione
.find(val => val.value === destination[0])
.children.find(val => val.value === destination[1]);
if (destination.length === 2) {
submitData.destination = _findeLocation.label;
} else {
submitData.destination = _findeLocation.children.find(
val => val.value === destination[2]
).label;
const { destination } = submitData;
if (destination.length === 1) {
return ElMessage({ message: '请选择正确到站地址', type: 'warning' });
}
//
const _findeLocation = details.regionOptione
.find(val => val.value === destination[0])
.children.find(val => val.value === destination[1]);
if (destination.length === 2) {
submitData.destination = _findeLocation.label;
} else {
submitData.destination = _findeLocation.children.find(
val => val.value === destination[2]
).label;
}
submitData.goodsName = submitData.waybillDetailList.map(val => val.goodsName).join(',');
submitData.waybillType = 1;
if (typeof submitData.receipt === 'object')
submitData.receipt = submitData.receipt.join(',');
console.log('submitData :>> ', submitData);
const res = await postOpenOrderOpenWaybill(submitData);
const { code } = res.data;
if (code !== 200) return;
back();
console.log('res :>> ', res);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.submitLoadingBtn = false;
}
submitData.goodsName = submitData.waybillDetailList.map(val => val.goodsName).join(',');
submitData.waybillType = 1;
if (typeof submitData.receipt === 'object') submitData.receipt = submitData.receipt.join(',');
console.log('submitData :>> ', submitData);
const res = await postOpenOrderOpenWaybill(submitData);
const { code } = res.data;
if (code !== 200) return;
back();
console.log('res :>> ', res);
} else {
console.log('error submit!');
return false;

24
src/views/distribution/reservation/reservation.vue

@ -228,14 +228,6 @@
</el-text>
</template>
</tablecmt>
<div style="zoom: 0.9; margin-top: 10px">
<span> 勾选合计: </span>
<span>
预约包件数: <el-text type="success">{{ totalObj.checkReservationNum }}</el-text>
</span>
</div>
</div>
</div>
</el-tab-pane>
@ -341,7 +333,6 @@ import {
patchPrintList,
reservationExport,
} from '@/api/distribution/distributionReservation';
import option from '@/option/distribution/distributionReservation';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import { addAssign, getListUser } from '@/api/distribution/distributionStockup';
@ -828,8 +819,6 @@ export default {
cancel: {},
//
selectionList: [],
//
option: option,
//
data: [],
/** 全部数据 */
@ -858,11 +847,6 @@ export default {
orderStatus: 'all',
unconfirmedList: null,
confirmedList: null,
/** 合计 */
totalObj: {
/** 被选中的预约包件数 */
checkReservationNum: 0,
},
};
},
watch: {
@ -1462,14 +1446,6 @@ export default {
},
selectionChange(list) {
this.selectionList = list;
//
for (let key in this.totalObj) {
this.totalObj[key] = 0;
}
//
this.selectionList.forEach(val => {
this.totalObj.checkReservationNum += val.reservationNum;
});
},
selectionClear() {
this.selectionList = [];

106
src/views/distribution/signfor/distributionSignfortreat.vue

@ -157,7 +157,13 @@
>
<template #default="slotProps">
<template
v-if="slotProps.scope.column.label === '配送件数' || '装车件数' || '签收数'|| '未签收数'|| '未装车件数'"
v-if="
slotProps.scope.column.label === '配送件数' ||
'装车件数' ||
'签收数' ||
'未签收数' ||
'未装车件数'
"
>
<el-text @click="InformationViewing(slotProps.scope)">
<!-- {{slotProps.scope.row.reservationNum}} -->
@ -168,9 +174,9 @@
? slotProps.scope.row.loadedNumber
: slotProps.scope.column.label === '签收件数'
? slotProps.scope.row.receivedQuantity
:slotProps.scope.column.label === '未签收件数'
: slotProps.scope.column.label === '未签收件数'
? slotProps.scope.row.unreceivedQuantity
:slotProps.scope.column.label === '未装车件数'
: slotProps.scope.column.label === '未装车件数'
? slotProps.scope.row.unloadedNumber
: ''
}}
@ -507,22 +513,16 @@
<!-- </template>-->
</el-dialog>
<el-dialog
:title="numberTitle"
v-model="numberDetailDialogVisible"
width="70%"
>
<el-dialog :title="numberTitle" v-model="numberDetailDialogVisible" width="70%">
<tablecmt
:columnList="numberDetailColumnList"
:tableData="numberDetailData"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionsc"
:columnList="numberDetailColumnList"
:tableData="numberDetailData"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionsc"
>
</tablecmt>
@ -532,18 +532,19 @@
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getPage,
getstatistics,
loadingAbnormalPackageListDetail,
loadingAbnormalPackageListAuditing,
getSignforExport, numberDetail
} from '@/api/distribution/distributionSignfor';
import {
getList,
getDetail,
add,
update,
remove,
getPage,
getstatistics,
loadingAbnormalPackageListDetail,
loadingAbnormalPackageListAuditing,
getSignforExport,
numberDetail,
} from '@/api/distribution/distributionSignfor';
import { update as updatesign } from '@/api/distribution/distributionSignfor';
import option from '@/option/distribution/distributionSignfor';
import { mapGetters } from 'vuex';
@ -568,8 +569,8 @@ export default {
dialogVisibleC: false,
dialogVisibleD: false,
dialogVisibleE: false,
numberDetailDialogVisible:false,
numberTitle:'',
numberDetailDialogVisible: false,
numberTitle: '',
TcForm: {}, //
//
DoorstepPhoto: [],
@ -857,6 +858,7 @@ export default {
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
head: false,
},
{
@ -867,6 +869,7 @@ export default {
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
@ -877,6 +880,7 @@ export default {
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
@ -887,6 +891,7 @@ export default {
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
@ -896,6 +901,7 @@ export default {
values: '',
width: '130',
checkarr: [],
isshowSummary: true,
fixed: false,
sortable: true,
},
@ -1138,7 +1144,7 @@ export default {
},
// ...
],
numberDetailData:[],
numberDetailData: [],
//
signoption: {
height: 'auto',
@ -1800,31 +1806,30 @@ export default {
type = 1;
console.log('查看配送件数');
break;
case '装车件数':
type = 2;
this.numberTitle = '装车详情列表';
break;
case '未装车件数':
type = 3;
this.numberTitle = '未装车详情列表';
case '装车件数':
type = 2;
this.numberTitle = '装车详情列表';
break;
case '未装车件数':
type = 3;
this.numberTitle = '未装车详情列表';
break;
case '签收件数':
type = 4;
this.numberTitle = '签收详情列表';
case '签收件数':
type = 4;
this.numberTitle = '签收详情列表';
break;
case '未签收件数':
type = 5;
this.numberTitle = '未签收详情列表';
case '未签收件数':
type = 5;
this.numberTitle = '未签收详情列表';
break;
}
numberDetail(row.row.id,type).then(res=>{
numberDetail(row.row.id, type).then(res => {
this.numberDetailDialogVisible = true;
const data = res.data.data;
this.numberDetailData = data;
console.log('res--------->',res);
})
console.log('res--------->', res);
});
},
handlePictureCardPreview(uploadFile) {
console.log(uploadFile);
@ -2461,7 +2466,6 @@ export default {
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
}

10
src/views/warehouse/warehouseWaybill.vue

@ -68,7 +68,7 @@
</template>
</tablecmt>
</el-row>
<el-row class='el-fy'>
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
@ -589,6 +589,7 @@ export default {
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
@ -599,6 +600,7 @@ export default {
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
@ -610,6 +612,7 @@ export default {
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
head: false,
},
{
@ -621,6 +624,7 @@ export default {
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
head: false,
},
{
@ -654,6 +658,7 @@ export default {
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
head: false,
},
{
@ -1401,8 +1406,7 @@ export default {
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
align-items: flex-end;
}
</style>

1
src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

@ -249,7 +249,6 @@
type="primary"
text
icon="el-icon-delete"
v-if="row.conditions == '1'"
@click="rowDelOwn(row)"
:disabled="typeView"
>删除</el-button

4
vite.config.js

@ -24,8 +24,8 @@ export default ({ mode, command }) => {
// target: 'http://192.168.6.116:8777',
target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.57:13000',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.6.116:8777',
// tjj
// sst

Loading…
Cancel
Save