first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<view class="page padding">
<view class="padding bg-white radius">
<view class="flex justify-between padding-bottom solid-bottom">
<view>横幅消息通知</view>
<up-switch v-model="value" activeColor="#07C160" @change="change" ></up-switch>
</view>
<view class="flex justify-between padding-bottom padding-top solid-bottom">
<view>系统声音</view>
<up-switch v-model="value" activeColor="#07C160" @change="change"></up-switch>
</view>
<view class="flex justify-between padding-bottom padding-top solid-bottom">
<view>系统震动</view>
<up-switch v-model="value" activeColor="#07C160" @change="change"></up-switch>
</view>
</view>
</view>
</template>
<script setup>
import { ref } from 'vue'
const value = ref(false)
const change = (e) => {
console.log('change', e);
}
</script>
<style lang="scss" scoped>
.page {
min-height: 100vh;
background: #EBF2FC;
}
</style>