- 建立 Lucide 子集 iconfont(49 字形),全站 emoji 替换为 fc-icon 组件 - 重塑 Design Token(冷中性近黑底 + Volt 荧光绿 #B6F24E),消除硬编码颜色 - 首页登录后个性化:我的计划 / 我的收藏 / 今日推荐(纯前端复用现有 API) - 后端 DEFAULT_EMOJI→Lucide 名,PALETTE 对齐 Kinetic Dark 语义色板 - 修复 person-standing 缺失字形;14 个官方组合 seed emoji 全部映射到现有字形
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
<view class="page">
|
|
<navbar title="{{navTitle}}" show-back="{{selectMode}}" />
|
|
<view class="searchbar">
|
|
<view class="searchbar__box">
|
|
<fc-icon class="searchbar__icon" name="search" size="28" color="var(--text-2)" />
|
|
<input
|
|
class="searchbar__input"
|
|
placeholder="{{selectMode ? '选择动作加入计划' : '搜索动作 / 器械 / 部位'}}"
|
|
placeholder-class="ph"
|
|
value="{{q}}"
|
|
confirm-type="search"
|
|
bindinput="onInput" />
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{selectMode}}" class="hint">从下方结果中选择动作,加入当前计划</view>
|
|
|
|
<view class="section" style="padding-top: 8rpx;">
|
|
<view class="grid" wx:if="{{results.length}}">
|
|
<view class="grid__item" wx:for="{{results}}" wx:key="id">
|
|
<exercise-card exercise="{{item}}" catch:tap="onExercise" />
|
|
</view>
|
|
</view>
|
|
<view wx:elif="{{loading}}" class="empty">搜索中…</view>
|
|
<view wx:elif="{{searched}}" class="empty">未找到相关动作</view>
|
|
<view wx:else class="empty">输入关键词开始搜索</view>
|
|
</view>
|
|
</view>
|