xiaoxi.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view class="xiaoxi">
  3. <view class="xiaoxi-item u-flex u-row-between">
  4. <view class="u-flex-col">
  5. <text class="text1">聊天消息推送</text>
  6. <text class="text2">接收聊天消息通知</text>
  7. <text class="text3">关闭后将不再向您推送聊天消息通知</text>
  8. </view>
  9. <u-switch @change='change1' v-model="is_chat_notification" active-color="#0C66C2"></u-switch>
  10. </view>
  11. <view class="xiaoxi-item u-flex u-row-between">
  12. <view class="u-flex-col">
  13. <text class="text1">求职推送</text>
  14. <text class="text2">投递反馈通知</text>
  15. <text class="text3">投递反馈通知</text>
  16. </view>
  17. <u-switch @change='change2' v-model="is_forum_notification" active-color="#0C66C2"></u-switch>
  18. </view>
  19. <view class="xiaoxi-item">
  20. <view class="text1">互动/资讯推送</view>
  21. <view class="u-flex u-row-between">
  22. <text class="text2">资讯推荐</text>
  23. <u-switch @change='change3' v-model="is_info_notification" active-color="#0C66C2"></u-switch>
  24. </view>
  25. <view class="text3" style="margin-bottom: 44rpx;">关闭后将不再向您推送最新发布的资讯通知</view>
  26. <view class="u-flex u-row-between">
  27. <text class="text2">内容互动</text>
  28. <u-switch @change='change4' v-model="is_order_notification" active-color="#0C66C2"></u-switch>
  29. </view>
  30. <view class="text3">关闭后将不再向您推送点赞、评论和关注您等互动消息的通知</view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import {
  36. index,
  37. updateNotificationSwitch
  38. } from '@/units/inquire.js'
  39. export default {
  40. data() {
  41. return {
  42. is_chat_notification: false,
  43. is_forum_notification: false,
  44. is_info_notification: false,
  45. is_order_notification: false
  46. }
  47. },
  48. onLoad() {
  49. this.index()
  50. },
  51. methods: {
  52. // is_chat_notification integer 否 是否开启接受聊天消息通知:0.关闭, 1.开启
  53. // is_order_notification integer 否 是否开启职位反馈通知:0.关闭, 1.开启
  54. // is_info_notification integer 否 是否开启资讯推荐通知:0.关闭, 1.开启
  55. // is_forum_notification integer 否 是否开启论坛内容互动通知:0.关闭, 1.开启
  56. index() {
  57. index().then(res => {
  58. this.is_chat_notification = res.data.is_chat_notification == 0 ? false : true
  59. this.is_order_notification = res.data.is_forum_notification == 0 ? false : true
  60. this.is_info_notification = res.data.is_info_notification == 0 ? false : true
  61. this.is_forum_notification = res.data.is_order_notification == 0 ? false : true
  62. })
  63. },
  64. change1() {
  65. updateNotificationSwitch({
  66. is_chat_notification: this.is_chat_notification
  67. }).then(res => {
  68. this.$u.toast('修改成功')
  69. })
  70. },
  71. change2() {
  72. updateNotificationSwitch({
  73. is_order_notification: this.is_order_notification
  74. }).then(res => {
  75. this.$u.toast('修改成功')
  76. })
  77. },
  78. change3() {
  79. updateNotificationSwitch({
  80. is_info_notification: this.is_info_notification
  81. }).then(res => {
  82. this.$u.toast('修改成功')
  83. })
  84. },
  85. change4() {
  86. updateNotificationSwitch({
  87. is_forum_notification: this.is_forum_notification
  88. }).then(res => {
  89. this.$u.toast('修改成功')
  90. })
  91. }
  92. }
  93. }
  94. </script>
  95. <style lang="scss">
  96. .xiaoxi {
  97. .xiaoxi-item {
  98. width: 750rpx;
  99. background: #FFFFFF;
  100. margin-bottom: 20rpx;
  101. padding: 32rpx 32rpx 28rpx 32rpx;
  102. box-sizing: border-box;
  103. .text1 {
  104. font-size: 24rpx;
  105. font-family: PingFangSC-Regular, PingFang SC;
  106. font-weight: 400;
  107. color: rgba(34, 34, 34, 0.5);
  108. margin-bottom: 24rpx;
  109. }
  110. .text2 {
  111. font-size: 32rpx;
  112. font-family: PingFangSC-Regular, PingFang SC;
  113. font-weight: 400;
  114. color: #222222;
  115. margin-bottom: 12rpx;
  116. }
  117. .text3 {
  118. font-size: 24rpx;
  119. font-family: PingFangSC-Regular, PingFang SC;
  120. font-weight: 400;
  121. color: rgba(34, 34, 34, 0.5);
  122. }
  123. }
  124. }
  125. page {
  126. background-color: #F3F3F3;
  127. }
  128. </style>