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.

116 lines
2.0 KiB

This file contains ambiguous Unicode characters!

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: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
z-index: 9999;
.center-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 622rpx;
padding: 32rpx;
border-radius: 16rpx;
opacity: 1;
background: rgba(255, 255, 255, 1);
min-height: 310rpx;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-between;
.logo {
position: absolute;
top: -48rpx;
left: 50%;
transform: translateX(-50%);
width: 136rpx;
height: 144rpx;
}
.close {
position: absolute;
top: 24rpx;
right: 24rpx;
width: 48rpx;
height: 48rpx;
}
.title {
margin-top: 66rpx;
text-align: center;
color: rgba(0, 0, 0, 1);
font-size: 36rpx;
font-weight: 500;
font-family: 'PingFang SC';
letter-spacing: 0.6rpx;
}
.content {
margin: 40rpx 26rpx;
font-size: 26rpx;
font-family: 'PingFang SC';
letter-spacing: 0.6rpx;
color: #343434;
text {
font-size: 32rpx;
letter-spacing: 0.6rpx;
color: rgba(69, 108, 255, 1);
}
}
.btn-group {
display: flex;
justify-content: center;
padding: 0 16rpx;
.invite-specia {
width: 210rpx;
height: 88rpx;
line-height: 88rpx;
border-radius: 16rpx;
text-align: center;
background: linear-gradient(-46.8deg, rgba(63, 101, 255, 1) 0%, rgba(97, 141, 255, 1) 100%);
color: #fff;
}
}
}
}
</style>