update at 2026-02-08 12:08:50

This commit is contained in:
douboer
2026-02-08 12:08:50 +08:00
parent 9722953746
commit e2a46e413a
2 changed files with 10 additions and 1 deletions

9
.env.production Normal file
View File

@@ -0,0 +1,9 @@
# 生产环境配置,此文件不会被提交到 Git已在 .gitignore 中)
# Supabase 配置(服务端/脚本使用)
SUPABASE_URL=https://fwwsxicqmsoimyrafyek.supabase.co
SUPABASE_KEY=sb_publishable_FgA0knvKiNMJEv4k-Q1cAA_IqZW0kjn
SUPABASE_SECRET_KEY=sb_secret_8uVHDbhMxE4HOlMBxMWjjw_vsHoZVI8
ALIBABA_CLOUD_ACCESS_KEY_ID=LTAI5tDM8CzT8ABCdYKrfzH8
ALIBABA_CLOUD_ACCESS_KEY_SECRET=hCejmpYoaCGehw2I4jcJo2qd2TwB62

View File

@@ -11,7 +11,7 @@ const fontTree = computed(() => fontStore.fontTree)
const normalizedSearchKeyword = computed(() => searchKeyword.value.trim().toLowerCase()) const normalizedSearchKeyword = computed(() => searchKeyword.value.trim().toLowerCase())
const isSelectedOnlyMode = computed(() => { const isSelectedOnlyMode = computed(() => {
const keyword = normalizedSearchKeyword.value const keyword = normalizedSearchKeyword.value
return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选') return keyword.includes('选中') || keyword.includes('选择') || keyword.includes('已选') || keyword.includes('xuan')
}) })
const normalizedNameSearchKeyword = computed(() => { const normalizedNameSearchKeyword = computed(() => {
return isSelectedOnlyMode.value ? '' : normalizedSearchKeyword.value return isSelectedOnlyMode.value ? '' : normalizedSearchKeyword.value