<template>
|
|
<view class="page">
|
|
|
|
<image src="/static/image/bg/bg1x2.png"
|
|
class="page-bg"
|
|
mode="aspectFill"></image>
|
|
|
|
<image src="/static/image/bg/logolist2.png"
|
|
class="logo"
|
|
mode="widthFix"></image>
|
|
|
|
<view class="btn-list">
|
|
<view class="next-btn-2"
|
|
@click="">
|
|
保存
|
|
</view>
|
|
|
|
<view class="next-btn"
|
|
@click="next">
|
|
下一页
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page{
|
|
.logo{
|
|
width: 600rpx;
|
|
margin: 150rpx 75rpx;
|
|
}
|
|
.btn-list{
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 40rpx;
|
|
width: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.next-btn{
|
|
width: 220rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
padding: 16rpx 90rpx;
|
|
background-color: $uni-color;
|
|
border-radius: 30rpx;
|
|
}
|
|
.next-btn-2{
|
|
width: 220rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
padding: 16rpx 90rpx;
|
|
background-color: $uni-color-primary;
|
|
border-radius: 30rpx;
|
|
}
|
|
}
|
|
</style>
|