xiaoxi.vue 2.2 KB

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