Files
ruo-shan-cloud-pharmacy/miniprogram/package-live/volc-mini-sdk/components/image-text-float/floating-icon/floating-icon.wxml
T
陈誉午 994b267f5c feat: 电子药箱小程序 - 4Tab药品管理
- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡
- 药品百科: 搜索 + 分类筛选 + 20种药品静态数据
- 惠教中心: 4条药品使用指南课程
- 我的: 家庭成员信息管理
- 自定义TabBar + navigation-bar组件
- SVG药品分类插图
2026-07-29 11:20:52 +08:00

15 lines
849 B
Plaintext

<view class="floating-icon {{isPopup ? 'floating-icon-popup' : ''}} {{useLightTheme ? 'floating-icon-light' : ''}}" style="{{style}}">
<view class="top-wrap">
<view class="ad-content" bindtap="onClick">
<image mode="aspectFit" src="{{img}}" />
</view>
<view wx:if="{{!isPopup && current.AllowCloseIcon !== false}}" class="close-icon" bindtap="onClose">
<mp-icon icon="close" color="white" size="{{12}}" class="close" type="field"></mp-icon>
</view>
</view>
<view class="icon-text" bindtap="onClick">
<count-down wx:if="{{ text === 'showCountDown' }}" sendTime="{{current.SendTime}}" deadLine="{{current.Deadline || current.DeadLine}}" deadLineSecond="{{current.DeadlineSecond || current.DeadLineSecond}}" timeOverText="{{timeOverText}}" />
<view wx:else class="status-tip">{{text}}</view>
</view>
</view>