时空网前端
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.

79 lines
1.6 KiB

  1. <template>
  2. <view>
  3. <view class="lf-row-center lf-flex-column box">
  4. <image class="img"></image>
  5. <view class="lf-m-t-10 lf-font-32">游客jdsfbuskdnko</view>
  6. <button class="btn">
  7. <u-icon name="weixin-fill" color="#ffffff" size="60" class="lf-text-vertical"></u-icon>
  8. <text class="lf-m-l-20">绑定微信</text>
  9. </button>
  10. <view class="lf-m-t-40 lf-font-28">暂不绑定继续操作</view>
  11. </view>
  12. <!-- 服务条款 -->
  13. <view class="fixed-bottom">
  14. <checkbox class="lf-text-vertical" :checked="checked"></checkbox>
  15. <text class="lf-m-l-10 lf-font-24 lf-color-gray">
  16. <text>请认真阅读并同意</text>
  17. <text class="highlight" @click="enterAgree">时空网协议</text>
  18. <text>在小程序下单购买即表示您已默认同意</text>
  19. <text class="highlight" @click="enterAgree">时空网协议</text>
  20. <text>的所有条款</text>
  21. </text>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data(){
  28. return {
  29. checked: true
  30. }
  31. },
  32. onLoad(){
  33. },
  34. methods: {
  35. }
  36. }
  37. </script>
  38. <style>
  39. page{
  40. overflow: hidden;
  41. }
  42. </style>
  43. <style lang="scss" scoped="scoped">
  44. .box{
  45. padding: 60rpx 32rpx;
  46. width: 750rpx;
  47. height: auto;
  48. box-sizing: border-box;
  49. .img{
  50. width: 180rpx;
  51. height: 180rpx;
  52. border-radius: 50%;
  53. background-color: #EEEEEE;
  54. }
  55. .btn{
  56. background-color: #09BB07;
  57. color: #FFFFFF;
  58. width: 100%;
  59. height: 88rpx;
  60. border-radius: 42rpx;
  61. font-size: 32rpx;
  62. line-height: 88rpx;
  63. margin-top: 80rpx;
  64. }
  65. }
  66. .fixed-bottom{
  67. position: fixed;
  68. bottom: 60rpx;
  69. left: 0;
  70. padding: 0 32rpx;
  71. .highlight{
  72. color: #1e90ff;
  73. }
  74. }
  75. </style>