myuser.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="uni-flex uni-column myuser">
  3. <view class="uni-list">
  4. <view class="content">
  5. <view v-for="(item,key) in users" :key="key" class="uni-flex justify-content">
  6. <view class="uni-product uni-flex">
  7. <view class="image-view">
  8. <image v-if="item.avatarUrl" class="uni-product-image" :src="item.avatarUrl" />
  9. <image v-if="!item.avatarUrl" class="uni-product-image" src="../../../static/user/28.jpg" />
  10. </view>
  11. <view class="uni-product-wrap uni-flex uni-column">
  12. <view class="nick">昵称:<text>{{item.nickName}}</text></view>
  13. <view class="registerTime">注册时间:<text>{{item.createDate}}</text></view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
  20. </view>
  21. </template>
  22. <script>
  23. import {
  24. mapState,
  25. mapMutations
  26. } from 'vuex'
  27. import loadMore from '@/components/uni-load-more.vue';
  28. var index;
  29. export default {
  30. computed: {
  31. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  32. },
  33. data() {
  34. return {
  35. users: [],
  36. rank: 1,
  37. ico:"../",
  38. loadingType: 0,
  39. contentText: {
  40. contentdown: "上拉显示更多",
  41. contentrefresh: "正在加载...",
  42. contentnomore: "没有更多数据了"
  43. }
  44. };
  45. },
  46. onPullDownRefresh() {
  47. this.init();
  48. setTimeout(function() {
  49. uni.stopPullDownRefresh();
  50. }, 1000);
  51. },
  52. onShow() {
  53. this.init();
  54. },
  55. onLoad(e) {
  56. this.rank = e.rank;
  57. this.init();
  58. },
  59. methods: {
  60. init() {
  61. index = 1;
  62. if (!this.hasLogin) {
  63. uni.navigateTo({
  64. url: '../login/login',
  65. });
  66. } else {
  67. this.getData();
  68. }
  69. },
  70. getData() {
  71. if (this.loadingType !== 0) {
  72. return;
  73. }
  74. this.loadingType = 1;
  75. let user = JSON.parse(this.jyyUser);
  76. uni.request({
  77. url: this.webUrl + 'MyUserList',
  78. method: 'POST',
  79. data: {
  80. pageIndex: index,
  81. userid: user.id,
  82. rank: this.rank
  83. },
  84. header: {
  85. 'content-type': 'application/x-www-form-urlencoded'
  86. },
  87. success: res => {
  88. if (res.data.result.userList.length > 0) {
  89. this.users = this.users.concat(res.data.result.userList);
  90. } else {
  91. this.loadingType = 2;
  92. return;
  93. }
  94. if (index == parseInt(res.data.result.pages)) {
  95. this.loadingType = 2;
  96. return;
  97. } else {
  98. this.loadingType = 0;
  99. }
  100. index++;
  101. },
  102. fail: () => {},
  103. complete: () => {}
  104. });
  105. },
  106. },
  107. onReachBottom() {
  108. this.getData();
  109. },
  110. components: {
  111. loadMore
  112. }
  113. }
  114. </script>