index.wxml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--pages/channel/index/index.wxml-->
  2. <view class="page">
  3. <view class="page__bd">
  4. <view class="section" style="width:100%;margin:0 auto;text-align:center;margin-top:20px;">
  5. <view style="color:#fff;display:inline-block;width:100%;padding:0px 40px;box-sizing:border-box;">
  6. <view style="float:left;line-height:27px;">我的密友有{{users_count}}人</view>
  7. <form report-submit="{{true}}" bindsubmit="formSubmit">
  8. <button class="button" style="float:right;border-radius:30px;line-height:25px;" formType="submit" >邀请</button>
  9. </form>
  10. <navigator class="button" style="float:right;margin-right:20px;border-radius:30px;line-height:25px;" url="/pages/channel/user/followers/followers">管理</navigator>
  11. </view>
  12. </view>
  13. <view class="section">
  14. <view class="article" style="padding-top:20px;">
  15. <text>密频是你的私有频道,只有你的密友可以看到你的密频内容。凡是看过你的密件的的好友都会成为你的密友,你可以管理你的密友,也可以邀请朋友成为密友。</text>
  16. </view>
  17. </view>
  18. <view class="section" style="display:inline-block;width:100%;">
  19. <view class="button-wrapper" style="margin-left:40px;float:left;width:38%;">
  20. <navigator class="button" url="/pages/channel/image/add/add" >发图片</navigator>
  21. </view>
  22. <view class="button-wrapper" style="margin-right:40px;float:right;width:38%;">
  23. <navigator class="button" url="/pages/channel/video/add/add">发视频</navigator>
  24. </view>
  25. </view>
  26. <view class="section" style="display:inline-block;width:100%;margin-bottom:0;margin-top:20px;">
  27. <view style="width:100%;font-size:14px;color:#fff;text-align:center;">最近密频的更新内容</view>
  28. <view class="weui-loadmore" wx:if="{{loading}}">
  29. <view class="weui-loading"></view>
  30. <text class="weui-loadmore__tips">正在加载</text>
  31. </view>
  32. <view style="width:100%;display:inline-block;padding:50px 40px;box-sizing:border-box;padding-top:10px;padding-bottom:0px;">
  33. <view class="item" wx:for="{{posts}}" wx:key="id">
  34. <navigator url="/pages/channel/view/view?hash_key={{item.hash_key}}" open-type="navigate" >
  35. <image src="{{item.user.headimgurl ? item.user.headimgurl : '/pages/images/default.png'}}" mode="widthFix"></image>
  36. </navigator>
  37. <view class="u_name" style="color:#fff;text-align:center;font-size:12px;margin-top:5px;">{{item.user.nickname}}</view>
  38. <view class="date_time" style="color:#fff;text-align:center;font-size:12px;margin-top:5px;">{{item.created_at}}</view>
  39. </view>
  40. </view>
  41. <view class="weui-loadmore weui-loadmore_line" wx:if="{{!next_data&&!loading&&posts.length!==0}}">
  42. <text class="weui-loadmore__tips">数据已经全部加载完了</text>
  43. </view>
  44. <view class="weui-loadmore weui-loadmore_line" wx:if="{{!next_data&&!loading&&posts.length==0}}">
  45. <text class="weui-loadmore__tips">暂无数据</text>
  46. </view>
  47. </view>
  48. </view>
  49. </view>