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
| <template>
| <view class="content">
| <image class="background-image" src="https://rekandian.obs.cn-east-3.myhuaweicloud.com/admin/ff47844238df4ddf871d0e4ed50d5029.png" mode="widthFix"></image>
| <image class="logo-image" src="/static/icon/logo.png" mode="widthFix"></image>
| <button class="button button-submit" @click="$navTo('/pages/user/share/add?uid=' + uid)">加入看点</button>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| uid:""
| };
| },
| onLoad(o) {
| if(o.uid){
| this.uid = o.uid
| }
| },
| methods:{
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .content{
| position: relative;
| width: 100%;
| height: 100vh;
| display: flex;
| // justify-content: center;
| align-items: center;
| flex-direction: column;
| .background-image{
| width: 100%;
| position: absolute;
| top: 0;
| left: 0;
| }
| .logo-image{
| width: 200rpx;
| position: relative;
| z-index: 1;
| margin-top: 117rpx;
| }
| .button-submit{
| margin: 0 auto;
| margin-top: 940rpx;
| width: 635rpx;
| height: 96rpx;
| background: linear-gradient( 180deg, #FFE100 0%, #FFBF00 100%);
| border-radius: 58rpx;
| font-weight: 700;
| font-size: 35rpx;
| color: #FF2729;
| line-height: 35rpx;
| }
| }
| </style>
|
|