From 8e97c3ff597ce38802d2ea8e719603ccc7c1dce1 Mon Sep 17 00:00:00 2001 From: caoqi Date: Thu, 13 Mar 2025 12:18:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E5=9B=BE=E5=B1=82?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E9=9C=80=E8=A6=81=E8=81=9A=E5=90=88=E5=92=8C?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E9=9C=80=E8=A6=81=E4=B8=80=E9=94=AE=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E7=9A=84=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../layerManage/resource/LayerDetails.vue | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/views/aiSupervision/layerManage/resource/LayerDetails.vue b/src/views/aiSupervision/layerManage/resource/LayerDetails.vue index dabcb16..2150a78 100644 --- a/src/views/aiSupervision/layerManage/resource/LayerDetails.vue +++ b/src/views/aiSupervision/layerManage/resource/LayerDetails.vue @@ -46,6 +46,22 @@ + + + + + + + + + + + + @@ -195,6 +211,8 @@ export default { serviceType: "", //服务类型,wms/wmts/wfs/3d tiles/terrain serviceUrl: "", //服务地址 serviceToken: "", //服务token + isNeedCluster: "0", + isSupportFastQuery: "0", serviceName: "", //服务名称 serviceNameAlias: "", //服务别名 serviceIndex: "", //服务索引 @@ -206,6 +224,26 @@ export default { }, directoryInfo: null, // 目录信息 dialogTitle: "添加图层", + isNeedClusterOptions: [ + { + value: "0", + label: "否", + }, + { + value: "1", + label: "是", + }, + ], + isSupportFastQueryOptions: [ + { + value: "0", + label: "否", + }, + { + value: "1", + label: "是", + }, + ], serviceTypeOptions: [ { value: "021102", @@ -301,6 +339,8 @@ export default { this.editDataInfoForm.serviceNameAlias = row.serviceNameAlias; this.editDataInfoForm.serviceUrl = row.serviceUrl; this.editDataInfoForm.serviceToken = row.serviceToken; + this.editDataInfoForm.isNeedCluster = row.isNeedCluster; + this.editDataInfoForm.isSupportFastQuery = row.isSupportFastQuery; this.editDataInfoForm.serviceIndex = row.serviceIndex; this.editDataInfoForm.relationStyleId = row.relationStyleId; this.editDataInfoForm.relationStyleName = row.relationStyleName; @@ -392,6 +432,8 @@ export default { this.editDataInfoForm.id = ""; this.editDataInfoForm.serviceUrl = ""; this.editDataInfoForm.serviceToken = ""; + this.editDataInfoForm.isNeedCluster = "0"; + this.editDataInfoForm.isSupportFastQuery = "0"; this.editDataInfoForm.serviceName = ""; this.editDataInfoForm.serviceNameAlias = ""; this.editDataInfoForm.serviceIndex = "";