瑶都万能墙
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.

98 lines
1.5 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. <template>
  2. <uv-popup ref="popup" :round="30">
  3. <view class="page">
  4. <view class="UniversalWall">
  5. <view class="look">
  6. <view class="logo">
  7. <image src="/static/image/logo.jpg" mode="aspectFill"></image>
  8. </view>
  9. <view class="wall">
  10. 瑶都万能墙
  11. </view>
  12. <view class="invite">
  13. <button open-type="share">
  14. <uv-icon name="attach"></uv-icon>
  15. 邀请好友
  16. </button>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </uv-popup>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {}
  27. },
  28. methods: {
  29. open() {
  30. this.$refs.popup.open('bottom')
  31. },
  32. }
  33. }
  34. </script>
  35. <style scoped lang="scss">
  36. .page {
  37. height: 250rpx;
  38. border-radius: 15rpx;
  39. .UniversalWall {
  40. height: 100%;
  41. width: 100%;
  42. background-color: rgb(247,247,249);
  43. border-radius: 15rpx;
  44. .look {
  45. display: flex;
  46. .wall {
  47. font-size: 30rpx;
  48. letter-spacing: 2px;
  49. color: black;
  50. margin: 70rpx 0rpx;
  51. }
  52. .invite {
  53. margin-top: 45rpx;
  54. margin-left: auto;
  55. margin-right: 10rpx;
  56. button{
  57. background-color: white;
  58. font-size: 30rpx;
  59. display: flex;
  60. width: 200rpx;
  61. justify-content: center;
  62. align-items: center;
  63. border-radius: 20rpx !important;
  64. padding: 0 !important;
  65. margin: 0 !important;
  66. }
  67. }
  68. .logo {
  69. width: 120rpx;
  70. height: 120rpx;
  71. margin: 30rpx;
  72. image {
  73. width: 100%;
  74. height: 100%;
  75. border-radius: 15rpx;
  76. }
  77. }
  78. }
  79. }
  80. .title {}
  81. }
  82. </style>