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

19 lines
905 B
Plaintext

<!-- 认真读检测需要压过横屏直播预约内容,避免倒计时/预约条遮住检测提示。 -->
<mp-dialog
visible="{{dialogVisible}}"
maskClosable="{{false}}"
zIndex="{{12001}}"
containerStyle="background: {{useDarkTheme ? '#26262a' : '#ffffff'}}; overflow: hidden;"
>
<view slot="header" class="attention-dialog-header {{useDarkTheme ? 'attention-dialog-header-dark' : ''}}">
<view class="attention-dialog-title {{useDarkTheme ? 'attention-dialog-title-dark' : ''}}">
<view class="attention-dialog-tips-icon">i</view>
<text>{{dialogTitle}}</text>
</view>
</view>
<view class="attention-dialog-content {{useDarkTheme ? 'attention-dialog-content-dark' : ''}}">{{dialogContent}}</view>
<view slot="footer" class="attention-dialog-footer">
<button class="attention-dialog-button" bindtap="onDialogButtonTap">我知道了</button>
</view>
</mp-dialog>