companyImg.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="company">
  3. <nav-bar title="公司认证" color="#000"></nav-bar>
  4. <view class="company-content">
  5. <view class="company-title">上传公司营业执照</view>
  6. <view class="company-desc">请上传“深圳市汉睿国际猎头服务有限公司”的营业执照</view>
  7. <view class="company-btn">修改公司</view>
  8. <view class="upload-img">
  9. <u-upload :max-size="5 * 1024 * 1024" max-count="1" class="upload" width="452" height="322"></u-upload>
  10. </view>
  11. <view class="warning-title">注意事项</view>
  12. <view class="warning-desc">1.拍摄与所填公司一致的营业执照上传</view>
  13. <view class="warning-desc">2.最新下发的营业执照</view>
  14. <view class="warning-desc">3.营业执照信息和公章清晰可辨</view>
  15. </view>
  16. <view class="bottom-btn">确认并提交</view>
  17. </view>
  18. </template>
  19. <script>
  20. import navBar from "@/components/nav-bar/index.vue";
  21. export default {
  22. data() {
  23. return {
  24. address: "",
  25. addressDetail: "",
  26. };
  27. },
  28. components: {
  29. navBar,
  30. },
  31. };
  32. </script>
  33. <style scoped lang="scss">
  34. .company {
  35. position: absolute;
  36. left: 0;
  37. right: 0;
  38. top: 0;
  39. bottom: 0;
  40. display: flex;
  41. flex-direction: column;
  42. font-family: DM Sans;
  43. .company-content {
  44. flex: 1;
  45. padding: 40rpx;
  46. box-sizing: border-box;
  47. overflow: hidden;
  48. overflow-y: auto;
  49. .company-title {
  50. color: #333;
  51. font-size: 40rpx;
  52. font-weight: 600;
  53. margin-bottom: 20rpx;
  54. }
  55. .company-desc {
  56. color: rgba(102, 102, 102, 1);
  57. font-family: DM Sans;
  58. font-size: 24rpx;
  59. font-weight: 400;
  60. line-height: 32rpx;
  61. }
  62. .company-btn {
  63. color: #016bf6;
  64. font-family: DM Sans;
  65. font-size: 24rpx;
  66. font-weight: 400;
  67. line-height: 32rpx;
  68. margin-top: 20rpx;
  69. }
  70. .upload-img {
  71. width: 100%;
  72. height: 388rpx;
  73. background: #fce9dc;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. margin-top: 20rpx;
  78. }
  79. .warning-title {
  80. color: #1f2c37;
  81. font-family: DM Sans;
  82. font-size: 28rpx;
  83. font-weight: 500;
  84. margin-top: 20rpx;
  85. }
  86. .warning-desc {
  87. color: #666666;
  88. font-family: DM Sans;
  89. font-size: 24rpx;
  90. font-weight: 400;
  91. margin-top: 20rpx;
  92. }
  93. }
  94. .bottom-btn {
  95. border-radius: 999px;
  96. background: #016bf6;
  97. flex-shrink: 0;
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. color: rgba(255, 255, 255, 1);
  102. font-family: DM Sans;
  103. font-size: 32rpx;
  104. font-weight: 400;
  105. padding: 16rpx 32rpx;
  106. box-sizing: border-box;
  107. margin: 20rpx;
  108. margin-bottom: 110rpx;
  109. }
  110. }
  111. </style>