login.vue
1.9 KB
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
<template>
<view class="">
<view class="head">
<u-navbar title="首页" :autoBack="true" leftIconSize="0rpx">
</u-navbar>
</view>
<view class="name">
村镇生物质资源
数字化服务平台
</view>
<view class="img">
<img src="/static/ic_1@2x.png" alt="">
</view>
<view class="login flexC">
登录
</view>
<view class="noLogin" @click="toreturn">
暂不登录
</view>
<view class="title">
登录代表您已同意同意 《用户协议》《隐私政策》
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
toreturn() {
uni.navigateBack()
}
}
}
</script>
<style lang="scss">
page {
background: linear-gradient(-44.6deg, rgba(25,204,205,1) 0%, rgba(99,217,218,1) 100%);
}
.u-navbar__content.data-v-75dad532 {
background: linear-gradient(-44.6deg, rgba(25,204,205,1) 0%, rgba(99,217,218,1) 100%) !important;
}
.u-status-bar {
background: linear-gradient(-44.6deg, rgba(25,204,205,1) 0%, rgba(99,217,218,1) 100%) !important;
}
.u-navbar__content__title {
color: #fff !important;
}
.name {
width: 364rpx;
height: 128rpx;
opacity: 1;
color: rgba(255,255,255,1);
font-size: 52rpx;
font-weight: 700;
margin: 384rpx auto;
}
.img {
position: absolute;
top: 200rpx;
left: -104rpx;
width: 592.2rpx;
height: 534.66rpx;
}
.login {
width: 306rpx;
height: 92rpx;
border-radius: 172rpx;
opacity: 1;
background: linear-gradient(270deg, rgba(207,255,255,1) 0%, rgba(255,255,255,1) 100%);
color: rgba(98,205,206,1);
font-size: 32rpx;
// font-weight: 700;
margin: 0 auto;
}
.noLogin {
color: rgba(255,255,255,1);
font-size: 28rpx;
text-align: center;
margin-top: 24rpx;
}
.title {
color: rgba(255,255,255,1);
font-size: 24rpx;
margin-top: 144rpx;
text-align: center;
}
</style>