tuisong.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="title">推送通知</view>
  5. <view class="item hflex acenter jbetween">
  6. <text>系统通知</text>
  7. <u-switch v-model="xitong_tongzhi" activeColor="#00b0b0" @change="toxitong"></u-switch>
  8. </view>
  9. <view class="item hflex acenter jbetween">
  10. <text>点赞推送</text>
  11. <u-switch v-model="dianzan_tuisong" activeColor="#00b0b0" @change="todianzan"></u-switch>
  12. </view>
  13. <view class="item hflex acenter jbetween">
  14. <text>评论推送</text>
  15. <u-switch v-model="pinglun_tuisong" activeColor="#00b0b0" @change="topinglun"></u-switch>
  16. </view>
  17. </view>
  18. <view class="box">
  19. <view class="title">谁能给我点赞</view>
  20. <view class="item hflex acenter jbetween" v-for="(item,index) in list" :key="index"
  21. @click="dianzanselect(index)">
  22. <text>{{item.name}}</text>
  23. <image src="static/select.png" mode="aspectFill" v-if="dianzan_active != index"></image>
  24. <image src="static/select_active.png" mode="aspectFill" v-else></image>
  25. </view>
  26. </view>
  27. <view class="box">
  28. <view class="title">谁能收藏我的内容</view>
  29. <view class="item hflex acenter jbetween" v-for="(item,index) in list" :key="index"
  30. @click="collectselect(index)">
  31. <text>{{item.name}}</text>
  32. <image src="static/select.png" mode="aspectFill" v-if="collect_active != index"></image>
  33. <image src="static/select_active.png" mode="aspectFill" v-else></image>
  34. </view>
  35. </view>
  36. <view class="box">
  37. <view class="title">谁能评论回复我</view>
  38. <view class="item hflex acenter jbetween" v-for="(item,index) in list" :key="index"
  39. @click="pinglunselect(index)">
  40. <text>{{item.name}}</text>
  41. <image src="static/select.png" mode="aspectFill" v-if="pinglun_active != index"></image>
  42. <image src="static/select_active.png" mode="aspectFill" v-else></image>
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import $api from '@/static/js/api.js'
  49. export default {
  50. data() {
  51. return {
  52. xitong_tongzhi: false,
  53. dianzan_tuisong: false,
  54. pinglun_tuisong: false,
  55. dianzan_active: 0,
  56. list: [{
  57. id: 'all',
  58. name: '任何人'
  59. },
  60. {
  61. id: 'follower',
  62. name: '仅我关注的'
  63. },
  64. {
  65. id: 'fans',
  66. name: '仅关注我的'
  67. },
  68. ],
  69. collect_active: 0,
  70. pinglun_active: 0,
  71. }
  72. },
  73. onLoad() {
  74. this.getdata()
  75. },
  76. onShow() {
  77. },
  78. onPullDownRefresh() {
  79. },
  80. onReachBottom() {
  81. },
  82. methods: {
  83. getdata() {
  84. var that = this
  85. $api.req({
  86. url: 'user/config',
  87. method: 'get',
  88. }, function(res) {
  89. that.xitong_tongzhi = res.data.is_system_notify == 1 ? true : false
  90. that.dianzan_tuisong = res.data.is_like_notify == 1 ? true : false
  91. that.pinglun_tuisong = res.data.is_comment_notify == 1 ? true : false
  92. for (var i = 0; i < that.list.length; i++) {
  93. if (res.data.who_can_like == that.list[i].id) {
  94. that.dianzan_active = i
  95. }
  96. if (res.data.who_can_collect == that.list[i].id) {
  97. that.collect_active = i
  98. }
  99. if (res.data.who_can_comment == that.list[i].id) {
  100. that.pinglun_active = i
  101. }
  102. }
  103. })
  104. },
  105. collectselect(index) {
  106. this.collect_active = index
  107. this.tochangge()
  108. },
  109. pinglunselect(index) {
  110. this.pinglun_active = index
  111. this.tochangge()
  112. },
  113. dianzanselect(index) {
  114. this.dianzan_active = index
  115. this.tochangge()
  116. },
  117. topinglun(e) {
  118. this.pinglun_tuisong = e
  119. this.tochangge()
  120. },
  121. todianzan(e) {
  122. this.dianzan_tuisong = e
  123. this.tochangge()
  124. },
  125. toxitong(e) {
  126. this.xitong_tongzhi = e
  127. this.tochangge()
  128. },
  129. tochangge() {
  130. var that = this
  131. $api.req({
  132. url: 'user/config',
  133. method: 'post',
  134. data: {
  135. is_system_notify: this.xitong_tongzhi ? 1 : 0,
  136. is_like_notify: this.dianzan_tuisong ? 1 : 0,
  137. is_comment_notify: this.pinglun_tuisong ? 1 : 0,
  138. who_can_like: this.list[this.dianzan_active].id,
  139. who_can_collect: this.list[this.collect_active].id,
  140. who_can_comment: this.list[this.pinglun_active].id,
  141. }
  142. }, function(res) {
  143. $api.info(res.msg)
  144. })
  145. }
  146. }
  147. }
  148. </script>
  149. <style lang="scss">
  150. .content {
  151. background: #F5F5F5;
  152. .box {
  153. box-sizing: border-box;
  154. border-top: 1px solid #F5F5F5;
  155. padding: 28rpx 28rpx 0;
  156. width: 100%;
  157. background: #FFFFFF;
  158. margin: 0 0 20rpx;
  159. .title {
  160. font-size: 24rpx;
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 400;
  163. color: #333333;
  164. }
  165. .item {
  166. box-sizing: border-box;
  167. padding: 32rpx 0;
  168. border-bottom: 1px solid #F5F5F5;
  169. text {
  170. font-size: 30rpx;
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 400;
  173. color: #333333;
  174. }
  175. image {
  176. width: 32rpx;
  177. height: 32rpx;
  178. }
  179. }
  180. }
  181. }
  182. </style>