From 47446b2ac0d4dca226a4826285dbf57102c3b2d7 Mon Sep 17 00:00:00 2001 From: lijingjia Date: Thu, 15 Aug 2024 09:17:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B5=B7=E8=BF=90=E5=87=BA=E5=8F=A3?= =?UTF-8?q?=E8=AF=A6=E6=83=85bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/operation/seaexport/detail/index.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/views/operation/seaexport/detail/index.vue b/src/views/operation/seaexport/detail/index.vue index de1b4e1d..86636ec9 100644 --- a/src/views/operation/seaexport/detail/index.vue +++ b/src/views/operation/seaexport/detail/index.vue @@ -240,7 +240,6 @@ const RefediMore = ref(null) const RefNoteInfo = ref(null) const mainOrderActiveKey = ref('1-1') - const inPageLoading = ref(false) const detailsLoadOver = ref(false) // const cargoRules = ref(rules.cargoRules) const isLockBooking = ref(false) @@ -308,10 +307,6 @@ } // 获取详情 function getDetail() { - if (inPageLoading.value) { - return false - } - inPageLoading.value = true inChildLoading.value = true detailsLoadOver.value = false loading.value = true @@ -331,7 +326,6 @@ loading.value = false setDeatilsFun(res, false) appStore.settopDown(false) - inPageLoading.value = false // 解决 业务来源 联动问题 // if (res.data.sourceId) { // let sourceDetailIdArr: any = [] @@ -891,6 +885,7 @@ } function setDeatilsFun(res, overSet = false) { let newData = res.data + if (newData.ctnPriceInfo == []) newData.ctnPriceInfo = [{}] bookingDetails.value = { ...bookingDetails.value, ...newData, From 0e7ebee9519292e39a73a85035c6faf70664bd95 Mon Sep 17 00:00:00 2001 From: lijingjia Date: Thu, 15 Aug 2024 10:09:39 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B5=B7=E8=BF=90=E5=87=BA=E5=8F=A3?= =?UTF-8?q?=E8=AF=A6=E6=83=85bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../operation/seaexport/api/BookingLedger.js | 9 +++++++ .../operation/seaexport/detail/index.vue | 25 ++++--------------- .../seaexport/detail/modules/cargoInfo.vue | 19 +++++++++++--- .../detail/modules/operationArea.vue | 4 --- 4 files changed, 29 insertions(+), 28 deletions(-) diff --git a/src/views/operation/seaexport/api/BookingLedger.js b/src/views/operation/seaexport/api/BookingLedger.js index c492e05b..90e4c52b 100644 --- a/src/views/operation/seaexport/api/BookingLedger.js +++ b/src/views/operation/seaexport/api/BookingLedger.js @@ -2118,3 +2118,12 @@ export function GetBookingContractNoList(params) { params }) } + +// 集装箱报价删除 +export function BatchDelBusinessCtnPrice(data) { + return request({ + url: '/opApi/BusinessCtnPrice/BatchDelBusinessCtnPrice', + method: 'post', + data + }) +} diff --git a/src/views/operation/seaexport/detail/index.vue b/src/views/operation/seaexport/detail/index.vue index 86636ec9..150eaaf1 100644 --- a/src/views/operation/seaexport/detail/index.vue +++ b/src/views/operation/seaexport/detail/index.vue @@ -30,7 +30,6 @@