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