zhaojs
2023-04-27 0ae224b305087a8d1be405445d06621a07f78bbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<template>
    <view>
        <view class="main_con">
            <image class="bg" src="https://img.ushopvip.com/fx/invitebg.jpeg"></image>
            <view class="ifre_contant uni-row" >
                <view class="flex-item-top  uni-bg-red" >
 
                    A
                </view>
                <view class="flex-item-bottom uni-flex" >
 
                    <view class="share_con">
                        <view>
                            <view class="uni-flex uni-row" style=" -webkit-justify-content: space-between;justify-content: space-between;">
                                <button type="primary" class="no-border confirm-btn confirm-btn-copy">复制链接</button>
                                <button type="primary" class="no-border confirm-btn confirm-btn-share">分享海报</button>
                            </view>
                            
                        </view>
                        <view class="uni-share-text">*好友使用你分享的链接成功注册后,Ta将成为你的粉丝,粉丝下单,你也可以获得收益哦!</view>
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
 
            }
        },
        methods: {
 
        }
    }
</script>
 
<style>
    .main_con {
        margin: 0 15px 0 15px;
    }
 
    .bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        filter: blur(1px);
        opacity: .3;
    }
 
    .ifre_contant {
        display: flex;
        flex-direction: column;
        flex: 0 0 100rpx;
        position: relative;
        align-content:space-between;
    }
 
    .flex-item {
        width: 100%;
        text-align: center;
    }
 
    .flex-item-top {
 
        height: 900rpx;
        text-align: center;
    }
    
    .flex-item-bottom {
        width: 100%;
        margin-top: 90rpx;
        height: 200rpx;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }
 
    .share_con {
        width: 100%;
        border-radius: 7px;
        background: #fff;
        
        padding: 30rpx 50rpx 30rpx 50rpx;
    }
    .confirm-btn{
        padding: 0 38upx;
        width: 40%;
        margin: 0;
        border-radius: 100px;
        height: 76upx;
        line-height: 76upx;
        font-size: 14px;
    }
    .confirm-btn-copy
    {
        background: #e7ea27;
    }
    .confirm-btn-share
    {
        background: #ff7a45;
    }
    .uni-share-text
    {
        color: #847070;
        font-size: 13px;
        margin-top: 10rpx;
    }
</style>