详情小程序
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.

61 lines
1016 B

  1. <template>
  2. <view class="content">
  3. <image class="img" src="../../static/images/register.png"></image>
  4. <button class="btn" hover-class="lf-opacity">点击授权注册</button>
  5. <view class="desc">
  6. <text>已阅读并同意</text>
  7. <text class="lf-color-primary">相亲交友服务协议</text>
  8. <text></text>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data(){
  15. return {
  16. }
  17. },
  18. onLoad(){
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style>
  25. page{
  26. overflow: hidden;
  27. }
  28. </style>
  29. <style lang="scss" scoped="scoped">
  30. .content{
  31. width: 750rpx;
  32. height: max-content;
  33. box-sizing: border-box;
  34. padding: 30rpx 32rpx;
  35. display: flex;
  36. justify-content: center;
  37. flex-direction: column;
  38. align-items: center;
  39. .img{
  40. width: 686rpx;
  41. height: 457rpx;
  42. }
  43. .btn{
  44. margin-top: 60rpx;
  45. width: 686rpx;
  46. background-color: #e21196;
  47. border-radius: 12rpx;
  48. color: #FFFFFF;
  49. }
  50. .desc{
  51. margin-top: 30rpx;
  52. font-size: 24rpx;
  53. color: #777777;
  54. }
  55. }
  56. </style>