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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< 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" > { { vuex _user . nickname || '微信用户' } } < / view >
< view class = "info-mobile" > 手机号 : { { vuex _user . mobile || '' } } < / view >
< / view >
< / view >
< tabbar / >
< / view >
< / template >
< script >
import Tabbar from "@/component/Tabbar/Tabbar.vue" ;
export default {
components : {
Tabbar
} ,
data ( ) {
return { } ;
}
}
< / script >
< style lang = "scss" >
. container {
position : relative ;
. bkg {
width : 100 vw ;
z - index : 0 ;
height : 550 rpx ;
position : absolute ;
top : 0 ;
left : 0 ;
}
. top {
padding : 0 25 rpx ;
. avatar {
}
}
}
< / style >