company.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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-img-box">
  7. <view class="comp-img">
  8. <image src="@/static/images/jobApplicant/yinyezhizhao.svg" mode="scaleToFill" />
  9. </view>
  10. <view class="comp-txt">
  11. <view class="comp-name">营业执照</view>
  12. <view class="comp-desc">拍照上传纸质营业执照原件</view>
  13. </view>
  14. </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-img-box {
  56. display: flex;
  57. align-items: center;
  58. box-sizing: border-box;
  59. border: 1rpx solid rgba(227, 231, 236, 1);
  60. border-radius: 12rpx;
  61. background: rgba(255, 255, 255, 1);
  62. padding: 36rpx;
  63. box-sizing: border-box;
  64. gap: 26rpx;
  65. .comp-img {
  66. flex-shrink: 0;
  67. image {
  68. width: 96rpx;
  69. height: 96rpx;
  70. }
  71. }
  72. .comp-txt {
  73. flex: 1;
  74. .comp-name {
  75. color: rgba(23, 23, 37, 1);
  76. font-family: DM Sans;
  77. font-size: 28rpx;
  78. font-weight: 400;
  79. }
  80. .comp-desc {
  81. margin-top: 8rpx;
  82. color: rgba(120, 130, 138, 1);
  83. font-family: DM Sans;
  84. font-size: 28rpx;
  85. font-weight: 400;
  86. }
  87. }
  88. }
  89. }
  90. .bottom-btn {
  91. flex-shrink: 0;
  92. padding-bottom: 50rpx;
  93. text-align: center;
  94. color: #016bf6;
  95. font-family: DM Sans;
  96. font-size: 28rpx;
  97. font-weight: 400;
  98. line-height: 36rpx;
  99. }
  100. }
  101. </style>