景徳镇旅游微信小程序
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.

83 lines
2.2 KiB

1 year ago
  1. <template>
  2. <!-- 加入志愿者 -->
  3. <view class="volunteer">
  4. <navbar title="加入志愿者" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="volunteer-form">
  6. <view class="volunteer-form-title">
  7. <view>志愿者信息</view>
  8. </view>
  9. <view class="volunteer-form-sheet">
  10. <view>
  11. <uv-input placeholder="请输入您的姓名" border="none" fontSize="28rpx"
  12. :custom-style="{backgroundColor: '#fff'}">
  13. <template #prefix>
  14. <view style="background-color: #FCFAF3;">
  15. <uv-text size="28rpx" margin="30rpx 50rpx 30rpx 0rpx" text="姓名" />
  16. </view>
  17. </template>
  18. </uv-input>
  19. </view>
  20. <view>
  21. </view>
  22. <view>
  23. <uv-input placeholder="请输入证件号码" border="none" fontSize="28rpx"
  24. :custom-style="{backgroundColor: '#fff'}">
  25. <template #prefix>
  26. <view style="background-color: #FCFAF3;">
  27. <uv-text size="28rpx" margin="30rpx 30rpx 30rpx 0rpx" text="证件号码" />
  28. </view>
  29. </template>
  30. </uv-input>
  31. </view>
  32. <view>
  33. <uv-input placeholder="请输入手机号码" border="none" fontSize="28rpx"
  34. :custom-style="{backgroundColor: '#fff'}">
  35. <template #prefix>
  36. <view style="background-color: #FCFAF3;">
  37. <uv-text size="28rpx" margin="30rpx 50rpx 30rpx 0rpx" text="手机号码" />
  38. </view>
  39. </template>
  40. </uv-input>
  41. </view>
  42. <view>
  43. <uv-input placeholder="请输入验证码" border="none" fontSize="28rpx"
  44. :custom-style="{backgroundColor: '#fff'}">
  45. <template #prefix>
  46. <view style="background-color: #FCFAF3;">
  47. <uv-text size="28rpx" margin="30rpx 50rpx 30rpx 0rpx" text="姓名" />
  48. </view>
  49. </template>
  50. </uv-input>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. </script>
  58. <style scoped lang="scss">
  59. .volunteer {
  60. .volunteer-form {
  61. width: 94%;
  62. margin-top: 40rpx;
  63. margin-left: 3%;
  64. .volunteer-form-title {
  65. color: #333;
  66. font-size: 36rpx;
  67. font-weight: 600;
  68. padding: 0rpx 0rpx 0rpx 8rpx;
  69. border-left: 8rpx solid #F6732D;
  70. }
  71. .volunteer-form-sheet {
  72. display: flex;
  73. height: 500rpx;
  74. flex-direction: column;
  75. justify-content: space-around;
  76. }
  77. }
  78. }
  79. </style>