- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
22 lines
821 B
Plaintext
22 lines
821 B
Plaintext
<view
|
|
class="{{isLandScape ? 'volc-live-landscape-image-float' : 'volc-live-portrait-image-float volc-live-portrait-image-float-icon-row'}}"
|
|
>
|
|
<view
|
|
wx:for="{{visibleIconList}}"
|
|
wx:for-item="item"
|
|
wx:key="stableKey"
|
|
class="{{!isLandScape ? 'portrait-interactive-icon-item' : ''}}"
|
|
>
|
|
<float-icon data-item="{{item}}" bind:onClick="onClick" bind:onClose="onClose"
|
|
img="{{item.img}}" isPopup="{{false}}" text="{{item.text}}" timeOverText="{{item.timeOverText}}"
|
|
current="{{item.current}}" useLightTheme="{{isLandScape && !useDarkTheme}}" />
|
|
</view>
|
|
<view
|
|
wx:if="{{hasMoreVisibleIcon}}"
|
|
class="more {{isLandScape ? 'more-landscape' : 'more-portrait'}} {{isLandScape && !useDarkTheme ? 'more-light' : ''}}"
|
|
bindtap="openMore"
|
|
>
|
|
<view>更多</view>
|
|
</view>
|
|
</view>
|