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.
|
|
|
|
<template>
|
|
|
|
|
<view class="cotainer">
|
|
|
|
|
<view class="showinfo">
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view>
|
|
|
|
|
<text>红金</text>
|
|
|
|
|
<text>黑金</text>
|
|
|
|
|
<text>阳澄风物</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view>问题处理专属通道</view>
|
|
|
|
|
<view>
|
|
|
|
|
<!-- <u-image :src="require('@/static/share.jpg')" width="450" height="450"></u-image> -->
|
|
|
|
|
<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;
|
|
|
|
|
>text{
|
|
|
|
|
padding:0 20rpx;
|
|
|
|
|
border-right:1px solid #333;
|
|
|
|
|
&:last-child{
|
|
|
|
|
border-right:none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
u-image{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top:30rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|