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.
 
 
 
 

53 lines
928 B

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