|
|
|
@ -1013,9 +1013,6 @@
|
|
|
|
|
:columnList="details.WaybillTrackingColumnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -1027,8 +1024,6 @@
|
|
|
|
|
:columnList="details.FinancialRecordColumnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -1040,8 +1035,6 @@
|
|
|
|
|
:columnList="details.ChangeOrderColumnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -1070,8 +1063,6 @@
|
|
|
|
|
:columnList="details.TransactionColumnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -1083,8 +1074,6 @@
|
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.stowageLoading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -1301,6 +1290,7 @@ const details = reactive<any>({
|
|
|
|
|
receiptImgList: [], |
|
|
|
|
/** 打印html */ |
|
|
|
|
html: '', |
|
|
|
|
regionOptione: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const info = ref<any>({}); |
|
|
|
@ -1363,7 +1353,7 @@ const handleComputed = (row: any) => {
|
|
|
|
|
// 获取省市区信息 |
|
|
|
|
getLazyTreeAll().then(res => { |
|
|
|
|
if (res.data.success) { |
|
|
|
|
details.regionOptione = res.data.data; |
|
|
|
|
details.regionOptione = getObjType(res.data.data) === 'array' ? res.data.data : []; |
|
|
|
|
|
|
|
|
|
// 转译到站 |
|
|
|
|
if (details.regionOptione.length !== 0) { |
|
|
|
|