|
|
- <template>
- <uv-popup ref="popup" :round="30">
-
-
- <view class="page">
- <view class="UniversalWall">
- <view class="look">
- <view class="logo">
- <image src="/static/image/logo.jpg" mode="aspectFill"></image>
- </view>
- <view class="wall">
- 瑶都万能墙
- </view>
- <view class="invite">
- <button open-type="share">
- <uv-icon name="attach"></uv-icon>
- 邀请好友
- </button>
- </view>
- </view>
- </view>
- </view>
-
-
- </uv-popup>
- </template>
-
- <script>
- export default {
- data() {
- return {}
- },
- methods: {
- open() {
- this.$refs.popup.open('bottom')
- },
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page {
- height: 250rpx;
- border-radius: 15rpx;
- .UniversalWall {
- height: 100%;
- width: 100%;
- background-color: rgb(247,247,249);
- border-radius: 15rpx;
- .look {
- display: flex;
- .wall {
- font-size: 30rpx;
- letter-spacing: 2px;
- color: black;
- margin: 70rpx 0rpx;
- }
-
- .invite {
- margin-top: 45rpx;
- margin-left: auto;
- margin-right: 10rpx;
- button{
- background-color: white;
- font-size: 30rpx;
- display: flex;
- width: 200rpx;
- justify-content: center;
- align-items: center;
- border-radius: 20rpx !important;
- padding: 0 !important;
- margin: 0 !important;
- }
-
-
-
- }
- .logo {
- width: 120rpx;
- height: 120rpx;
- margin: 30rpx;
-
- image {
- width: 100%;
- height: 100%;
- border-radius: 15rpx;
- }
- }
- }
- }
-
-
-
-
-
-
- .title {}
- }
- </style>
|