💄 修改样式.

This commit is contained in:
lijiahang
2024-06-19 10:48:00 +08:00
parent 2919950c5b
commit 830622aafb
8 changed files with 8 additions and 5 deletions

View File

@@ -109,6 +109,7 @@ public class CommandSnippetGroupServiceImpl implements CommandSnippetGroupServic
.createWrapper() .createWrapper()
.select(CommandSnippetDO::getUserId, CommandSnippetDO::getGroupId) .select(CommandSnippetDO::getUserId, CommandSnippetDO::getGroupId)
.isNotNull(CommandSnippetDO::getGroupId) .isNotNull(CommandSnippetDO::getGroupId)
.groupBy(CommandSnippetDO::getUserId)
.groupBy(CommandSnippetDO::getGroupId) .groupBy(CommandSnippetDO::getGroupId)
.then() .then()
.stream() .stream()

View File

@@ -110,6 +110,7 @@ public class PathBookmarkGroupServiceImpl implements PathBookmarkGroupService {
.select(PathBookmarkDO::getUserId, PathBookmarkDO::getGroupId) .select(PathBookmarkDO::getUserId, PathBookmarkDO::getGroupId)
.isNotNull(PathBookmarkDO::getGroupId) .isNotNull(PathBookmarkDO::getGroupId)
.groupBy(PathBookmarkDO::getGroupId) .groupBy(PathBookmarkDO::getGroupId)
.groupBy(PathBookmarkDO::getUserId)
.then() .then()
.stream() .stream()
.collect(Collectors.groupingBy(PathBookmarkDO::getUserId, .collect(Collectors.groupingBy(PathBookmarkDO::getUserId,

View File

@@ -1,5 +1,6 @@
package com.orion.visor.module.infra.controller; package com.orion.visor.module.infra.controller;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.web.core.annotation.RestWrapper; import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdatePartialRequest; import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdatePartialRequest;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdateRequest; import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdateRequest;
@@ -56,6 +57,7 @@ public class PreferenceController {
return preferenceService.getPreferenceByType(type, items); return preferenceService.getPreferenceByType(type, items);
} }
@IgnoreLog
@GetMapping("/get-default") @GetMapping("/get-default")
@Operation(summary = "查询默认偏好") @Operation(summary = "查询默认偏好")
@Parameter(name = "type", description = "type", required = true) @Parameter(name = "type", description = "type", required = true)

View File

@@ -28,7 +28,7 @@ public class TerminalPreferenceStrategy extends AbstractGenericsDataStrategy<Ter
String defaultDisplaySetting = TerminalPreferenceModel.DisplaySettingModel String defaultDisplaySetting = TerminalPreferenceModel.DisplaySettingModel
.builder() .builder()
.fontFamily("_") .fontFamily("_")
.fontSize(13) .fontSize(14)
.lineHeight(1.12) .lineHeight(1.12)
.letterSpacing(0) .letterSpacing(0)
.fontWeight("normal") .fontWeight("normal")

View File

@@ -33,7 +33,7 @@ public class TagAutoClearTask {
@Scheduled(cron = "0 0 2 * * ?") @Scheduled(cron = "0 0 2 * * ?")
public void clear() { public void clear() {
log.info("TagAutoClearTask.clear start"); log.info("TagAutoClearTask.clear start");
// 获取锁并清理 // 获取锁并执行
LockerUtils.tryLock(LOCK_KEY, tagService::clearUnusedTag); LockerUtils.tryLock(LOCK_KEY, tagService::clearUnusedTag);
log.info("TagAutoClearTask.clear finish"); log.info("TagAutoClearTask.clear finish");
} }

View File

@@ -548,7 +548,7 @@ body[terminal-theme='dark'] .arco-modal-container {
.terminal-setting-block { .terminal-setting-block {
color: var(--color-content-text-2); color: var(--color-content-text-2);
margin-bottom: 24px; margin-bottom: 32px;
} }
.terminal-setting-subtitle-wrapper { .terminal-setting-subtitle-wrapper {

View File

@@ -63,6 +63,7 @@ export const LogAppenderOptions: ITerminalOptions & ITerminalInitOnlyOptions = {
lineHeight: 1.12, lineHeight: 1.12,
convertEol: true, convertEol: true,
allowProposedApi: true, allowProposedApi: true,
fontFamily: 'Courier New, Monaco, courier, monospace',
}; };
// dom 引用 // dom 引用

View File

@@ -52,8 +52,6 @@
// 确定 // 确定
const handlerOk = () => { const handlerOk = () => {
setVisible(false); setVisible(false);
console.log(cronExpression.value);
console.log('ok', cronExpression.value);
emits('ok', cronExpression.value); emits('ok', cronExpression.value);
}; };