61 lines
849 B
Vue
61 lines
849 B
Vue
<template>
|
|
<view class="content">
|
|
<view class="navLeft align-center" :style="{top:$sys().statusBarHeight+'px'}" @tap="$c.back(1)">
|
|
<uni-icons type="left" color="#000000"></uni-icons>
|
|
|
|
</view>
|
|
|
|
<view class="title1">VIP福利</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
.content {
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
box-sizing: border-box;
|
|
background: #F7F7F7;
|
|
}
|
|
|
|
.navLeft {
|
|
position: fixed;
|
|
left: 30rpx;
|
|
height: 44px;
|
|
z-index: 100;
|
|
|
|
>view {
|
|
font-weight: 400;
|
|
font-size: 50rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
|
|
.title1 {
|
|
width: 100%;
|
|
top: 108rpx;
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 34rpx;
|
|
justify-content: center;
|
|
color: black;
|
|
z-index: 50;
|
|
}
|
|
|
|
</style>
|