certificationExample.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="container">
  3. <scroll-view class="content" scroll-y>
  4. <!-- 上传要求 -->
  5. <view class="section">
  6. <view class="section-header">
  7. <view class="section-indicator"></view>
  8. <text class="section-title">上传要求</text>
  9. </view>
  10. <view class="requirement-list">
  11. <view class="requirement-item">
  12. <text class="check-icon">✓</text>
  13. <text>证件需为原件</text>
  14. </view>
  15. <view class="requirement-item">
  16. <text class="check-icon">✓</text>
  17. <text>露出完整边角</text>
  18. </view>
  19. <view class="requirement-item">
  20. <text class="check-icon">✓</text>
  21. <text>照片字迹清晰可见</text>
  22. </view>
  23. </view>
  24. </view>
  25. <!-- 老版本需上传至少一张 -->
  26. <view class="section">
  27. <view class="section-header">
  28. <view class="section-indicator"></view>
  29. <text class="section-title">老版本需上传至少一张</text>
  30. </view>
  31. <view class="instruction-list">
  32. <view class="instruction-item">1.包含头像信息、个人信息、专业信息</view>
  33. <view class="instruction-item">2.因各省市证件样式不统一,如有2页请拍摄完整</view>
  34. </view>
  35. <view class="example-image">
  36. <image src="@/static/image/img_example4.png" mode=""></image>
  37. <!-- <view class="image-placeholder">示例图片:老版本职称证</view> -->
  38. <!-- 请将示例图片放置在 @/static/image/example_old_certificate.png -->
  39. </view>
  40. </view>
  41. <!-- 新版本需上传至少一张 -->
  42. <view class="section">
  43. <view class="section-header">
  44. <view class="section-indicator"></view>
  45. <text class="section-title">新版本需上传至少一张</text>
  46. </view>
  47. <view class="instruction-list">
  48. <view class="instruction-item">1.包含头像信息、个人信息、专业信息</view>
  49. <view class="instruction-item">2.包含执业证注册信息,主执业机构地点</view>
  50. </view>
  51. <view class="example-image">
  52. <image src="@/static/image/img_example5.png" mode=""></image>
  53. <!-- <view class="image-placeholder">示例图片:新版本职称证</view> -->
  54. <!-- 请将示例图片放置在 @/static/image/example_new_certificate.png -->
  55. </view>
  56. </view>
  57. </scroll-view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {}
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .container {
  69. min-height: 100vh;
  70. background: #f5f5f5;
  71. }
  72. .content {
  73. padding: 24rpx;
  74. box-sizing: border-box;
  75. }
  76. .section {
  77. background: #fff;
  78. border-radius: 16rpx;
  79. padding: 24rpx;
  80. margin-bottom: 24rpx;
  81. &:last-child {
  82. margin-bottom: 0;
  83. }
  84. .section-header {
  85. display: flex;
  86. align-items: center;
  87. margin-bottom: 24rpx;
  88. .section-indicator {
  89. width: 6rpx;
  90. height: 32rpx;
  91. background: #388BFF;
  92. border-radius: 3rpx;
  93. margin-right: 16rpx;
  94. }
  95. .section-title {
  96. font-size: 32rpx;
  97. font-weight: bold;
  98. color: #333;
  99. }
  100. }
  101. .requirement-list {
  102. .requirement-item {
  103. display: flex;
  104. align-items: center;
  105. margin-bottom: 16rpx;
  106. font-size: 28rpx;
  107. color: #333;
  108. &:last-child {
  109. margin-bottom: 0;
  110. }
  111. .check-icon {
  112. width: 40rpx;
  113. height: 40rpx;
  114. border-radius: 50%;
  115. background: #52C41A;
  116. color: #fff;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. font-size: 24rpx;
  121. margin-right: 16rpx;
  122. }
  123. }
  124. }
  125. .instruction-list {
  126. margin-bottom: 24rpx;
  127. .instruction-item {
  128. font-size: 28rpx;
  129. color: #666;
  130. line-height: 1.8;
  131. margin-bottom: 8rpx;
  132. &:last-child {
  133. margin-bottom: 0;
  134. }
  135. }
  136. }
  137. .example-image {
  138. width: 100%;
  139. border-radius: 8rpx;
  140. overflow: hidden;
  141. background: #f5f5f5;
  142. min-height: 400rpx;
  143. display: flex;
  144. align-items: center;
  145. justify-content: center;
  146. .image-placeholder {
  147. font-size: 28rpx;
  148. color: #999;
  149. }
  150. image {
  151. width: 100%;
  152. display: block;
  153. }
  154. }
  155. }
  156. </style>