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.
63 lines
1.3 KiB
63 lines
1.3 KiB
3 years ago
|
<template>
|
||
|
<view class="service-page">
|
||
|
<view class="code-box">
|
||
|
<image src="https://download.cyjyyjy.com/service-ercode.jpg" show-menu-by-longpress=""></image>
|
||
|
<view class="tips">添加社群管家,进入社群,海量资源与福利尽在云生态</view>
|
||
|
<view class="btn">长按识别二维码添加小管家</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default{
|
||
|
data(){
|
||
|
return{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less">
|
||
|
.service-page{
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
background: #eee;
|
||
|
padding-top: 90rpx;
|
||
|
.code-box{
|
||
|
width: 670rpx;
|
||
|
height: 988rpx;
|
||
|
background: url('https://download.cyjyyjy.com/bg-service.png') no-repeat center;
|
||
|
background-size: 100% 100%;
|
||
|
margin: 0rpx auto;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
padding-top: 142rpx;
|
||
|
image{
|
||
|
width: 436rpx;
|
||
|
height: 436rpx;
|
||
|
}
|
||
|
.tips{
|
||
|
width: 432rpx;
|
||
|
font-size: 36rpx;
|
||
|
font-weight: 600;
|
||
|
line-height: 50rpx;
|
||
|
color: #1D1D1D;
|
||
|
text-align: center;
|
||
|
margin: 42rpx 0;
|
||
|
}
|
||
|
.btn{
|
||
|
min-width: 460rpx;
|
||
|
height: 80rpx;
|
||
|
line-height: 80rpx;
|
||
|
text-align: center;
|
||
|
color: #fff;
|
||
|
font-size: 32rpx;
|
||
|
background: linear-gradient(134deg, #FFA782 0%, #FF6D31 100%);
|
||
|
border-radius: 40rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|