12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!--pages/channel/index/index.wxml-->
- <view class="page">
- <view class="page__bd">
- <view class="section" style="width:100%;margin:0 auto;text-align:center;margin-top:20px;">
- <view style="color:#fff;display:inline-block;width:100%;padding:0px 40px;box-sizing:border-box;">
- <view style="float:left;line-height:27px;">我的密友有{{users_count}}人</view>
- <form report-submit="{{true}}" bindsubmit="formSubmit">
- <button class="button" style="float:right;border-radius:30px;line-height:25px;" formType="submit" >邀请</button>
- </form>
- <navigator class="button" style="float:right;margin-right:20px;border-radius:30px;line-height:25px;" url="/pages/channel/user/followers/followers">管理</navigator>
- </view>
- </view>
- <view class="section">
- <view class="article" style="padding-top:20px;">
- <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-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 ? item.user.headimgurl : '/pages/images/default.png'}}" 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>
|