From 22a3e031221922eff0dd0a87dbbfd12a4dc0c73d Mon Sep 17 00:00:00 2001 From: yyhouc <792163605@qq.com> Date: Mon, 12 Jun 2023 15:04:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/retrievalCondition.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/dataService/remoteSensingData/components/retrievalCondition.vue b/src/views/dataService/remoteSensingData/components/retrievalCondition.vue index e88f27e..ab975e5 100644 --- a/src/views/dataService/remoteSensingData/components/retrievalCondition.vue +++ b/src/views/dataService/remoteSensingData/components/retrievalCondition.vue @@ -503,12 +503,14 @@ const onHandleSizeChange = (val) => { dataNew = { disasterId: state.disasterId, satelliteCodeList: state.satelliteCodeList.join(","), - productResolutionVos: state.listData + productResolutionVos: state.listData, + status: state.status } } else { dataNew = { disasterId: state.disasterId, - productResolutionVos: state.listData + productResolutionVos: state.listData, + status: state.status } } @@ -534,12 +536,14 @@ const onHandleCurrentChange = (val) => { dataNew = { disasterId: state.disasterId, satelliteCodeList: state.satelliteCodeList.join(","), - productResolutionVos: state.listData + productResolutionVos: state.listData, + status: state.status } } else { dataNew = { disasterId: state.disasterId, - productResolutionVos: state.listData + productResolutionVos: state.listData, + status: state.status } } From 4c0daee6c629fee5b098ec567d343d4096dc9fcc Mon Sep 17 00:00:00 2001 From: yyhouc <792163605@qq.com> Date: Mon, 12 Jun 2023 18:02:42 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=8F=90=E4=BA=A4vordm=E6=9A=82=E6=97=B6?= =?UTF-8?q?=E5=B1=8F=E8=94=BD=E6=AC=A7=E6=AF=94=E7=89=B9=E7=AD=891?= =?UTF-8?q?=E4=B8=AA=E5=8D=AB=E6=98=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../remoteSensingData/components/searchCondition.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dataService/remoteSensingData/components/searchCondition.vue b/src/views/dataService/remoteSensingData/components/searchCondition.vue index b78ddf6..3571a62 100644 --- a/src/views/dataService/remoteSensingData/components/searchCondition.vue +++ b/src/views/dataService/remoteSensingData/components/searchCondition.vue @@ -430,7 +430,7 @@ watch( }) }else{ state.sensor=state.data2.filter(item=>{ - return item.value!='landsat'&&item.value!='sentinel' + return item.value!='landsat'&&item.value!='sentinel'&&item.value!='obiter'&&item.value!='domestic' }) } },