login.vue 1.9 KB
<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>