selectGroup.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <div class="selectGroup">
  3. <m-search @onSearch="onSearch" />
  4. <div class="group_section">
  5. <van-list
  6. v-model="loading"
  7. v-if="dataShow"
  8. :finished="finished"
  9. finished-text=" "
  10. :immediate-check="false"
  11. @load="getList"
  12. >
  13. <van-checkbox-group v-model="groupIds">
  14. <van-cell
  15. v-for="(item, index) in list"
  16. :key="index"
  17. @click="onCheckbox(item)"
  18. >
  19. <template #icon>
  20. <van-checkbox :name="item.id"></van-checkbox>
  21. <!-- TRAINING MUSIC VIP/COMM -->
  22. <img
  23. v-if="item.type === 'MUSIC'"
  24. src="./images/icon_music.png"
  25. class="group_icon"
  26. />
  27. <img
  28. v-if="item.type === 'TRAINING'"
  29. src="./images/icon_xly.png"
  30. class="group_icon"
  31. />
  32. <img
  33. v-if="item.type === 'VIP' || item.type === 'COMM'"
  34. src="./images/icon_vip.png"
  35. class="group_icon"
  36. />
  37. </template>
  38. <div class="group_content">
  39. <div class="group_title van-ellipsis">{{ item.name }}</div>
  40. <div class="group_desc van-ellipsis">
  41. {{ item.memo }}(共{{ item.memberNum || 0 }}人)
  42. </div>
  43. </div>
  44. </van-cell>
  45. </van-checkbox-group>
  46. </van-list>
  47. <m-empty v-else msg="暂无数据" />
  48. </div>
  49. <div class="btn-group">
  50. <van-button type="primary" @click="onSubmit" round block>
  51. 确认
  52. </van-button>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. import MEmpty from "@/components/MEmpty";
  58. import { queryGroupPage1 } from "./api";
  59. import MSearch from "@/components/Search";
  60. export default {
  61. name: "selectGroup",
  62. props: {
  63. selectIds: {
  64. type: Array,
  65. default() {
  66. return [];
  67. },
  68. },
  69. },
  70. components: {
  71. MSearch,
  72. MEmpty,
  73. },
  74. data() {
  75. return {
  76. list: [],
  77. groupIds: [],
  78. loading: false,
  79. finished: false,
  80. params: {
  81. search: "",
  82. active: 0,
  83. page: 1,
  84. rows: 20,
  85. },
  86. dataShow: true,
  87. };
  88. },
  89. mounted() {
  90. // 初始化选择的群组
  91. this.groupIds = [...this.selectIds];
  92. this.getList();
  93. },
  94. methods: {
  95. onSearch(val) {
  96. this.dataShow = true;
  97. this.loading = false;
  98. this.finished = false;
  99. this.params.search = val;
  100. this.params.page = 1;
  101. this.list = [];
  102. this.getList();
  103. },
  104. onSubmit() {
  105. // 确定选择的群组
  106. console.log(this.groupIds);
  107. this.$emit("onSubmit", this.groupIds);
  108. },
  109. onCheckbox(item) {
  110. const index = this.groupIds.indexOf(item.id);
  111. if (index > -1) {
  112. this.groupIds.splice(index, 1);
  113. } else {
  114. this.groupIds.push(item.id);
  115. }
  116. },
  117. async getList() {
  118. try {
  119. const params = this.params;
  120. const res = await queryGroupPage1(params);
  121. const result = res.data;
  122. this.loading = false;
  123. if (params.page > result.pageNo) {
  124. return;
  125. }
  126. params.page = result.pageNo;
  127. this.list = this.list.concat(result.rows);
  128. if (params.page >= result.totalPage) {
  129. this.finished = true;
  130. }
  131. this.params.page++;
  132. // 判断是否有数据
  133. if (this.list.length <= 0) {
  134. this.dataShow = false;
  135. }
  136. } catch {
  137. this.finished = true;
  138. this.dataShow = false;
  139. }
  140. },
  141. },
  142. };
  143. </script>
  144. <style lang="less" scoped>
  145. .group_section {
  146. height: 65vh;
  147. overflow: auto;
  148. }
  149. .group_icon {
  150. width: 0.42rem;
  151. height: 0.42rem;
  152. margin-right: 0.15rem;
  153. margin-left: 0.15rem;
  154. }
  155. .btn-group {
  156. padding: 0.1rem 0.14rem;
  157. }
  158. </style>