123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <script>
- export default {
- globalData: {
- userType: -1,
- tabIndex: 0,
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "@/uni_modules/uview-ui/index.scss";
- .content{
- .title-box {
- position: relative;
- padding-bottom: 80rpx;
- width: 100%;
- height: 344rpx;
- color: white;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background-size: 100% 100%;
-
- .title{
- width: 100%;
- height: 50rpx;
- height: fit-content;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
-
- .container-box{
- position: relative;
- margin-top: -120rpx;
- padding: 40rpx 30rpx;
- width: 100%;
- height: fit-content;
- // display: flex;
- // flex-direction: column;
- // align-items: center;
- background: #f0f7ff;
- border-radius: 60rpx 60rpx 0 0;
- z-index: 2;
- }
- }
- </style>
|