|
|
|
@ -172,20 +172,7 @@
|
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
ref="nodeInfoRef" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-input-number |
|
|
|
|
controls-position="right" |
|
|
|
|
:precision="2" |
|
|
|
|
:min="0" |
|
|
|
|
:step="1" |
|
|
|
|
:disabled=" |
|
|
|
|
Number(details.pageType) === 2 || |
|
|
|
|
slotProps.scope.row.blackList.includes(slotProps.scope.column.property) |
|
|
|
|
" |
|
|
|
|
@input="handleComputedNum" |
|
|
|
|
v-model="slotProps.scope.row[slotProps.scope.column.property]" |
|
|
|
|
/> |
|
|
|
|
</template> |
|
|
|
|
<template #default="slotProps"> </template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
<!-- 标题 运单信息 --> |
|
|
|
@ -240,13 +227,22 @@
|
|
|
|
|
<!-- 表格 --> |
|
|
|
|
<tablecmt |
|
|
|
|
ref="oldColumnListNode" |
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:columnList="details.detailsColumnList" |
|
|
|
|
:tableData="details.oldData" |
|
|
|
|
:loading="loadingObj.oldListLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@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]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
@ -388,7 +384,7 @@
|
|
|
|
|
@setcolum="setnewcolum" |
|
|
|
|
@closce="showdrawer" |
|
|
|
|
:drawerShow="drawerShow" |
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:columnList="details.detailsColumnList" |
|
|
|
|
> |
|
|
|
|
</edittablehead> |
|
|
|
|
</template> |
|
|
|
@ -401,11 +397,7 @@ import { mapGetters } from 'vuex';
|
|
|
|
|
/** 获取字典 */ |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { downloadXls, computeNumber, setNodeHeight, debounce } from '@/utils/util'; |
|
|
|
|
import { |
|
|
|
|
columnList, |
|
|
|
|
newColumnList, |
|
|
|
|
nodeInfoColumnList, |
|
|
|
|
} from '@/option/distribution/addVehicleStowage'; |
|
|
|
|
import { detailsColumnList, nodeInfoColumnList } from '@/option/distribution/addVehicleStowage'; |
|
|
|
|
|
|
|
|
|
import { |
|
|
|
|
postloadFindLoadInitData, |
|
|
|
@ -477,9 +469,7 @@ const details = reactive<any>({
|
|
|
|
|
/** 修改的列表信息 */ |
|
|
|
|
editColumnList: [], |
|
|
|
|
/** 运单池 */ |
|
|
|
|
columnList, |
|
|
|
|
/** 调度池 */ |
|
|
|
|
newColumnList, |
|
|
|
|
detailsColumnList, |
|
|
|
|
/** 节点列表 */ |
|
|
|
|
nodeInfoColumnList, |
|
|
|
|
nodeInfoData: [], |
|
|
|
@ -632,11 +622,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; |
|
|
|
|
} |
|
|
|
@ -644,7 +634,7 @@ onMounted(() => {
|
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
details.detailsColumnList.map(item => { |
|
|
|
|
if (item.head) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
@ -652,11 +642,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'; |
|
|
|
@ -668,7 +658,7 @@ onMounted(() => {
|
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
details.detailsColumnList.map(item => { |
|
|
|
|
if (item.fixed) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
@ -676,11 +666,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; |
|
|
|
|
} |
|
|
|
@ -688,7 +678,7 @@ onMounted(() => {
|
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
details.columnList.map(item => { |
|
|
|
|
details.detailsColumnList.map(item => { |
|
|
|
|
if (item.sortable) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
@ -765,7 +755,7 @@ const showdrawer = (_flag?: boolean, _type?: number) => {
|
|
|
|
|
switch (_type) { |
|
|
|
|
default: |
|
|
|
|
console.log('123 :>> ', 123); |
|
|
|
|
details.editColumnList = details.columnList; |
|
|
|
|
details.editColumnList = details.detailsColumnList; |
|
|
|
|
break; |
|
|
|
|
// details. |
|
|
|
|
} |
|
|
|
@ -852,61 +842,17 @@ const currentChange = (pageNum: number) => {
|
|
|
|
|
* */ |
|
|
|
|
const setnewcolum = (newarr, headarr, type) => { |
|
|
|
|
if (type == 1) { |
|
|
|
|
details.columnList = newarr; |
|
|
|
|
details.detailsColumnList = newarr; |
|
|
|
|
functions.setStorage(window.location.pathname + 'checkList', headarr); |
|
|
|
|
} else if (type == 2) { |
|
|
|
|
details.columnList = newarr; |
|
|
|
|
details.detailsColumnList = newarr; |
|
|
|
|
functions.setStorage(window.location.pathname + 'flexList', headarr); |
|
|
|
|
} else if (type == 3) { |
|
|
|
|
details.columnList = newarr; |
|
|
|
|
details.detailsColumnList = newarr; |
|
|
|
|
functions.setStorage(window.location.pathname + 'sortlist', headarr); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 加入调度池 */ |
|
|
|
|
const handleAddWaybill = () => { |
|
|
|
|
details.newData = details.selectionList.map(val => { |
|
|
|
|
val.planNum = val.stockNum; |
|
|
|
|
val.loadingNum = 0; |
|
|
|
|
|
|
|
|
|
return val; |
|
|
|
|
}); |
|
|
|
|
details.orderCodeList = [ |
|
|
|
|
...new Set([ |
|
|
|
|
...details.orderCodeList, |
|
|
|
|
...details.selectionList.map(val => val.orderCode + ',' + val.waybillNo), |
|
|
|
|
]), |
|
|
|
|
]; |
|
|
|
|
console.log('details.orderCodeList :>> ', details.orderCodeList); |
|
|
|
|
|
|
|
|
|
const orderCodes = details.selectionList.map(val => val.orderCode); |
|
|
|
|
clearSelectionList(); |
|
|
|
|
details.page.pageNum = 1; |
|
|
|
|
initOriginWarehouseOrder(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 移除调度池 */ |
|
|
|
|
const handleRemoveWaybill = () => { |
|
|
|
|
// 将被选中的数据筛选出去 |
|
|
|
|
details.newData = details.newData.filter((val, index) => { |
|
|
|
|
const _flag = !details.newSelectionList.includes(val); |
|
|
|
|
if (!_flag) { |
|
|
|
|
const _code = val.orderCode + ',' + val.waybillNo; |
|
|
|
|
const _index = details.orderCodeList.indexOf(_code); |
|
|
|
|
// 删除映射的订单号+运单号 |
|
|
|
|
details.orderCodeList.splice(_index, 1); |
|
|
|
|
} |
|
|
|
|
return _flag; |
|
|
|
|
}); |
|
|
|
|
clearSelectionList(); |
|
|
|
|
initOriginWarehouseOrder(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 新增承运商 */ |
|
|
|
|
const handleAddCarrier = () => { |
|
|
|
|
$router.push({ path: '/basicdata/carrier/basicdataCarrier' }); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 选择承运商 */ |
|
|
|
|
const carrierNameChange = () => {}; |
|
|
|
|
|
|
|
|
@ -920,6 +866,13 @@ 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 back = () => { |
|
|
|
|
$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|