vipers.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-search placeholder="请输入信息搜索会员" v-model="name" @custom="getData" @change="getData"></u-search>
  5. </view>
  6. <view class="card" v-for="(item,index) in dataList" :key="index">
  7. <view class="row">
  8. <view class="row half">
  9. <view class="name">
  10. 昵称
  11. </view>
  12. <view class="text">
  13. {{item.nickname}}
  14. </view>
  15. </view>
  16. <view class="row half">
  17. <view class="name">
  18. 手机号
  19. </view>
  20. <view class="text">
  21. {{item.mobile}}
  22. </view>
  23. </view>
  24. </view>
  25. <view class="row">
  26. <view class="row half">
  27. <view class="name">
  28. 会员等级
  29. </view>
  30. <view class="text">
  31. {{item.level_text}}
  32. </view>
  33. </view>
  34. <view class="row half" @click="eidt(item.id)">
  35. <view class="btn">
  36. 编辑
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <!-- 会员等级选择 -->
  42. <u-picker mode="selector" v-model="show" :range="level" range-key="cateName" title="设置会员等级" @confirm="set" @cancel="cancel"></u-picker>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. show: false,
  50. level: [{
  51. cateName: '普通会员',
  52. id: 0
  53. },
  54. {
  55. cateName: '黄金会员',
  56. id: 1
  57. },
  58. {
  59. cateName: '铂金会员',
  60. id: 10
  61. },
  62. {
  63. cateName: '钻石会员',
  64. id: 20
  65. },
  66. ],
  67. dataList: [],
  68. name: "",
  69. userId: '',
  70. page:1,
  71. total:0
  72. }
  73. },
  74. onLoad() {
  75. this.getData()
  76. },
  77. onReachBottom() {
  78. if(this.total != this.dataList.length){
  79. this.page++
  80. this.getData()
  81. }
  82. },
  83. methods: {
  84. // 设置会员等级
  85. set(e) {
  86. console.log(e, 1111)
  87. let level = 0;
  88. if (e[0] === 0) {
  89. level = 0;
  90. }
  91. if (e[0] === 1) {
  92. level = 1;
  93. }
  94. if (e[0] === 2) {
  95. level = 10;
  96. }
  97. if (e[0] === 3) {
  98. level = 20;
  99. }
  100. this.request("/admin_user/setLevel", {
  101. user_id: this.userId,
  102. level: level
  103. }, "GET").then(res => {
  104. console.log(res)
  105. if (res.code === 1) {
  106. this.$u.toast('操作成功')
  107. this.getData()
  108. } else {
  109. this.$u.toast(res.msg)
  110. }
  111. })
  112. },
  113. // 取消设置会员等级
  114. cancel() {
  115. this.userId = ""
  116. },
  117. // 获取数据列表
  118. getData() {
  119. this.request("/admin_user/list", {
  120. keyword: this.name,
  121. page:this.page
  122. }, "GET").then(res => {
  123. if (res.code === 1) {
  124. this.total = res.data.total
  125. if(this.page == 1){
  126. this.dataList = res.data.data
  127. }else{
  128. this.dataList = this.dataList.concat(res.data.data)
  129. }
  130. }
  131. })
  132. },
  133. // 点击编辑
  134. eidt(id) {
  135. this.show = true
  136. this.userId = id;
  137. }
  138. }
  139. }
  140. </script>
  141. <style lang="scss">
  142. .content {
  143. padding-top: 120rpx;
  144. }
  145. .search {
  146. padding: 30rpx;
  147. background-color: #FFFFFF;
  148. position: fixed;
  149. top: 0;
  150. width: 100vw;
  151. }
  152. .card {
  153. background-color: #FFFFFF;
  154. width: 93%;
  155. margin: 0 auto;
  156. margin-top: 40rpx;
  157. padding: 30rpx;
  158. border-radius: 30rpx;
  159. height: 150rpx;
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. justify-content: space-between;
  164. .half {
  165. width: 50%;
  166. justify-content: flex-start;
  167. .name {
  168. color: #999;
  169. }
  170. .text {
  171. text-indent: 1em;
  172. }
  173. .btn {
  174. width: 100%;
  175. display: flex;
  176. flex-direction: row;
  177. align-items: center;
  178. justify-content: flex-end;
  179. }
  180. }
  181. }
  182. </style>