- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
23 lines
743 B
Plaintext
23 lines
743 B
Plaintext
<!--volc-mini-sdk/components/connect/v-player/v-player.wxml-->
|
|
<view class="player-view">
|
|
<!--
|
|
mode: RTC 实时通话
|
|
其他配置请参考小程序文档: https://developers.weixin.qq.com/miniprogram/dev/component/live-player.html
|
|
-->
|
|
<!-- @build:exclude-in-video-only -->
|
|
<live-player
|
|
src="{{url}}"
|
|
id="v-player-{{uid}}-{{screen}}"
|
|
data-uid="{{uid}}"
|
|
class="player"
|
|
mode="RTC"
|
|
autoplay="true"
|
|
object-fit="{{connectLivePlayerAttrs['object-fit']}}"
|
|
picture-in-picture-mode="{{connectLivePlayerAttrs['picture-in-picture-mode']}}"
|
|
background-mute="true"
|
|
bindstatechange="bindstatechange"
|
|
bindnetstatus="bindnetstatuschange"
|
|
/>
|
|
<!-- @build:end-exclude-in-video-only -->
|
|
</view>
|