|
@@ -9,39 +9,25 @@
|
|
|
ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
|
|
ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
|
|
|
</text>
|
|
</text>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="data-but" >
|
|
|
|
|
|
|
+ <view class="data-but" @click="goToLogin" >
|
|
|
<!-- 开始ICOCO-->
|
|
<!-- 开始ICOCO-->
|
|
|
<image class="but-img" src="/static/img/login/login-but.png" mode="aspectFill"></image>
|
|
<image class="but-img" src="/static/img/login/login-but.png" mode="aspectFill"></image>
|
|
|
</view>
|
|
</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" @click="setIsCheck">
|
|
|
|
|
- <text class="text-item sys-size-24 sys-color-white">我已阅读并同意</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="agreement-text ">
|
|
|
|
|
- <text class="text-item sys-size-24 sys-color-green">《用户协议》</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="agreement-text ">
|
|
|
|
|
- <text class="text-item sys-size-24 sys-color-white">和</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="agreement-text ">
|
|
|
|
|
- <text class="text-item sys-size-24 sys-color-green">《隐私政策》</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- </view>
|
|
|
|
|
|
|
+ <login-agreement></login-agreement>
|
|
|
|
|
+
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
-import tools from "@/service/tools";
|
|
|
|
|
|
|
+import LoginAgreement from "@/pages/login/model/loginAgreement";
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
name: "loginContent",
|
|
name: "loginContent",
|
|
|
- components: {},
|
|
|
|
|
|
|
+ components: {LoginAgreement},
|
|
|
props: {},
|
|
props: {},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
- isCheck:false,
|
|
|
|
|
windowWidth:750
|
|
windowWidth:750
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -55,8 +41,10 @@ export default {
|
|
|
// console.log('width:'+width)
|
|
// console.log('width:'+width)
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
- setIsCheck(){
|
|
|
|
|
- this.isCheck=!this.isCheck
|
|
|
|
|
|
|
+ goToLogin(){
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ 'url':'/pages/login/localPhoneLogin'
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -125,26 +113,9 @@ export default {
|
|
|
height: 88rpx;
|
|
height: 88rpx;
|
|
|
border-radius: 200rpx;
|
|
border-radius: 200rpx;
|
|
|
/*width: calc(100vw - 156rpx);*/
|
|
/*width: calc(100vw - 156rpx);*/
|
|
|
|
|
+ margin-bottom: 40rpx;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.data-agreement{
|
|
|
|
|
- margin-top: 40rpx;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- flex-direction:row;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- align-items: 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>
|