123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!--pages/channel/index/index.wxml-->
- <view class="page">
- <view class="page__bd">
- <view class="section">
- <view class="article">
- <text>密频是你的私有频道,加入你的密频的朋友可以看到你在密频中发的内容,凡是看过你的密件的朋友你可以批准他是否加入你的密频。</text>
- </view>
- </view>
- <view class="section" style="display:inline-block;width:100%;">
- <view class="button-wrapper" style="margin-left:40px;float:left;width:38%;">
- <navigator class="button" url="/pages/channel/image/add/add" >制作图片密件</navigator>
- </view>
- <view class="button-wrapper" style="margin-right:40px;float:right;width:38%;">
- <navigator class="button" url="/pages/channel/video/add/add">制作视频密件</navigator>
- </view>
- </view>
- <view class="section" style="display:inline-block;width:100%;margin:0 auto;">
- <view style="width:38%;margin:0 auto;">
- <navigator class="button" url="/pages/channel/user/application/application" >关注管理</navigator>
- </view>
- </view>
- <view class="section" style="display:inline-block;width:100%;margin-bottom:0;margin-top:20px;">
- <view style="width:100%;font-size:14px;color:#fff;text-align:center;">最近密频的更新内容</view>
- <view class="weui-loadmore" wx:if="{{loading}}">
- <view class="weui-loading"></view>
- <text class="weui-loadmore__tips">正在加载</text>
- </view>
- <view style="width:100%;display:inline-block;padding:50px 40px;box-sizing:border-box;padding-top:10px;padding-bottom:0px;">
- <view class="item" wx:for="{{posts}}" wx:key="id">
- <navigator url="/pages/channel/view/view?hash_key={{item.hash_key}}" open-type="navigate" >
- <image src="{{item.user.headimgurl}}" mode="widthFix"></image>
- </navigator>
- <view class="u_name" style="color:#fff;text-align:center;font-size:12px;margin-top:5px;">{{item.user.nickname}}</view>
- <view class="date_time" style="color:#fff;text-align:center;font-size:12px;margin-top:5px;">{{item.created_at}}</view>
- </view>
- </view>
- <view class="weui-loadmore weui-loadmore_line" wx:if="{{!next_data&&!loading&&posts.length!==0}}">
- <text class="weui-loadmore__tips">数据已经全部加载完了</text>
- </view>
- <view class="weui-loadmore weui-loadmore_line" wx:if="{{!next_data&&!loading&&posts.length==0}}">
- <text class="weui-loadmore__tips">暂无数据</text>
- </view>
- </view>
- </view>
- </view>
|