| 1234567891011121314151617181920212223242526 |
- <template>
- <!-- 电费设置 -->
- <HeaderNav headerText="电费设置"></HeaderNav>
- <div class="electricity-setting pf400 fs14 fc1F2937">
- 电费自动续费
- <Switch v-model="electricityFlag"></Switch>
- </div>
- </template>
- <script setup>
- import HeaderNav from "../components/HeaderNav.vue";
- import Switch from "@/components/ui/Switch.vue";
- import { ref } from "vue";
- const electricityFlag = ref(true);
- </script>
- <style lang="less" scoped>
- .electricity-setting {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin: 0 auto;
- margin-top: 60px;
- width: 345px;
- }
- </style>
|