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

81 lines
2.2 KiB

  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. <uv-input placeholder="请输入证件号码" border="none" fontSize="28rpx"
  22. :custom-style="{backgroundColor: '#fff'}">
  23. <template #prefix>
  24. <view style="background-color: #FCFAF3;">
  25. <uv-text size="28rpx" margin="30rpx 30rpx 30rpx 0rpx" text="证件号码" />
  26. </view>
  27. </template>
  28. </uv-input>
  29. </view>
  30. <view>
  31. <uv-input placeholder="请输入手机号码" border="none" fontSize="28rpx"
  32. :custom-style="{backgroundColor: '#fff'}">
  33. <template #prefix>
  34. <view style="background-color: #FCFAF3;">
  35. <uv-text size="28rpx" margin="30rpx 50rpx 30rpx 0rpx" text="手机号码" />
  36. </view>
  37. </template>
  38. </uv-input>
  39. </view>
  40. <view>
  41. <uv-input placeholder="请输入验证码" border="none" fontSize="28rpx"
  42. :custom-style="{backgroundColor: '#fff'}">
  43. <template #prefix>
  44. <view style="background-color: #FCFAF3;">
  45. <uv-text size="28rpx" margin="30rpx 50rpx 30rpx 0rpx" text="姓名" />
  46. </view>
  47. </template>
  48. </uv-input>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. </script>
  56. <style scoped lang="scss">
  57. .volunteer {
  58. .volunteer-form {
  59. width: 94%;
  60. margin-top: 40rpx;
  61. margin-left: 3%;
  62. .volunteer-form-title {
  63. color: #333;
  64. font-size: 36rpx;
  65. font-weight: 600;
  66. padding: 0rpx 0rpx 0rpx 8rpx;
  67. border-left: 8rpx solid #F6732D;
  68. }
  69. .volunteer-form-sheet {
  70. display: flex;
  71. height: 500rpx;
  72. flex-direction: column;
  73. justify-content: space-around;
  74. }
  75. }
  76. }
  77. </style>