zfb.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="item top">
  5. <text>真实姓名</text>
  6. <input type="text" value="" placeholder="请输入真实姓名" />
  7. </view>
  8. <view class="item">
  9. <text>支付宝账号</text>
  10. <input type="text" value="" placeholder="请输入支付宝账号" />
  11. </view>
  12. </view>
  13. <view class="button">
  14. 确认
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. };
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. page , .content{
  28. height: 100%;
  29. padding: 0;
  30. margin: 0;
  31. }
  32. .top{
  33. border-bottom: 1rpx solid #F3F3F3;
  34. }
  35. .box{
  36. background: #FFFFFF;
  37. margin: 20rpx 0 70rpx 0;
  38. .item{
  39. display: flex;
  40. align-items: center;
  41. text{
  42. margin: 0 40rpx 0 25rpx;
  43. width: 150rpx;
  44. font-size: 30rpx;
  45. font-family: PingFang SC;
  46. font-weight: 400;
  47. color: #333333;
  48. line-height: 100rpx;
  49. }
  50. input{
  51. font-size: 28rpx;
  52. font-family: PingFang SC;
  53. font-weight: 400;
  54. color: #999999;
  55. line-height: 100rpx;
  56. }
  57. }
  58. }
  59. .button{
  60. text-align: center;
  61. width: 560rpx;
  62. height: 80rpx;
  63. background: linear-gradient(0deg, #2E58FF, #32C6FF);
  64. border-radius: 40rpx;
  65. font-size: 30rpx;
  66. font-family: PingFangSC;
  67. font-weight: 500;
  68. color: #FFFFFF;
  69. line-height: 80rpx;
  70. margin: 0 auto;
  71. }
  72. </style>