特易招,招聘小程序
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.

127 lines
2.3 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="需提交的材料"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="form">
  9. <view class="form-item">
  10. <view class="title">
  11. 请提交所需要的相对于的材料
  12. </view>
  13. <view class="tips">
  14. 信息仅用于考证咨询方面保证您的信息安全
  15. </view>
  16. </view>
  17. <view class="form-item">
  18. <uv-upload
  19. :fileList="fileList"
  20. :maxCount="1"
  21. width="690rpx"
  22. height="280rpx"
  23. multiple
  24. @afterRead="afterRead"
  25. @delete="deleteImage">
  26. <view class="upload">
  27. <image src="../static/auth/cart.png"
  28. mode="aspectFit"
  29. style="width: 390rpx;height: 280rpx;" />
  30. <view class="btn-add">
  31. 点击上传
  32. </view>
  33. </view>
  34. </uv-upload>
  35. </view>
  36. <view class="form-item">
  37. <view class="tips"
  38. style="text-align: center;padding: 20rpx 0;">
  39. (确保文字清晰可辨避免遮挡不全反光)
  40. </view>
  41. </view>
  42. </view>
  43. <view class="uni-color-btn">
  44. 提交
  45. </view>
  46. <view class="uni-uncolor-btn"
  47. @click="$refs.customerServicePopup.open()">
  48. 联系客服
  49. </view>
  50. <view class="form-item">
  51. <view class="tips"
  52. style="text-align: center;padding: 20rpx 0;">
  53. 如有疑问请联系客服
  54. </view>
  55. </view>
  56. <customerServicePopup ref="customerServicePopup"/>
  57. </view>
  58. </template>
  59. <script>
  60. import customerServicePopup from '@/components/config/customerServicePopup.vue'
  61. export default {
  62. components : {
  63. customerServicePopup
  64. },
  65. data() {
  66. return {
  67. }
  68. },
  69. methods: {
  70. }
  71. }
  72. </script>
  73. <style scoped lang="scss">
  74. .page{
  75. min-height: 100vh;
  76. background-color: #fff;
  77. .form-item{
  78. .label{
  79. padding: 20rpx 0;
  80. }
  81. .form-input{
  82. border: 1px solid $uni-color;
  83. background: rgba($uni-color, 0.1);
  84. padding: 10rpx 20rpx;
  85. font-size: 28rpx;
  86. }
  87. .title{
  88. font-weight: 900;
  89. margin-top: 50rpx;
  90. padding: 10rpx 0;
  91. }
  92. .tips{
  93. font-size: 26rpx;
  94. color: #777;
  95. padding-bottom: 20rpx;
  96. }
  97. }
  98. .form {
  99. padding: 30rpx;
  100. .upload{
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. width: 690rpx;
  105. background-color: #f3f3f3;
  106. border-radius: 10rpx;
  107. .btn-add{
  108. margin: auto;
  109. padding: 10rpx 20rpx;
  110. background-color: $uni-color;
  111. color: #fff;
  112. border-radius: 10rpx;
  113. }
  114. }
  115. }
  116. }
  117. </style>