feat(data): 调整默认图案列表顺序

2025改为2026

feat(ui): 添加配置项注释说明

为 FaceConfig.vue 中的各个设置字段添加了 HTML 注释,便于识别和维护不同功能区域。包括:
- 文本设置(主标题、语言、文字大小)
- 布局设置(列数、卡片宽度、卡片高度)
- 主题设置(主题、背景图片)
- 图案设置
- 其他设置(是否常显奖项列表、是否显示头像)
This commit is contained in:
log1997
2025-12-02 14:37:20 +08:00
parent 005b93266e
commit 5c8347ff62
2 changed files with 6 additions and 2 deletions

View File

@@ -278,4 +278,4 @@ export const defaultImageList = [
url: `${originUrl}/resource/image/image5.png`, url: `${originUrl}/resource/image/image5.png`,
}, },
] ]
export const defaultPatternList = [21, 38, 55, 54, 53, 70, 87, 88, 89, 23, 40, 57, 74, 91, 92, 93, 76, 59, 42, 25, 24, 27, 28, 29, 46, 63, 62, 61, 78, 95, 96, 97, 20, 19, 31, 48, 65, 66, 67, 84, 101, 100, 99, 32, 33] export const defaultPatternList = [21, 38, 55, 54, 53, 70, 87, 88, 89, 23, 40, 57, 74, 91, 92, 76, 59, 42, 25, 24, 27, 28, 29, 46, 63, 62, 61, 78, 95, 96, 97, 20, 19, 31, 48, 66, 67, 84, 101, 100, 32, 33, 93, 65, 82, 99]

View File

@@ -195,6 +195,7 @@ onMounted(() => {
</button> </button>
</div> </div>
<div class="flex flex-wrap w-full gap-6"> <div class="flex flex-wrap w-full gap-6">
<!-- 文本设置主标题语言文字大小 -->
<fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs"> <fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs">
<legend class="fieldset-legend"> <legend class="fieldset-legend">
文本设置 文本设置
@@ -230,6 +231,7 @@ onMounted(() => {
> >
</label> </label>
</fieldset> </fieldset>
<!-- 布局设置列数卡片宽度卡片高度 -->
<fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs"> <fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs">
<legend class="fieldset-legend"> <legend class="fieldset-legend">
布局设置 布局设置
@@ -280,6 +282,7 @@ onMounted(() => {
</div> </div>
</label> </label>
</fieldset> </fieldset>
<!-- 主题设置主题背景图片 -->
<fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs"> <fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs">
<legend class="fieldset-legend"> <legend class="fieldset-legend">
主题设置 主题设置
@@ -344,6 +347,7 @@ onMounted(() => {
</div> </div>
</div> </div>
</fieldset> </fieldset>
<!-- 图案设置 -->
<fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs"> <fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs">
<legend class="fieldset-legend"> <legend class="fieldset-legend">
图案设置 图案设置
@@ -372,7 +376,7 @@ onMounted(() => {
</div> </div>
</div> </div>
</fieldset> </fieldset>
<!-- 其他设置是否常显奖项列表是否显示头像 -->
<fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs"> <fieldset class="p-4 border text-setting fieldset bg-base-200 border-base-300 rounded-box w-xs">
<legend class="fieldset-legend"> <legend class="fieldset-legend">
其他设置 其他设置