|
@@ -4,15 +4,22 @@
|
|
|
|
|
|
|
|
<view class="data">
|
|
<view class="data">
|
|
|
<view class="data-img">
|
|
<view class="data-img">
|
|
|
- <image class="img" src="@/static/img/login/2.jpg" mode="aspectFill"></image>
|
|
|
|
|
|
|
+ <image class="img" src="@/static/img/common/logo.png" mode="aspectFill"></image>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="data-text">
|
|
<view class="data-text">
|
|
|
ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
|
|
ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
|
|
|
</view>
|
|
</view>
|
|
|
<view class="data-but">
|
|
<view class="data-but">
|
|
|
- <view class="but-text">开始ICOCO</view>
|
|
|
|
|
|
|
+<!-- 开始ICOCO-->
|
|
|
|
|
+ <image class="but-img" src="@/static/img/login/login-but.png" mode="aspectFill"></image>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="data-agreement">
|
|
|
|
|
+ <image class="agreement-img" @click="setIsCheck" :src="'/static/img/login/check-'+(isCheck?'ok':'no')+'.png'" mode="aspectFill"></image>
|
|
|
|
|
+ <view class="agreement-text sys-size-24 sys-color-white">我已阅读并同意</view>
|
|
|
|
|
+ <view class="agreement-text sys-size-24 sys-color-green">《用户协议》</view>
|
|
|
|
|
+ <view class="agreement-text sys-size-24 sys-color-white">和</view>
|
|
|
|
|
+ <view class="agreement-text sys-size-24 sys-color-green">《隐私政策》</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="data-agreement"></view>
|
|
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -24,13 +31,19 @@ export default {
|
|
|
components: {},
|
|
components: {},
|
|
|
props: {},
|
|
props: {},
|
|
|
data() {
|
|
data() {
|
|
|
- return {}
|
|
|
|
|
|
|
+ return {
|
|
|
|
|
+ isCheck:false
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
watch: {},
|
|
watch: {},
|
|
|
mounted() {
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
},
|
|
|
- methods: {}
|
|
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ setIsCheck(){
|
|
|
|
|
+ this.isCheck=!this.isCheck
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
@@ -57,13 +70,14 @@ export default {
|
|
|
left: 0;
|
|
left: 0;
|
|
|
}
|
|
}
|
|
|
.content-data .data .data-img{
|
|
.content-data .data .data-img{
|
|
|
|
|
+ width: 100vw;
|
|
|
height: 124rpx;
|
|
height: 124rpx;
|
|
|
- border-radius: 24rpx;
|
|
|
|
|
}
|
|
}
|
|
|
.content-data .data-img .img{
|
|
.content-data .data-img .img{
|
|
|
- margin: auto auto;
|
|
|
|
|
|
|
+ margin-left: calc((100vw - 124rpx) / 2);
|
|
|
height: 124rpx;
|
|
height: 124rpx;
|
|
|
width: 124rpx;
|
|
width: 124rpx;
|
|
|
|
|
+ border-radius: 24rpx;
|
|
|
}
|
|
}
|
|
|
.content-data .data .data-text{
|
|
.content-data .data .data-text{
|
|
|
margin-top: 24rpx;
|
|
margin-top: 24rpx;
|
|
@@ -75,22 +89,39 @@ export default {
|
|
|
.content-data .data .data-but{
|
|
.content-data .data .data-but{
|
|
|
margin:64rpx 78rpx 0 78rpx ;
|
|
margin:64rpx 78rpx 0 78rpx ;
|
|
|
border-radius: 200rpx;
|
|
border-radius: 200rpx;
|
|
|
- background:#FFFFFF ;
|
|
|
|
|
- height: 88rpx;
|
|
|
|
|
- line-height: 88rpx;
|
|
|
|
|
-
|
|
|
|
|
|
|
+ /*background:#FFFFFF ;*/
|
|
|
|
|
+ /*height: 88rpx;*/
|
|
|
|
|
+ /*line-height: 88rpx;*/
|
|
|
|
|
+ /*color: #000000;*/
|
|
|
|
|
+ /*font-size: 28rpx;*/
|
|
|
|
|
+ /*font-weight: 600;*/
|
|
|
|
|
+ /*text-align: center;*/
|
|
|
|
|
+ /*mix-blend-mode: darken;*/
|
|
|
|
|
+ /*-webkit-background-clip: text;*/
|
|
|
|
|
+ /*-webkit-text-fill-color: transparent;*/
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
-.data-but .but-text{
|
|
|
|
|
- background: #000;
|
|
|
|
|
- color: #000;
|
|
|
|
|
- font-size: 28rpx;
|
|
|
|
|
- font-weight: 600;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
|
|
+.data-but .but-img{
|
|
|
height: 88rpx;
|
|
height: 88rpx;
|
|
|
- line-height: 88rpx;
|
|
|
|
|
- -webkit-background-clip: text;
|
|
|
|
|
- -webkit-text-fill-color: transparent;
|
|
|
|
|
|
|
+ border-radius: 200rpx;
|
|
|
|
|
+ width: calc(100vw - 156rpx);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.data-agreement{
|
|
|
|
|
+ margin-top: 40rpx;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+}
|
|
|
|
|
+.data-agreement .agreement-img{
|
|
|
|
|
+ width: 24rpx;
|
|
|
|
|
+ height: 24rpx;
|
|
|
|
|
+ border-radius: 4rpx;
|
|
|
|
|
+ margin-right: 6rpx;
|
|
|
|
|
+ /*border: 2rpx solid #FFFFFF;*/
|
|
|
|
|
+}
|
|
|
|
|
+.data-agreement .agreement-text{
|
|
|
|
|
+ line-height: 24rpx;
|
|
|
|
|
+ margin-left: 6rpx;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
</style>
|