xiaoxi.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. }
  48. }
  49. </script>
  50. <style lang="scss">
  51. .xiaoxi {
  52. .xiaoxi-item {
  53. width: 750rpx;
  54. background: #FFFFFF;
  55. margin-bottom: 20rpx;
  56. padding: 32rpx 32rpx 28rpx 32rpx;
  57. box-sizing: border-box;
  58. .text1 {
  59. font-size: 24rpx;
  60. font-family: PingFangSC-Regular, PingFang SC;
  61. font-weight: 400;
  62. color: rgba(34, 34, 34, 0.5);
  63. margin-bottom: 24rpx;
  64. }
  65. .text2 {
  66. font-size: 32rpx;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. color: #222222;
  70. margin-bottom: 12rpx;
  71. }
  72. .text3 {
  73. font-size: 24rpx;
  74. font-family: PingFangSC-Regular, PingFang SC;
  75. font-weight: 400;
  76. color: rgba(34, 34, 34, 0.5);
  77. }
  78. }
  79. }
  80. page {
  81. background-color: #F3F3F3;
  82. }
  83. </style>