ElectricitySetting.vue 663 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <!-- 电费设置 -->
  3. <HeaderNav headerText="电费设置"></HeaderNav>
  4. <div class="electricity-setting pf400 fs14 fc1F2937">
  5. 电费自动续费
  6. <Switch v-model="electricityFlag"></Switch>
  7. </div>
  8. </template>
  9. <script setup>
  10. import HeaderNav from "../components/HeaderNav.vue";
  11. import Switch from "@/components/ui/Switch.vue";
  12. import { ref } from "vue";
  13. const electricityFlag = ref(true);
  14. </script>
  15. <style lang="less" scoped>
  16. .electricity-setting {
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: space-between;
  20. align-items: center;
  21. margin: 0 auto;
  22. margin-top: 60px;
  23. width: 345px;
  24. }
  25. </style>