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.

62 lines
1.1 KiB

2 years ago
<template>
<view class="cotainer">
<view class="showinfo">
<view class="content">
<view>
铂金款商品
</view>
<view>客服专属通道</view>
<view>
1 year ago
<!-- <u-image :src="require('@/static/share.jpg')" width="450" height="450"></u-image> -->
2 years ago
<view class="">
扫码添加企业微信
</view>
</view>
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss">
.showinfo {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #fff;
z-index: 9999999;
display: flex;
align-items: center;
justify-content: center;
.content {
width: 90%;
height:100vh;
padding:40rpx 0;
box-sizing: border-box;
background: #fff;
overflow: scroll;
font-size: 40rpx;
font-weight: bold;
text-align: center;
>view{
margin-bottom:20rpx;
&:first-child{
font-size: 46rpx;
padding:30rpx;
padding-bottom:10rpx;
display: inline-block;
border-bottom:1px solid #333;
}
}
u-image{
display: inline-block;
margin-top:30rpx;
}
}
}
</style>