uploadVideos.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <view class="bory gapleft inleft row crosscenter">
  2. <text>标题   </text>
  3. <input placeholder="请添加一个标题" bindinput="inputTitle" class="flexible"></input>
  4. </view>
  5. <view class="borbot gapleft inleft row">
  6. <view>
  7. <text>视频   </text>
  8. </view>
  9. <view class="row flexible wrap">
  10. <view class="themerad imgbox col center" wx:if="{{article.filePath}}" bindtap="clickVideo">
  11. <image src="{{imgUrl + article.coverImage}}" mode="aspectFit" class="full"></image>
  12. </view>
  13. <view class="themerad imgbox col center" bindtap="clickAddvideo" wx:if="{{!article.filePath}}">
  14. <text>+</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="borbot gapleft inleft row">
  19. <view>
  20. <text>预览图  </text>
  21. </view>
  22. <view class="row flexible wrap">
  23. <view class="themerad imgbox col center" wx:if="{{article.coverImage}}" bindtap="clickVideo" data-t="poster">
  24. <image src="{{imgUrl + article.coverImage}}" mode="aspectFit" class="full"></image>
  25. </view>
  26. <view class="themerad imgbox col center" bindtap="clickAddimg" wx:if="{{!article.coverImage}}">
  27. <text>+</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="borbot wrp row">
  32. <view>
  33. <text>正文   </text>
  34. </view>
  35. <view class="flexible">
  36. <textarea class="fullx" placeholder="文字符号限制100字之内" maxlength="100" bindinput="inputContent"></textarea>
  37. </view>
  38. </view>
  39. <view class="row bot maincenter flexible" style="padding-bottom: 2.4rem">
  40. <view class="btn danger" bindtap="clickUpload">提交审核</view>
  41. </view>