emediaInvite.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <template>
  2. <view class="wraper">
  3. <view class="search" v-if="search_btn">
  4. <view bindtap="openSearch">
  5. <icon type="search" size="13"></icon>
  6. <text>搜索</text>
  7. </view>
  8. </view>
  9. <view class="search_input" v-if="search_friend">
  10. <view>
  11. <icon type="search" size="13"></icon>
  12. <input placeholder="搜索"
  13. placeholder-style="color:#CFCFCF;line-height:20px;font-size:12px;"
  14. auto-focus
  15. confirm-type="search"
  16. type='text'
  17. bindconfirm="onSearch"
  18. bindinput="onInput"
  19. :value="input_code"
  20. ></input>
  21. <icon type="clear" size="13" catchtap='clearInput' v-if="show_clear"></icon>
  22. </view>
  23. <text bindtap="cancel">取消</text>
  24. </view>
  25. <scroll-view
  26. class="content"
  27. enable-back-to-top
  28. scroll-y="true"
  29. scroll-with-animation="true"
  30. :style="{height: second_height + 'px'}"
  31. >
  32. <checkbox-group v-for="(item,index) in renderList" :data-item="item" :key="index" :id="item.id" :data-id='item.id' @change="checkboxChange">
  33. <view class="tap_mask" @tap="into_room" :data-username="item.member||item.owner">
  34. <view class="address_bottom" :data-username="item.member||item.owner" @tap="into_room">
  35. <image src="../../../static/images/theme2x.png" @tap="into_room" :data-username="item.member||item.owner"></image>
  36. <text @tap="into_room" :data-username="item.member||item.owner">{{item.member||item.owner}}</text>
  37. <checkbox :value="item.member||item.owner" :checked="item.checked" :disabled="item.disabled"/>
  38. </view>
  39. </view>
  40. </checkbox-group>
  41. </scroll-view>
  42. <view class="btnWraper">
  43. <button class="button" @tap="startConfr">{{buttonText}}</button>
  44. <button class="button red" @tap="goBack">返回</button>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. search_btn: true,
  53. search_friend: false,
  54. groupMember: [],
  55. serchList: [],
  56. checkedValue: [],
  57. renderList: [],
  58. buttonText: '发起会议',
  59. second_height: 450,
  60. show_clear: false,
  61. }
  62. },
  63. props: {
  64. username: {
  65. type: Object,
  66. default: () => ({})
  67. },
  68. action: {
  69. type: String,
  70. default: ''
  71. }
  72. },
  73. mounted() {
  74. console.log('邀请页面的参数', this)
  75. console.log(this.properties)
  76. var that = this
  77. // 获取系统信息
  78. wx.getSystemInfo({
  79. success: function (res) {
  80. console.log('height=' + res.windowHeight);
  81. console.log('width=' + res.windowWidth);
  82. // 计算主体部分高度,单位为px
  83. that.second_height= res.windowHeight - res.windowWidth / 750 * 300
  84. }
  85. })
  86. if(this.action == 'invite'){
  87. this.buttonText= '邀请'
  88. }
  89. var roomId = this.username&&this.username.groupId
  90. console.log('roomId', this.username)
  91. roomId&&this.getGroupMember(roomId)
  92. },
  93. methods: {
  94. getGroupMember: function(roomId){
  95. var me = this;
  96. // 获取群成员
  97. var pageNum = 1,
  98. pageSize = 1000;
  99. var options = {
  100. pageNum: pageNum,
  101. pageSize: pageSize,
  102. groupId: roomId,
  103. success: function(resp){
  104. console.log('获取群成员', resp)
  105. if(resp && resp.data){
  106. me.groupMember= resp.data
  107. me.getRenderList(resp.data)
  108. }
  109. },
  110. error: function(err){
  111. }
  112. };
  113. uni.WebIM.conn.listGroupMember(options);
  114. },
  115. getRenderList(list){
  116. console.log('this.checkedValue', this.checkedValue)
  117. let serchList = list.map((item) => {
  118. for (var i = 0; i < this.checkedValue.length; i++) {
  119. if((item.member&&item.member.indexOf(this.checkedValue[i]) != -1) || (item.owner&&item.owner.indexOf(this.checkedValue[i]) != -1)){
  120. item.checked = true
  121. return item
  122. break;
  123. }else{
  124. item.checked = false
  125. }
  126. }
  127. return item
  128. })
  129. serchList.forEach((item) => {
  130. if(item.member == wx.WebIM.conn.context.userId || item.owner == wx.WebIM.conn.context.userId){
  131. item.disabled = true
  132. }
  133. })
  134. this.renderList= serchList
  135. console.log('serchList >>>>', serchList)
  136. },
  137. checkboxChange: function (e) {
  138. console.log('checkbox发生change事件,携带value值为:', e)
  139. if(this.checkedValue.indexOf(e.detail.value) == -1 && e.detail.value[0]){
  140. this.checkedValue.push(e.detail.value[0])
  141. console.log(this.checkedValue)
  142. }else{
  143. let value = e.target.dataset.item.name
  144. this.checkedValue.splice(this.checkedValue.indexOf(value), 1)
  145. console.log(this.checkedValue)
  146. }
  147. },
  148. openSearch: function(){
  149. this.search_btn= false,
  150. this.search_friend= true,
  151. this.show_mask= true,
  152. this.gotop= true
  153. },
  154. cancel: function(){
  155. this.search_btn= true,
  156. this.search_friend= false,
  157. this.gotop= false
  158. //this.getBrands(this.member)
  159. },
  160. onInput(e){
  161. let inputValue = e.detail.value
  162. if (inputValue) {
  163. this.show_clear= true
  164. } else {
  165. this.show_clear= false
  166. }
  167. },
  168. clearInput: function(){
  169. this.input_code= ''
  170. this.show_clear= false
  171. },
  172. cancel: function(){
  173. this.search_btn= true
  174. this.search_friend= false
  175. let original = this.groupMember||[]
  176. this.getRenderList(original)
  177. },
  178. onSearch: function(val){
  179. let searchValue = val.detail.value
  180. let member = this.groupMember;
  181. let serchList = [];
  182. member.forEach((item, index)=>{
  183. if(String(item.member).indexOf(searchValue) != -1 || String(item.owner).indexOf(searchValue) != -1){
  184. serchList.push(item)
  185. }
  186. })
  187. // this.setData({
  188. // groupMember: serchList
  189. // })
  190. this.getRenderList(serchList)
  191. },
  192. startConfr(){
  193. this.$emit('onStartConfr', {confrMember: this.checkedValue, action: this.action, groupId: this.username.groupId})
  194. this.checkedValue= []
  195. },
  196. goBack(){
  197. this.checkedValue=[]
  198. this.$emit('goBack')
  199. },
  200. into_room(){
  201. }
  202. }
  203. }
  204. </script>
  205. <style>
  206. @import "./emediaInvite.css";
  207. </style>