mymember.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <view class="uni-flex uni-column jz_mymember">
  3. <view class="uni-flex align-items menberItem" v-if="users.length>0" v-for="(item,key) in users" :key="key">
  4. <view class="uni-flex justify-align-center menberItemImg">
  5. <image v-if="item.headIco!=null&& item.headIco!='undefined'" :src="item.headIco"></image>
  6. <image v-if="item.headIco==null|| item.headIco=='undefined'" src="../../../static/home/home12.png"></image>
  7. </view>
  8. <view class="uni-flex-item uni-flex space-between uni-column menberItemright">
  9. <view class="uni-flex align-items">昵称:{{item.nickName}}</view>
  10. <view class="uni-flex space-between align-items">
  11. <view class="">注册时间:{{item.createDate}}</view>
  12. </view>
  13. <view class="uni-flex align-items" v-if="user.business==1">
  14. <view class="uni-flex justify-align-center btnmember btn " @click="goMyfit(item,key)">
  15. 推广分润设置
  16. </view>
  17. <view class="uni-flex justify-align-center btnmember btn" :class="[item.agency? '' : 'NoactiveClass']" @click="setAcentPrice(item,key)">
  18. 代理价格可见
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="uni-flex align-items menberItem" v-if="users.length==0" style="color: #B2B2B2;">
  24. 暂无会员
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import {
  30. mapState,
  31. mapMutations
  32. } from 'vuex'
  33. export default {
  34. computed: {
  35. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  36. },
  37. data() {
  38. return {
  39. users: [],
  40. user: {}
  41. }
  42. },
  43. onShow() {},
  44. onLoad(e) {
  45. this.user = JSON.parse(this.jyyUser);
  46. this.init();
  47. },
  48. methods: {
  49. setAcentPrice(item, key) {
  50. uni.request({
  51. url: this.webUrl + 'SetAgency',
  52. method: 'POST',
  53. data: {
  54. userid: this.user.id,
  55. id: item.id,
  56. agency: !item.agency
  57. },
  58. header: {
  59. 'content-type': 'application/x-www-form-urlencoded'
  60. },
  61. success: res => {
  62. if (res.data.result.isSuccess) {
  63. this.users[key].agency = !item.agency;
  64. }
  65. },
  66. fail: () => {},
  67. complete: () => {}
  68. });
  69. },
  70. goMyfit(e) {
  71. uni.navigateTo({
  72. url: 'myfit?userid=' + e.id
  73. })
  74. },
  75. init() {
  76. if (!this.hasLogin) {
  77. uni.navigateTo({
  78. url: '../login/login',
  79. });
  80. } else {
  81. this.getData();
  82. }
  83. },
  84. getData() {
  85. uni.request({
  86. url: this.webUrl + 'GetMyUser',
  87. method: 'POST',
  88. data: {
  89. userid: this.user.id,
  90. },
  91. header: {
  92. 'content-type': 'application/x-www-form-urlencoded'
  93. },
  94. success: res => {
  95. if (res.data.data.length > 0) {
  96. this.users = res.data.data;
  97. }
  98. },
  99. fail: () => {},
  100. complete: () => {}
  101. });
  102. },
  103. goBuyUser(e) {
  104. uni.navigateTo({
  105. url: "./myuser?rank=" + e
  106. })
  107. }
  108. }
  109. }
  110. </script>
  111. <style>
  112. .myuser {
  113. height: 80upx;
  114. text-align: center;
  115. line-height: 80upx;
  116. }
  117. .mymember .number {
  118. margin-right: 20upx;
  119. }
  120. .btnmember {
  121. font-size: 24upx;
  122. margin-top: 20upx;
  123. width: 180upx;
  124. height: 50upx;
  125. border-radius: 8upx;
  126. color: #fff;
  127. line-height: 50upx;
  128. }
  129. .btnmember.NoactiveClass {
  130. background: #cdcdcd;
  131. }
  132. </style>