index.wxml 1.1 KB

12345678910111213141516171819
  1. <!--pages/platform/index.wxml-->
  2. <wxs src="../../wxs/index.wxs" module="utils" />
  3. <view class="row" wx:for="{{keys}}" wx:key="id">
  4. <view class="label">{{item}}</view>
  5. <view class="val">
  6. <view style="padding: 10rpx 0" wx:for="{{list[item]}}" wx:for-index="o" wx:key="id" wx:for-item="v">
  7. <view>{{v.title}}</view>
  8. <view class="data" style="overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">
  9. <!-- <text class="data"
  10. 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> -->
  11. <view class="row" style="width: 550rpx">
  12. <view class="label" style="vertical-align: middle;width: 35%;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">{{v.nick_name}}</view>
  13. <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>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>