123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view>
- 用户作品
- <video class="videoSection" src="http://efunvideo.ai160.com/vs2m/001/00103075/00103075012/00103075012.m3u8" controls show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video>
- <view class="readAuthorSection">
- <image class="avatar" src="../../../static/image/timg.jpg" />
- <text class="nickName">萝莉小猫咪</text>
- <view class="like">
- <image src="../../../static/image/liked.png" />
- <text class="likeBtn">点赞</text>
- </view>
- <view class="follow">
- <text class="followBtn">关注</text>
- </view>
- </view>
- <view class="userSection">
- <view class="title">共有12345人完成了录音</view>
- <view class="avatarRow">
- <view class="userItem" wx:for="{{user}}" wx:key="{{index}}">
- <image src="{{item.image}}" />
- <text class="nickName">{{item.nickName}}</text>
- </view>
- </view>
- </view>
- <view class="commentSection">
- <view class="title">
- 评论(38)
- </view>
- <input class="commentInput" placeholder="听了这么多,说点什么吧"/>
- <view class="commentArea">
- <view class="commentItem">
- <iamge class="avatar" />
- <text class="nickName"></text>
- <text class="time"></text>
- <text class="gut"></text>
- <view class="commentBtn">
- <image class="" />
- <text >评论</text>
- </view>
- <view class="likes">
- <image class="" />
- <text >165</text>
- </view>
- <view class="commentAll">
- 共有123条评论
- </view>
- </view>
- </view>
- </view>
- <view class="footSection">
- <view class="collectBtn footerBtn">
- <image src="../../../static/image/hot_recommand.png" />
- <text>收藏</text>
- </view>
- <view class="readingBtn footerBtn" bindtap="goToReading">
- <image src="../../../static/image/hot_recommand.png" />
- <text>我要朗读</text>
- </view>
- <view class="shareBtn footerBtn">
- <image src="../../../static/image/hot_recommand.png" />
- <text>分享</text>
- </view>
- </view>
- </view>
|