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 = "invite-box" >
< view class = "center-box" >
< view class = "close" @click ="$closeInvite" > × < / view >
< ! - - < view class = "title" > 邀请函 < / view > -- >
< view class = "content" >
< text > { { _specia } } < / text >
< / view >
< view class = "btn-group" > < view class = "invite-specia" @click ="$closeInvite" > 关 闭 < / view > < / view >
< / view >
< / view >
< / template >
< script >
export default {
name : 'GloblView' ,
props : {
_specia : String
} ,
data ( ) {
return { } ;
} ,
mounted ( ) {
// console.log('组件内推送的消息', this._specia);
}
} ;
< / script >
< style scoped lang = "scss" >
. invite - box {
position : fixed ;
top : 0 ;
left : 0 ;
width : 100 vw ;
height : 100 vh ;
background : rgba ( 0 , 0 , 0 , 0.5 ) ;
z - index : 9999 ;
. center - box {
position : absolute ;
top : 50 % ;
left : 50 % ;
transform : translate ( - 50 % , - 50 % ) ;
width : 622 rpx ;
padding : 32 rpx ;
border - radius : 16 rpx ;
opacity : 1 ;
background : rgba ( 255 , 255 , 255 , 1 ) ;
min - height : 310 rpx ;
display : flex ;
flex - direction : column ;
align - items : stretch ;
justify - content : space - between ;
. logo {
position : absolute ;
top : - 48 rpx ;
left : 50 % ;
transform : translateX ( - 50 % ) ;
width : 136 rpx ;
height : 144 rpx ;
}
. close {
position : absolute ;
top : 24 rpx ;
right : 24 rpx ;
width : 48 rpx ;
height : 48 rpx ;
}
. title {
margin - top : 66 rpx ;
text - align : center ;
color : rgba ( 0 , 0 , 0 , 1 ) ;
font - size : 36 rpx ;
font - weight : 500 ;
font - family : 'PingFang SC' ;
letter - spacing : 0.6 rpx ;
}
. content {
margin : 40 rpx 26 rpx ;
font - size : 26 rpx ;
font - family : 'PingFang SC' ;
letter - spacing : 0.6 rpx ;
color : # 343434 ;
text {
font - size : 32 rpx ;
letter - spacing : 0.6 rpx ;
color : rgba ( 69 , 108 , 255 , 1 ) ;
}
}
. btn - group {
display : flex ;
justify - content : center ;
padding : 0 16 rpx ;
. invite - specia {
width : 210 rpx ;
height : 88 rpx ;
line - height : 88 rpx ;
border - radius : 16 rpx ;
text - align : center ;
background : linear - gradient ( - 46.8 deg , rgba ( 63 , 101 , 255 , 1 ) 0 % , rgba ( 97 , 141 , 255 , 1 ) 100 % ) ;
color : # fff ;
}
}
}
}
< / style >