login.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="page">
  3. <view class="u-flex-col u-col-center">
  4. <view class="border">
  5. <image style="width: 116rpx;height: 116rpx;" src="" mode=""></image>
  6. </view>
  7. <view class="quanxian">
  8. 粉丝私域会员服务中心 申请获得以下权限
  9. </view>
  10. <view class="info">获得你的公开信息 (昵称、头像等)</view>
  11. </view>
  12. <view class="content">
  13. <view class="top_title">
  14. 粉丝私域会员服务中心用户协议及隐私政策
  15. </view>
  16. <view class="top_content">
  17. 感谢您使用“粉丝私域会员服务中心”小程序,为了让您有更好的使用体验并充分保障您的权益,请您详细阅读、充分理解以下各条款内容。
  18. </view>
  19. <view class="bottom">
  20. <view class="title">
  21. 粉丝私域会员服务中心用户协议
  22. </view>
  23. <view class="shuoming">
  24. 欢迎您使用“粉丝私域会员服务中心”并使用会员中心
  25. 服务。
  26. </view>
  27. <view class="tiaokuan">
  28. 【提示条款】
  29. </view>
  30. <view class="content1">
  31. 为了维护您自身权益,您在申请注册流程中采取进一步操作之前,请务必审慎阅读、充分理解《粉丝私域会员服务中心用户服务协议》(以下简称|“本协议”)与《隐私政策》的各条款内容,尤其是以加粗形式提示您注意的关于免除或者限制责任的条款、法律适用和争议解决条款。前述协议构成统一整体,您对本协议的接受即受全部条款的约束。此外,本协议各条款前所列索引关键词仅为帮助您理解该条款表达的主旨之用,不影响或限制本协议的含义或解
  32. </view>
  33. </view>
  34. </view>
  35. <view class="yinsi .u-flex-col u-col-center">
  36. <u-checkbox-group @change="checkboxGroupChange">
  37. <view class="u-flex" style="margin-bottom: 86rpx;">
  38. <u-checkbox shape="circle" v-model="checked" :name="1"></u-checkbox>
  39. <text class="enter">您同意并接受</text>
  40. <view class="xieyi">
  41. <text @click="toxieyi">《用户服务协议》</text>
  42. <text @click="toyinsi">《隐私政策》</text>
  43. </view>
  44. </view>
  45. </u-checkbox-group>
  46. <view @click="toindex" class="u-flex u-row-center button">
  47. 微信用户一键登录
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. checked: false,
  57. };
  58. },
  59. methods: {
  60. //复选框
  61. checkboxGroupChange(e) {
  62. console.log(e);
  63. },
  64. // 跳转到协议
  65. toxieyi(){
  66. uni.navigateTo({
  67. url:'/pageA/xieyi'
  68. })
  69. },
  70. //跳转到隐私
  71. toyinsi(){
  72. uni.navigateTo({
  73. url:'/pageA/yinsi'
  74. })
  75. },
  76. toindex(){
  77. if(!this.checked){
  78. this.$u.toast('请勾选协议')
  79. return
  80. }
  81. uni.switchTab({
  82. url:'/pages/index/index'
  83. })
  84. }
  85. }
  86. }
  87. </script>
  88. <style lang="scss">
  89. .page {
  90. padding: 0 24rpx;
  91. background-color: #F6F5FA;
  92. min-height: 100vh;
  93. border: 2rpx solid rgba(255, 255, 255, 0);
  94. }
  95. .button {
  96. width: 370rpx;
  97. height: 92rpx;
  98. background: rgba(143, 211, 243, 1);
  99. border-radius: 46rpx;
  100. text-align: center;
  101. line-height: 92rpx;
  102. font-size: 32rpx;
  103. font-family: PingFang SC;
  104. font-weight: 600;
  105. line-height: 52rpx;
  106. color: #FFFFFF;
  107. }
  108. .yinsi {
  109. margin: 46rpx 0 66rpx 0;
  110. justify-content: center;
  111. .enter {
  112. font-size: 26rpx;
  113. font-family: PingFang SC;
  114. font-weight: 600;
  115. line-height: 52rpx;
  116. color: #959595;
  117. }
  118. .xieyi {
  119. font-size: 26rpx;
  120. font-family: PingFang SC;
  121. font-weight: 600;
  122. line-height: 52rpx;
  123. color: #6C89FF;
  124. text-decoration: underline;
  125. // border-bottom: 2rpx solid #6C89FF;
  126. }
  127. }
  128. .content {
  129. width: 702rpx;
  130. height: 922rpx;
  131. background: rgba(255, 255, 255, 1);
  132. border-radius: 12rpx;
  133. padding: 28rpx 23rpx 38rpx;
  134. box-sizing: border-box;
  135. .top_title {
  136. font-size: 30rpx;
  137. font-family: PingFang SC;
  138. font-weight: 600;
  139. line-height: 42rpx;
  140. color: #000000;
  141. text-align: center;
  142. // opacity: 1;
  143. }
  144. .top_content {
  145. font-size: 24rpx;
  146. font-family: PingFang SC;
  147. font-weight: 400;
  148. line-height: 34rpx;
  149. color: #323337;
  150. margin: 22rpx 0 10rpx 0;
  151. }
  152. .bottom {
  153. width: 656rpx;
  154. height: 674rpx;
  155. background: #EDEDED;
  156. // opacity: 1;
  157. border-radius: 14rpx;
  158. padding: 22rpx 24rpx 50rpx;
  159. .title {
  160. font-size: 28rpx;
  161. font-family: PingFang SC;
  162. font-weight: 600;
  163. line-height: 40rpx;
  164. color: #323337;
  165. }
  166. .shuoming {
  167. font-size: 26rpx;
  168. font-family: PingFang SC;
  169. font-weight: 400;
  170. line-height: 36rpx;
  171. color: #323337;
  172. margin: 22rpx 0;
  173. }
  174. .tiaokuan {
  175. font-size: 26rpx;
  176. font-family: PingFang SC;
  177. font-weight: 500;
  178. line-height: 36rpx;
  179. color: #323337;
  180. }
  181. .content1 {
  182. font-size: 26rpx;
  183. font-family: PingFang SC;
  184. font-weight: 400;
  185. line-height: 52rpx;
  186. color: #323337;
  187. }
  188. }
  189. }
  190. .border {
  191. width: 128rpx;
  192. height: 128rpx;
  193. border: 2px solid #AB7BFF;
  194. border-radius: 50%;
  195. // opacity: 1;
  196. padding: 6;
  197. margin: 34rpx 0;
  198. }
  199. .quanxian {
  200. font-size: 32rpx;
  201. font-family: PingFang SC;
  202. font-weight: 600;
  203. line-height: 44rpx;
  204. color: #000000;
  205. // opacity: 1;
  206. }
  207. .info {
  208. font-size: 28rpx;
  209. font-family: PingFang SC;
  210. font-weight: 400;
  211. line-height: 40rpx;
  212. color: #959595;
  213. opacity: 1;
  214. margin: 10rpx 0 20rpx 0;
  215. }
  216. </style>