接入可配置概览服务并支持自适应缩放
This commit is contained in:
@@ -72,6 +72,18 @@ public class TenantConfigServiceImpl extends ServiceImpl<TenantConfigMapper, Ten
|
||||
.required(true)
|
||||
.sort(1)
|
||||
.build());
|
||||
tenantConfigDefaultList.add(TenantConfig.builder()
|
||||
.name("overviewServiceUrl")
|
||||
.description("客户端概览服务地址")
|
||||
.value("http://127.0.0.1:5173/_app/digital")
|
||||
.notice("客户端点击概览时加载的 HTTP 或 HTTPS 服务地址")
|
||||
.placeholder("请输入客户端概览服务地址")
|
||||
.category(TenantConfig.ConfigCategory.BaseConfig)
|
||||
.inputType(TenantConfig.InputType.Input)
|
||||
.dataType(TenantConfig.DataType.String)
|
||||
.required(true)
|
||||
.sort(2)
|
||||
.build());
|
||||
tenantConfigDefaultList.add(TenantConfig.builder()
|
||||
.name("intelligentDataServiceUrl")
|
||||
.description("智能取数服务地址")
|
||||
@@ -82,7 +94,7 @@ public class TenantConfigServiceImpl extends ServiceImpl<TenantConfigMapper, Ten
|
||||
.inputType(TenantConfig.InputType.Input)
|
||||
.dataType(TenantConfig.DataType.String)
|
||||
.required(true)
|
||||
.sort(2)
|
||||
.sort(3)
|
||||
.build());
|
||||
tenantConfigDefaultList.add(TenantConfig.builder()
|
||||
.name("documentEditorServiceUrl")
|
||||
@@ -94,7 +106,7 @@ public class TenantConfigServiceImpl extends ServiceImpl<TenantConfigMapper, Ten
|
||||
.inputType(TenantConfig.InputType.Input)
|
||||
.dataType(TenantConfig.DataType.String)
|
||||
.required(false)
|
||||
.sort(3)
|
||||
.sort(4)
|
||||
.build());
|
||||
tenantConfigDefaultList.add(TenantConfig.builder()
|
||||
.name("siteDescription")
|
||||
|
||||
Reference in New Issue
Block a user