login.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. <u-popup v-model="show" mode="center" :mask-close-able='false'>
  51. <view class="" style="position: relative;">
  52. <image style="width: 500rpx;height: 477rpx;" src="/static/images/tan.png" mode=""></image>
  53. <!-- @getphonenumber="tologin1" -->
  54. <button open-type="getPhoneNumber" class="button1" >
  55. 绑定手机号
  56. </button>
  57. </view>
  58. </u-popup>
  59. </view>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {
  65. checked: false,
  66. show: true,
  67. };
  68. },
  69. methods: {
  70. //复选框
  71. checkboxGroupChange(e) {
  72. console.log(e);
  73. },
  74. // 跳转到协议
  75. toxieyi() {
  76. uni.navigateTo({
  77. url: '/pageA/xieyi'
  78. })
  79. },
  80. //跳转到隐私
  81. toyinsi() {
  82. uni.navigateTo({
  83. url: '/pageA/yinsi'
  84. })
  85. },
  86. toindex() {
  87. if (!this.checked) {
  88. this.$u.toast('请勾选协议')
  89. return
  90. }
  91. uni.switchTab({
  92. url: '/pages/index/index'
  93. })
  94. }
  95. }
  96. }
  97. </script>
  98. <style lang="scss">
  99. .button1 {
  100. width: 370rpx;
  101. height: 92rpx;
  102. background: rgba(143, 211, 243, 1);
  103. border-radius: 46rpx;
  104. text-align: center;
  105. font-size: 32rpx;
  106. font-family: PingFang SC;
  107. font-weight: 600;
  108. line-height: 92rpx;
  109. color: #FFFFFF;
  110. position: absolute;
  111. left: 70rpx;
  112. bottom: 32rpx;
  113. }
  114. ::v-deep .u-mode-center-box {
  115. background-color: rgba(255, 255, 255, 0) !important;
  116. }
  117. .page {
  118. padding: 0 24rpx;
  119. background-color: #F6F5FA;
  120. min-height: 100vh;
  121. border: 2rpx solid rgba(255, 255, 255, 0);
  122. }
  123. .button {
  124. width: 370rpx;
  125. height: 92rpx;
  126. background: rgba(143, 211, 243, 1);
  127. border-radius: 46rpx;
  128. text-align: center;
  129. line-height: 92rpx;
  130. font-size: 32rpx;
  131. font-family: PingFang SC;
  132. font-weight: 600;
  133. line-height: 52rpx;
  134. color: #FFFFFF;
  135. }
  136. .yinsi {
  137. margin: 46rpx 0 66rpx 0;
  138. justify-content: center;
  139. .enter {
  140. font-size: 26rpx;
  141. font-family: PingFang SC;
  142. font-weight: 600;
  143. line-height: 52rpx;
  144. color: #959595;
  145. }
  146. .xieyi {
  147. font-size: 26rpx;
  148. font-family: PingFang SC;
  149. font-weight: 600;
  150. line-height: 52rpx;
  151. color: #6C89FF;
  152. text-decoration: underline;
  153. // border-bottom: 2rpx solid #6C89FF;
  154. }
  155. }
  156. .content {
  157. width: 702rpx;
  158. height: 922rpx;
  159. background: rgba(255, 255, 255, 1);
  160. border-radius: 12rpx;
  161. padding: 28rpx 23rpx 38rpx;
  162. box-sizing: border-box;
  163. .top_title {
  164. font-size: 30rpx;
  165. font-family: PingFang SC;
  166. font-weight: 600;
  167. line-height: 42rpx;
  168. color: #000000;
  169. text-align: center;
  170. // opacity: 1;
  171. }
  172. .top_content {
  173. font-size: 24rpx;
  174. font-family: PingFang SC;
  175. font-weight: 400;
  176. line-height: 34rpx;
  177. color: #323337;
  178. margin: 22rpx 0 10rpx 0;
  179. }
  180. .bottom {
  181. width: 656rpx;
  182. height: 674rpx;
  183. background: #EDEDED;
  184. // opacity: 1;
  185. border-radius: 14rpx;
  186. padding: 22rpx 24rpx 50rpx;
  187. .title {
  188. font-size: 28rpx;
  189. font-family: PingFang SC;
  190. font-weight: 600;
  191. line-height: 40rpx;
  192. color: #323337;
  193. }
  194. .shuoming {
  195. font-size: 26rpx;
  196. font-family: PingFang SC;
  197. font-weight: 400;
  198. line-height: 36rpx;
  199. color: #323337;
  200. margin: 22rpx 0;
  201. }
  202. .tiaokuan {
  203. font-size: 26rpx;
  204. font-family: PingFang SC;
  205. font-weight: 500;
  206. line-height: 36rpx;
  207. color: #323337;
  208. }
  209. .content1 {
  210. font-size: 26rpx;
  211. font-family: PingFang SC;
  212. font-weight: 400;
  213. line-height: 52rpx;
  214. color: #323337;
  215. }
  216. }
  217. }
  218. .border {
  219. width: 128rpx;
  220. height: 128rpx;
  221. border: 2px solid #AB7BFF;
  222. border-radius: 50%;
  223. // opacity: 1;
  224. padding: 6;
  225. margin: 34rpx 0;
  226. }
  227. .quanxian {
  228. font-size: 32rpx;
  229. font-family: PingFang SC;
  230. font-weight: 600;
  231. line-height: 44rpx;
  232. color: #000000;
  233. // opacity: 1;
  234. }
  235. .info {
  236. font-size: 28rpx;
  237. font-family: PingFang SC;
  238. font-weight: 400;
  239. line-height: 40rpx;
  240. color: #959595;
  241. opacity: 1;
  242. margin: 10rpx 0 20rpx 0;
  243. }
  244. </style>