|
|
|
@ -71,9 +71,50 @@
|
|
|
|
|
></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="发站:" prop="departure"> |
|
|
|
|
<el-input readonly v-model="query['departure']" placeholder="到站地址"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="到站:" prop="destination"> |
|
|
|
|
<el-input readonly v-model="query['destination']" placeholder="到站地址"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="发站:" prop="departure"> |
|
|
|
|
<div class="w100"> |
|
|
|
|
<el-cascader |
|
|
|
|
pleceholder="请选择到站地址" |
|
|
|
|
:options="details.regionOptione" |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="query.departure" |
|
|
|
|
:props="{ |
|
|
|
|
checkStrictly: true, |
|
|
|
|
}" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
|
</template> |
|
|
|
|
</el-cascader> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="到站:" prop="destination"> |
|
|
|
|
<div class="w100"> |
|
|
|
|
<el-cascader |
|
|
|
|
pleceholder="请选择到站地址" |
|
|
|
|
:options="details.regionOptione" |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="query.destination" |
|
|
|
|
:props="{ |
|
|
|
|
checkStrictly: true, |
|
|
|
|
}" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
|
</template> |
|
|
|
|
</el-cascader> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> --> |
|
|
|
|
|
|
|
|
|
<el-form-item label="目的仓:" class="el-times" prop="queryDestinationWarehouseName"> |
|
|
|
|
<el-input |
|
|
|
@ -1323,9 +1364,56 @@ const handleComputed = (row: any) => {
|
|
|
|
|
getLazyTreeAll().then(res => { |
|
|
|
|
if (res.data.success) { |
|
|
|
|
details.regionOptione = res.data.data; |
|
|
|
|
|
|
|
|
|
// 转译到站 |
|
|
|
|
if (details.regionOptione.length !== 0) { |
|
|
|
|
handleTranslationLocation('departure'); |
|
|
|
|
handleTranslationLocation('destination'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 改单时, 对数据库内到站值进行转译 |
|
|
|
|
const handleTranslationLocation = key => { |
|
|
|
|
// 获取数据库中地址值 |
|
|
|
|
const _location = details.query[key]; |
|
|
|
|
|
|
|
|
|
let _arr = []; |
|
|
|
|
|
|
|
|
|
// 循环查找匹配的到站地址 |
|
|
|
|
for (const iterator of details.regionOptione) { |
|
|
|
|
let isBreak = false; |
|
|
|
|
|
|
|
|
|
if (iterator.label === _location) { |
|
|
|
|
_arr = [iterator.label]; |
|
|
|
|
isBreak = true; |
|
|
|
|
} else if (getObjType(iterator.children) === 'array') { |
|
|
|
|
for (const item of iterator.children) { |
|
|
|
|
if (item.label === _location) { |
|
|
|
|
_arr = [iterator.label, item.label]; |
|
|
|
|
isBreak = true; |
|
|
|
|
break; |
|
|
|
|
} else if (getObjType(item.children) === 'array') { |
|
|
|
|
for (const value of item.children) { |
|
|
|
|
if (value.label === _location) { |
|
|
|
|
_arr = [iterator.label, item.label, value.label]; |
|
|
|
|
isBreak = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (isBreak) break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (isBreak) break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const _label = _arr.slice(1).join('/'); |
|
|
|
|
|
|
|
|
|
details.query[key] = _label; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 请求页面数据 */ |
|
|
|
|
const onLoad = async () => { |
|
|
|
|
try { |
|
|
|
@ -1360,8 +1448,12 @@ const onLoad = async () => {
|
|
|
|
|
details.query.daoPay = isNumber(data.warehouseWaybill.dPay) |
|
|
|
|
? Number(data.warehouseWaybill.dPay) |
|
|
|
|
: data.warehouseWaybill.dPay; |
|
|
|
|
|
|
|
|
|
// 转译到站 |
|
|
|
|
console.log('details.query :>> ', details.query); |
|
|
|
|
if (details.regionOptione.length !== 0) { |
|
|
|
|
handleTranslationLocation('departure'); |
|
|
|
|
handleTranslationLocation('destination'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 初始化goodsList |
|
|
|
|
if (data.warehouseWaybill.detailList.length === 0) |
|
|
|
|