74 lines
1.3 KiB
Vue
74 lines
1.3 KiB
Vue
<template>
|
|
|
|
<view class="box">
|
|
<view class="li">
|
|
<u--image src="/static/test/JM.png" width="690rpx" height="200rpx" style="position: absolute;" />
|
|
<view class="btn">
|
|
我是居民用户
|
|
</view>
|
|
</view>
|
|
<view class="li" style="margin-top: 50rpx;" @click="navgo('/pages/test/Information')">
|
|
<u--image src="/static/test/NM.png" width="690rpx" height="200rpx" style="position: absolute;" />
|
|
<view class="btn">
|
|
我是农民用户
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
navgo(url) {
|
|
uni.navigateTo({
|
|
url
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped>
|
|
.box {
|
|
width: 750rpx;
|
|
height: 1624rpx;
|
|
background-image: url('/static/test/SYBJ.png');
|
|
background-size: 100% 100%;
|
|
padding-top: 500rpx;
|
|
}
|
|
|
|
.bg {
|
|
width: 750rpx;
|
|
height: 660rpx;
|
|
background-image: url('/static/test/bg.png');
|
|
background-size: 100% 100%;
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
.li {
|
|
margin: 0rpx auto;
|
|
width: 690rpx;
|
|
height: 200rpx;
|
|
background-size: 100% 100%;
|
|
position: relative;
|
|
|
|
.btn {
|
|
z-index: 999;
|
|
position: absolute;
|
|
width: 287rpx;
|
|
height: 76rpx;
|
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
|
opacity: 1;
|
|
border: 2rpx solid #FF5E0C;
|
|
text-align: center;
|
|
line-height: 76rpx;
|
|
color: #FF5E0C;
|
|
font-size: 34rpx;
|
|
right: 50rpx;
|
|
bottom: 50rpx;
|
|
|
|
}
|
|
}
|
|
</style> |