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.

52 lines
859 B

1 year ago
<template>
1 year ago
<view class="container">
<image class="bkg" mode="aspectFill" src="~@/static/me/bkg.png"></image>
<view class="top">
<image class="avatar" mode="aspectFit" src="http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg"></image>
<view class="info">
<view class="info-name">我的</view>
<view class="info-mobile">手机号18888888888</view>
</view>
</view>
1 year ago
<tabbar />
</view>
</template>
<script>
import Tabbar from "@/component/Tabbar/Tabbar.vue";
export default {
components: {
Tabbar
},
data() {
return {};
}
}
</script>
<style lang="scss">
1 year ago
.container {
position: relative;
.bkg {
width: 100vw;
z-index: 0;
height: 550rpx;
position: absolute;
top: 0;
left: 0;
}
1 year ago
1 year ago
.top {
padding: 0 25rpx;
.avatar {
}
}
}
1 year ago
</style>