- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
<!--components/liveroom/liveroom.wxml-->
|
|
<view class="liveroom-wrap">
|
|
|
|
<banner room-info="{{roomInfo}}" watchNum="{{watchNum}}"/>
|
|
|
|
<!-- 直播未开始提示
|
|
<view class="live-ended" wx:if="{{bool}}" >
|
|
<view class="ended-content">
|
|
<text class="ended-text">直播未开始</text>
|
|
<view class="countdown">
|
|
<text class="countdown-text">距离开始还有:</text>
|
|
<text class="countdown-time">{{roomInfo.onlineDatetime}}</text>
|
|
</view>
|
|
<button class="enter-room-btn" bind:tap="enterRoom">进入房间</button>
|
|
</view>
|
|
</view> -->
|
|
|
|
<!-- 直播结束提示 -->
|
|
<view class="live-ended" wx:if="{{roomInfo.state == 2}}">
|
|
<view class="ended-content">
|
|
<text class="ended-text">直播已结束</text>
|
|
<text class="ended-time">结束时间:{{roomInfo.offlineDatetime}}</text>
|
|
<button class="replay-btn">观看回放</button>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<banner room-info="{{roomInfo}}"/>
|
|
|
|
<player
|
|
is-playback="{{isPlayback}}"
|
|
is-living="{{isLiving}}"
|
|
pull-url-info="{{pullUrlInfo}}"
|
|
vod-info="{{vodInfo}}"
|
|
bind:controlstoggle="controlstoggle"
|
|
/>
|
|
<comment wx:if="{{roomInfo.chat}}"/>
|
|
<product-popup joinedGroupId="{{joinedGroupId}}" productNum="{{productNum}}"/>
|
|
</view>
|