|
|
@ -41,7 +41,14 @@ |
|
|
|
|
|
|
|
<text @click="$refs.popup.open('user_xy_three')">《全球隐私声明3》</text> |
|
|
|
|
|
|
|
<text @click="$refs.popup.open('user_xy_four')">《全球隐私声明4》</text> |
|
|
|
<!-- <text @click="$refs.popup.open('user_xy_four')">《全球隐私声明4》</text> --> |
|
|
|
|
|
|
|
<text |
|
|
|
@click="$refs.checkboxPopup.open('bottom')" |
|
|
|
> |
|
|
|
查看40项协议 |
|
|
|
</text> |
|
|
|
|
|
|
|
</view> |
|
|
|
</uv-checkbox-group> |
|
|
|
</view> |
|
|
@ -59,6 +66,17 @@ |
|
|
|
:keys="keys" |
|
|
|
@success="checkboxValue = [1]"/> --> |
|
|
|
|
|
|
|
|
|
|
|
<uv-popup ref="checkboxPopup" |
|
|
|
:round="30"> |
|
|
|
<view class="checkboxPopupContent"> |
|
|
|
<view @click="$refs.popup.open('user_xy_four')" |
|
|
|
v-for="item in 40" |
|
|
|
:key="item" |
|
|
|
>《全球隐私声明{{item + 1}}》</view> |
|
|
|
</view> |
|
|
|
</uv-popup> |
|
|
|
|
|
|
|
<configPopup ref="popup"/> |
|
|
|
|
|
|
|
</view> |
|
|
@ -150,9 +168,13 @@ |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
.checkbox{ |
|
|
|
margin-top: 460rpx; |
|
|
|
margin-top: 470rpx; |
|
|
|
view{ |
|
|
|
line-height: 50rpx; |
|
|
|
} |
|
|
|
text{ |
|
|
|
color: #1e52ff; |
|
|
|
line-height: 50rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
.uni-color-btn{ |
|
|
@ -165,4 +187,13 @@ |
|
|
|
font-size: 26rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
.checkboxPopupContent{ |
|
|
|
padding: 40rpx; |
|
|
|
display: flex; |
|
|
|
flex-wrap: wrap; |
|
|
|
view{ |
|
|
|
color: #1e52ff; |
|
|
|
line-height: 50rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |