Browse Source

修复查看详情bug

dev-xx
qb 5 months ago
parent
commit
78b6ab0aac
  1. 14
      src/views/distribution/inventory/BookingNote.vue

14
src/views/distribution/inventory/BookingNote.vue

@ -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) {

Loading…
Cancel
Save