xiaoxi.vue 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 v-model="checked" 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 v-model="checked1" 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 v-model="checked2" 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 v-model="checked3" active-color="#0C66C2"></u-switch>
  29. </view>
  30. <view class="text3">关闭后将不再向您推送点赞、评论和关注您等互动消息的通知</view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. checked: false,
  39. checked1: true,
  40. checked2: false,
  41. checked3: true
  42. }
  43. },
  44. onLoad() {
  45. },
  46. methods: {
  47. // is_chat_notification integer 否 是否开启接受聊天消息通知:0.关闭, 1.开启
  48. // is_order_notification integer 否 是否开启职位反馈通知:0.关闭, 1.开启
  49. // is_info_notification integer 否 是否开启资讯推荐通知:0.关闭, 1.开启
  50. // is_forum_notification integer 否 是否开启论坛内容互动通知:0.关闭, 1.开启
  51. }
  52. }
  53. </script>
  54. <style lang="scss">
  55. .xiaoxi {
  56. .xiaoxi-item {
  57. width: 750rpx;
  58. background: #FFFFFF;
  59. margin-bottom: 20rpx;
  60. padding: 32rpx 32rpx 28rpx 32rpx;
  61. box-sizing: border-box;
  62. .text1 {
  63. font-size: 24rpx;
  64. font-family: PingFangSC-Regular, PingFang SC;
  65. font-weight: 400;
  66. color: rgba(34, 34, 34, 0.5);
  67. margin-bottom: 24rpx;
  68. }
  69. .text2 {
  70. font-size: 32rpx;
  71. font-family: PingFangSC-Regular, PingFang SC;
  72. font-weight: 400;
  73. color: #222222;
  74. margin-bottom: 12rpx;
  75. }
  76. .text3 {
  77. font-size: 24rpx;
  78. font-family: PingFangSC-Regular, PingFang SC;
  79. font-weight: 400;
  80. color: rgba(34, 34, 34, 0.5);
  81. }
  82. }
  83. }
  84. page {
  85. background-color: #F3F3F3;
  86. }
  87. </style>