feat: batch update - gift card breakdown spec, backend APIs, miniprogram pages, ETL finance recharge, docs & migrations

This commit is contained in:
Neo
2026-03-20 01:43:48 +08:00
parent 075caf067f
commit 79f9a0e1da
437 changed files with 118603 additions and 976 deletions

View File

@@ -0,0 +1,49 @@
Component({
options: {
styleIsolation: 'shared',
},
/**
* ai-title-badge — 标题行 AI 徽章组件
*
* ## 用法
* 1. 在页面/组件的 .json 中注册:
* "ai-title-badge": "/components/ai-title-badge/ai-title-badge"
*
* 2. 在 WXML 中使用:
* <!-- 固定配色,默认文字 -->
* <ai-title-badge color="indigo" />
*
* <!-- 自定义文字 -->
* <ai-title-badge color="blue" label="AI 建议" />
*
* <!-- 页面随机配色(推荐) -->
* <ai-title-badge color="{{aiColor}}" />
*
* ## color 可选值
* red | orange | yellow | blue | indigo默认| purple
*
* ## label 默认值
* "AI智能洞察"
*
* ## 样式来源
* 全局 app.wxss.ai-title-badge + .ai-color-*
*
* ## 页面随机配色初始化(复制到 Page.onLoad
* const AI_COLORS = ['red','orange','yellow','blue','indigo','purple']
* const aiColor = AI_COLORS[Math.floor(Math.random() * AI_COLORS.length)]
* this.setData({ aiColor })
*/
properties: {
/** 颜色系列red | orange | yellow | blue | indigo | purple */
color: {
type: String,
value: 'indigo',
},
/** 徽章文字默认「AI智能洞察」 */
label: {
type: String,
value: 'AI智能洞察',
},
},
})