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="radioWrap"> <u-checkbox-group > <u-checkbox :checked="isCheck" shape="circle" label="已阅读并同意" :labelSize="12" @change="changeRadio">已阅读并同意</u-checkbox> </u-checkbox-group> <view class="privacyText"> <text @click="goPage(2)">《用户协议》</text>和 <text @click="goPage(1)">《隐私协议》</text> </view> </view> </template>
<script> export default { props: ['isCheck'], methods: { changeRadio(val) { console.log(val) this.$emit('changeRadio', val) }, async goPage(type) { this.$goPage('/pages/userCenter/login/privacyAgreement/privacyAgreement?type='+ type) } } } </script>
<style lang="scss" scoped> .radioWrap { display: flex; align-items: center; .privacyText { font-size: 24rpx; color: #888E94; text { color: $themC; } } } </style>
|