first commit

This commit is contained in:
wangxiaowei
2025-10-22 22:56:36 +08:00
commit 90c54df48b
302 changed files with 54312 additions and 0 deletions

30
components/header.vue Normal file
View File

@ -0,0 +1,30 @@
<template>
<view class="pb10 theme-bg">
<view class="status_bar"></view>
<view class="top_view"></view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
props: ['bcolor'],
watch:{
'bcolor':function(n,o){
if(n!=o){
console.log(n)
}
}
}
}
</script>
<style>
.s{
flex-shrink: 0;
}
</style>