合成照相馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
photo_uniapp/meeting/user/txt.vue

33 lines
542 B

<template>
<view class="container">
<meet-sticky :bg="bg">
<meet-navbar title="title" :isFixed="false"></meet-navbar>
</meet-sticky>
<view class="content"> </view>
</view>
</template>
<script>
export default {
data() {
return {
bg: "",
};
},
};
</script>
<style lang="scss" scoped>
.container{
height: 100%;
display: flex;
flex-direction: column;
}
.content {
padding: 24rpx;
background-color: #fff;
border-radius: 24rpx 24rpx 0 0;
flex: 1;
}
</style>