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

24 lines
670 B
Plaintext

<!--volc-mini-sdk/components/connect/v-pusher/v-pusher.wxml-->
<view class="pusher-view">
<!--
mode: RTC 实时通话
background-mute: true 进入后台静音(兼容旧版本)
其他配置请参考小程序文档: https://developers.weixin.qq.com/miniprogram/dev/component/live-pusher.html
-->
<live-pusher
class="pusher"
url="{{url}}"
mode="RTC"
autopush="true"
max-bitrate="500"
min-bitrate="200"
beauty="{{beauty}}"
background-mute="true"
bindstatechange="bindstatechange"
bindnetstatus="bindnetstatus"
enable-camera="{{enableCamera}}"
enable-mic="{{enableMic}}"
aspect="3:4"
/>
</view>