12345678910111213141516171819 |
- <!--pages/platform/index.wxml-->
- <wxs src="../../wxs/index.wxs" module="utils" />
- <view class="row" wx:for="{{keys}}" wx:key="id">
- <view class="label">{{item}}</view>
- <view class="val">
- <view style="padding: 10rpx 0" wx:for="{{list[item]}}" wx:for-index="o" wx:key="id" wx:for-item="v">
- <view>{{v.title}}</view>
- <view class="data" style="overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">
- <!-- <text class="data"
- style="vertical-align: middle;display: inline-block;max-width: 50%;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;padding-right:3rpx">{{v.nick_name}} </text> -->
- <view class="row" style="width: 550rpx">
- <view class="label" style="vertical-align: middle;width: 35%;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">{{v.nick_name}}</view>
- <view class="val" style="vertical-align: middle;width:65%;text-align: right">评论: {{utils.formatter(v.comment_count)}};点赞: {{utils.formatter(v.digg_count)}};转发:{{utils.formatter(v.forward_count)}}</view>
- </view>
-
- </view>
- </view>
- </view>
- </view>
|