12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="page">
- <navbar-line>
- <image src="" mode="" class="logo"></image>
- </navbar-line>
- <view class="content">
-
- </view>
- </view>
- </template>
- <script>
- import navbarLine from '@/components/navbar-line.vue';
- export default {
- components:{
- navbarLine
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #fff;
- }
- .logo{
- width: 141rpx;
- height: 36rpx;
- font-size: 34rpx;
- font-family: PingFang SC;
- font-weight: bold;
- background-color: #333333;
- line-height: 37rpx;
- margin-left: 30rpx;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- .content{
- height: 1000rpx;
- background-color: rgba(0,0,0,.6)
- }
-
- </style>
|