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.
63 lines
1.1 KiB
63 lines
1.1 KiB
<template> |
|
<view> |
|
<view class="menu"> |
|
<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> |
|
</view> |
|
|
|
<button>确认提交</button> |
|
</view> |
|
|
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
|
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.menu { |
|
background-color: #FFFFFF; |
|
margin: 0 24rpx; |
|
padding-top: 20rpx; |
|
.menu-item{ |
|
margin-top: 20rpx; |
|
.tips{ |
|
font-size: 28rpx; |
|
margin: 12rpx 0 0; |
|
} |
|
} |
|
} |
|
|
|
input { |
|
padding: 12rpx 0; |
|
font-size: 24rpx; |
|
border-bottom: 1px solid rgba(112, 112, 112, 0.10980392156862745); |
|
|
|
} |
|
|
|
button { |
|
width: 234rpx; |
|
height: 64rpx; |
|
background: linear-gradient(141deg, #FF4848 0%, #FF2929 100%); |
|
font-size: 24rpx; |
|
font-family: PingFang SC; |
|
border-radius: 32rpx; |
|
margin-top: 84rpx; |
|
color: #FFFFFF; |
|
} |
|
</style>
|
|
|