no message

This commit is contained in:
2025-08-13 00:05:08 +08:00
parent a41db76b4b
commit 63404c0fb5
16 changed files with 986 additions and 234 deletions
+35
View File
@@ -0,0 +1,35 @@
<template>
<view :style="{ height: safeHeight + 'px',width:width + 'px',backgroundColor:bgColor}"
class="top-view">
</view>
</template>
<script>
import {screen} from './global.js'
export default {
data() {
return {
safeHeight:screen.top,
width:screen.width
}
},
props: {
bgColor:{
type:String,
default:'#fff'
}
},
onShow(){
// safeHeight:screen.top,
// width:screen.width,
},
mounted(){
this.width = screen.width;
}
}
</script>
<style lang="scss" scoped>
.top-view{
display: flex;
}
</style>