notify.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="notify">
  3. <u-cell-group>
  4. <u-cell-item title="账户通知" :arrow="false">
  5. <u-switch slot="right-icon" active-color="#1abc9c" size="40" v-model="setting.account"></u-switch>
  6. </u-cell-item>
  7. <u-cell-item title="物流通知" :arrow="false">
  8. <u-switch slot="right-icon" active-color="#1abc9c" size="40" v-model="setting.logistics"></u-switch>
  9. </u-cell-item>
  10. <u-cell-item title="优惠促销" :arrow="false">
  11. <u-switch slot="right-icon" active-color="#1abc9c" size="40" v-model="setting.cheap"></u-switch>
  12. </u-cell-item>
  13. <u-cell-item title="服务通知" :arrow="false">
  14. <u-switch slot="right-icon" active-color="#1abc9c" size="40" v-model="setting.service"></u-switch>
  15. </u-cell-item>
  16. </u-cell-group>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. setting:{
  24. account:false,
  25. logistics:false,
  26. cheap:false,
  27. service:false
  28. }
  29. };
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. uni-view{
  35. font-size: 20rpx;
  36. }
  37. </style>