12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <view class="wrapper">
- <video
- src="{{videoConfig.video_url}}"
- object-fit="cover"
- poster="{{videoConfig.video_cover_url}}"
- show-mute-btn="{{true}}"
- play-btn-position="center"></video>
- <view class="main">
- <view class="title name-list-title">
- <text>出境人员</text>
- </view>
- <view class="name-list">{{videoConfig.video_auther}}</view>
- <view class="title video-title">
- <text>影片内容</text>
- </view>
- <view class="subtitle">{{videoConfig.video_name}}:</view>
- <view class="describe">{{videoConfig.video_introduce}}</view>
- </view>
- <view class="comment-list">
- <view class="title">
- <text>评论</text>
- </view>
- <view
- class="list"
- wx:for="{{listData}}"
- wx:key="id">
- <view class="portrait">
- <image src="{{item.user_head_img_url}}"></image>
- </view>
- <view class="box">
- <view class="name">{{item.user_nickname}}</view>
- <view class="create-at">{{item.created_at}}</view>
- <view class="content">{{item.video_comment}}</view>
- </view>
- </view>
- <!-- 无数据 -->
- <view class="list-bitmap" wx:if="{{finished && listData.length < 1}}">
- <image src="../../image/common/bitmap.png"></image>
- <text>暂无数据</text>
- </view>
- <view class="pullup-wrapper" wx:if="{{!isRefresh}}">
- <van-loading
- wx:if="{{!finished}}"
- size="24px"
- type="spinner">加载中...
- </van-loading>
- </view>
- </view>
- </view>
- <view
- class="footer-fixed-bottom"
- style="box-shadow: none;{{inputBoxStyle}}">
- <view>
- <view class="form-item">
- <image
- class="smile"
- src="../../image/common/smile.png"></image>
- <input
- placeholder-class="placeholder"
- value="{{form.comment}}"
- placeholder="说点什么吧..."
- adjust-position="{{false}}"
- bind:focus="handleFocus"
- bind:blur="handleBlur"
- bind:input="setComment"></input>
- <button
- class="btn-send"
- disabled="{{booLock}}"
- bind:tap="addVideoComment">发送
- </button>
- </view>
- <button
- class="btn-like"
- disabled="{{booLock}}"
- bind:tap="addvideoGood">
- <image src="../../image/common/like_1.png"></image>
- </button>
- <button
- class="btn-share"
- open-type="share">
- <image src="../../image/common/share_1.png"></image>
- </button>
- </view>
- </view>
|