25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

  1. <view class='transaction'>
  2. <view>
  3. <view class='hide' wx:if='{{list.length==0}}'>
  4. <image class='jiaoyi' src='./../../static/images/jiaoyi.png' mode='widthFix'></image>
  5. <text>暂无数据</text>
  6. </view>
  7. <view class='transaction_msg' wx:for='{{list}}' wx:key="index">
  8. <view>
  9. <text>姓名</text>
  10. <text>{{item.name}}</text>
  11. </view>
  12. <view>
  13. <text>微信昵称</text>
  14. <text>{{item.nickName}}</text>
  15. </view>
  16. <view>
  17. <text>性别</text>
  18. <text>{{item.sex}}</text>
  19. </view>
  20. <view>
  21. <text>手机号</text>
  22. <text>{{item.phone}}</text>
  23. </view>
  24. <view>
  25. <text>现居住地址</text>
  26. <text>{{item.address}}</text>
  27. </view>
  28. <view>
  29. <text>生日</text>
  30. <text>{{item.birthdate}}</text>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="loading" wx:if="{{loading}}">
  36. {{content}}
  37. </view>
  38. <view class='nocontent' wx:if="{{showNocontent}}">
  39. 暂无数据
  40. </view>