From f78c2388703490680d3abd58e9eb0e59a69f534a Mon Sep 17 00:00:00 2001 From: supermap123 Date: Fri, 24 May 2024 17:20:56 +0800 Subject: [PATCH] =?UTF-8?q?=E2=80=99=E7=BC=BA=E9=99=B7=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=EF=BC=9Aiportal=E6=88=91=E7=9A=84=E6=9C=8D=E5=8A=A1=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E4=B8=8D=E5=85=A8=E2=80=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SuperMap iEarth/public/locale/en.js | 3 +- SuperMap iEarth/public/locale/ja.js | 3 +- SuperMap iEarth/public/locale/ru.js | 3 +- SuperMap iEarth/public/locale/zh.js | 1 + SuperMap iEarth/src/App.vue | 8 + .../package/addData/layer-mine/layerMine.vue | 311 ++++++++---------- 6 files changed, 161 insertions(+), 168 deletions(-) diff --git a/SuperMap iEarth/public/locale/en.js b/SuperMap iEarth/public/locale/en.js index d6693358..9b365066 100644 --- a/SuperMap iEarth/public/locale/en.js +++ b/SuperMap iEarth/public/locale/en.js @@ -692,7 +692,8 @@ const local_en = { customImgSupport:"Custom addition of images currently only supports SuperMapImageryProvider type services", customTinSupport:"Custom terrain addition currently only supports SuperMapTerrainProvider type services", s3mNameRepeatTip:'The layer name is duplicated, please modify the current layer name', - sceneNameRepeatTip:'This scene already exists, please do not add it again' + sceneNameRepeatTip:'This scene already exists, please do not add it again', + refresh:"refresh", } window.local_en = local_en; \ No newline at end of file diff --git a/SuperMap iEarth/public/locale/ja.js b/SuperMap iEarth/public/locale/ja.js index 1c7ae28c..2dd56309 100644 --- a/SuperMap iEarth/public/locale/ja.js +++ b/SuperMap iEarth/public/locale/ja.js @@ -692,7 +692,8 @@ const local_ja = { customImgSupport:"カスタム追加イメージは現在、SuperMapImageryProviderタイプサービスのみをサポートしています", customTinSupport:"カスタム地形追加現在SuperMapTerrainProviderタイプサービスのみサポート", s3mNameRepeatTip:'レイヤー名が重複しています。現在のレイヤー名を変更してください', - sceneNameRepeatTip:'このシーンはすでに存在します。再度追加しないでください' + sceneNameRepeatTip:'このシーンはすでに存在します。再度追加しないでください', + refresh:'リフレッシュ', } window.local_ja = local_ja; \ No newline at end of file diff --git a/SuperMap iEarth/public/locale/ru.js b/SuperMap iEarth/public/locale/ru.js index 4c133a77..86c29f86 100644 --- a/SuperMap iEarth/public/locale/ru.js +++ b/SuperMap iEarth/public/locale/ru.js @@ -692,7 +692,8 @@ const local_ru = { customImgSupport:"В настоящее время поддерживаются только службы типов SuperMapImageryProvider", customTinSupport:"В настоящее время поддерживаются только сервисы типа SuperMapTerrainProvider", s3mNameRepeatTip:'Имя слоя дублируется, измените имя текущего слоя.', - sceneNameRepeatTip:'Эта сцена уже существует, пожалуйста, не добавляйте ее снова' + sceneNameRepeatTip:'Эта сцена уже существует, пожалуйста, не добавляйте ее снова', + refresh:'Обновить', } window.local_ru = local_ru; \ No newline at end of file diff --git a/SuperMap iEarth/public/locale/zh.js b/SuperMap iEarth/public/locale/zh.js index e1018043..a918842f 100644 --- a/SuperMap iEarth/public/locale/zh.js +++ b/SuperMap iEarth/public/locale/zh.js @@ -693,6 +693,7 @@ const local_zh = { customTinSupport:"自定义添加地形当前仅支持 SuperMapTerrainProvider 类型服务", s3mNameRepeatTip:'图层名重复,请修改当前图层名称', sceneNameRepeatTip:'该场景已存在,请勿重复添加', + refresh:"刷新", } window.local_zh = local_zh; \ No newline at end of file diff --git a/SuperMap iEarth/src/App.vue b/SuperMap iEarth/src/App.vue index b083632b..55c30aa3 100644 --- a/SuperMap iEarth/src/App.vue +++ b/SuperMap iEarth/src/App.vue @@ -378,6 +378,14 @@ const overridesTheme = { text-overflow: ellipsis; // 文字过长后使用省略号 } +// 我的服务里面的表格内容文字大小 +.n-data-table .n-data-table-th { + font-size: 0.14rem; +} +.n-data-table .n-data-table-td { + font-size: 0.12rem; +} + // echarts图表样式 #echartsProfile > div { left: 0.1rem; diff --git a/SuperMap iEarth/src/package/addData/layer-mine/layerMine.vue b/SuperMap iEarth/src/package/addData/layer-mine/layerMine.vue index d0dfdc73..fbd72baa 100644 --- a/SuperMap iEarth/src/package/addData/layer-mine/layerMine.vue +++ b/SuperMap iEarth/src/package/addData/layer-mine/layerMine.vue @@ -1,48 +1,41 @@