group.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <template>
  2. <view class="">
  3. <view style="padding: 10px 20px;">
  4. <u-divider text="互助组信息"></u-divider>
  5. <u-radio-group v-model="groupId" placement="column" :size="20" iconPlacement="right"
  6. style="margin-top: 25px;">
  7. <view v-for="(item,index) in groupList">
  8. <u-radio style="font-size: 14px;"
  9. :label="(index+1)+'.'+item.orgName+'('+(item.leaderName?item.leaderName:'未分配组长')+')'"
  10. :name="item.id" :customStyle="{marginBottom: '18px'}" :labelSize="19"></u-radio>
  11. <u-divider></u-divider>
  12. </view>
  13. </u-radio-group>
  14. </view>
  15. <view class="mfooter">
  16. <view class="flex">
  17. <view class="f">
  18. <button class="btn" @click="apply()">申请加入</button>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. groupId: undefined,
  29. groupList: [],
  30. };
  31. },
  32. onLoad() {
  33. },
  34. onShow() {
  35. this.checkGroup()
  36. },
  37. methods: {
  38. getGroupList() {
  39. this.http.request({
  40. url: '/level-one-server/app/TbGroup/getList',
  41. data: {
  42. pageNo: 1,
  43. pageSize: 200
  44. },
  45. success: res => {
  46. this.groupList = res.data.data;
  47. }
  48. });
  49. },
  50. checkGroup() {
  51. this.http.request({
  52. url: '/sp-admin/app/AppUser/getAuth',
  53. success: res => {
  54. this.groupId = res.data.data.groupId;
  55. this.getGroupList()
  56. }
  57. });
  58. },
  59. apply() {
  60. let groupId=this.groupId;
  61. if(!groupId){
  62. uni.showModal({
  63. content: '请选择互助组',
  64. showCancel: false
  65. });
  66. return;
  67. }
  68. let groupName=this.groupList.filter(obj=>obj.id==groupId)[0].orgName;
  69. let that=this;
  70. uni.showModal({
  71. title:'提示',
  72. content:'是否申请加入【'+groupName+'】',
  73. success(resp) {
  74. if(resp.confirm){
  75. that.http.request({
  76. url: '/level-one-server/app/TbPeople/joinGroup',
  77. data:{groupId,groupId,groupName:groupName},
  78. success: res => {
  79. uni.showToast({
  80. title: '提交成功'
  81. })
  82. }
  83. });
  84. }
  85. }
  86. })
  87. }
  88. },
  89. }
  90. </script>
  91. <style lang="scss">
  92. page {
  93. background-color: #f5f5f5;
  94. }
  95. .my_top {
  96. position: relative;
  97. overflow: hidden;
  98. image {
  99. width: 100%;
  100. }
  101. }
  102. .list {
  103. position: relative;
  104. padding: 0px 20px 10px 20px;
  105. margin-top: -196px;
  106. .user {
  107. background-color: white;
  108. padding: 20px;
  109. border-radius: 8px;
  110. color: $font-c;
  111. .head {
  112. float: left;
  113. width: 55px;
  114. height: 55px;
  115. }
  116. .con {
  117. float: left;
  118. padding-left: 15px;
  119. width: 60%;
  120. .nickName {
  121. font-size: 17px;
  122. font-weight: bold;
  123. }
  124. .tag {
  125. background-color: #6799ad;
  126. color: white;
  127. float: left;
  128. font-size: 13px;
  129. padding: 2px 6px;
  130. border-radius: 5px;
  131. margin-top: 6px;
  132. }
  133. }
  134. .edit {
  135. float: right;
  136. font-size: 20px;
  137. margin-top: 17px;
  138. }
  139. }
  140. }
  141. .exit {
  142. margin-top: 20px;
  143. background-color: white;
  144. color: #f44336;
  145. }
  146. </style>