You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.1 KiB

3 years ago
<template>
<view>
<view class="menu">
3 years ago
<view class="menu-item">
<view class="tips">支付宝账号</view>
<input class="uni-input" type="number" placeholder="请输入支付宝账号"/>
</view>
<view class="menu-item">
<view class="tips">姓名</view>
<input class="uni-input" type="number" placeholder="请输入真实姓名" />
</view>
3 years ago
</view>
<button>确认提交</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
3 years ago
<style lang="scss">
3 years ago
.menu {
background-color: #FFFFFF;
3 years ago
margin: 0 24rpx;
padding-top: 20rpx;
.menu-item{
margin-top: 20rpx;
.tips{
font-size: 28rpx;
margin: 12rpx 0 0;
}
}
3 years ago
}
input {
3 years ago
padding: 12rpx 0;
font-size: 24rpx;
3 years ago
border-bottom: 1px solid rgba(112, 112, 112, 0.10980392156862745);
}
button {
3 years ago
width: 234rpx;
height: 64rpx;
3 years ago
background: linear-gradient(141deg, #FF4848 0%, #FF2929 100%);
3 years ago
font-size: 24rpx;
3 years ago
font-family: PingFang SC;
3 years ago
border-radius: 32rpx;
margin-top: 84rpx;
3 years ago
color: #FFFFFF;
}
</style>