- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
12 lines
672 B
Plaintext
12 lines
672 B
Plaintext
<view class="thumb-container {{mode}}" bindtap="handleTap" style="display: {{visible && bottomIcon.visible !== false ? 'flex' : 'none'}};">
|
|
<view class="thumb-icon-wrapper" style="{{bottomIcon.containerStyle}}">
|
|
<image class="thumb-icon" src="{{bottomIcon.iconUrl || iconSrc}}" style="{{bottomIcon.style}}" />
|
|
</view>
|
|
<text class="thumb-count" wx:if="{{showNumber && countStr}}">{{countStr}}</text>
|
|
<view class="thumb-combo-number" wx:if="{{comboCount >= 5}}">
|
|
<text class="number-x">X</text>
|
|
<text class="number-val">{{comboCount > 99 ? '99+' : comboCount}}</text>
|
|
</view>
|
|
<canvas type="2d" id="thumbCanvas" class="thumb-canvas"></canvas>
|
|
</view>
|