company.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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" @click="goUploadImg">
  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. methods: {
  32. goUploadImg(){
  33. uni.navigateTo({ url: '/package/jobIntention/companyImg' })
  34. },
  35. },
  36. };
  37. </script>
  38. <style scoped lang="scss">
  39. .company {
  40. position: absolute;
  41. left: 0;
  42. right: 0;
  43. top: 0;
  44. bottom: 0;
  45. display: flex;
  46. flex-direction: column;
  47. font-family: DM Sans;
  48. .company-content {
  49. flex: 1;
  50. padding: 40rpx;
  51. box-sizing: border-box;
  52. overflow: hidden;
  53. overflow-y: auto;
  54. .company-title {
  55. color: #333;
  56. font-size: 40rpx;
  57. font-weight: 600;
  58. margin-bottom: 20rpx;
  59. }
  60. .company-img-box {
  61. display: flex;
  62. align-items: center;
  63. box-sizing: border-box;
  64. border: 1rpx solid rgba(227, 231, 236, 1);
  65. border-radius: 12rpx;
  66. background: rgba(255, 255, 255, 1);
  67. padding: 36rpx;
  68. box-sizing: border-box;
  69. gap: 26rpx;
  70. .comp-img {
  71. flex-shrink: 0;
  72. image {
  73. width: 96rpx;
  74. height: 96rpx;
  75. }
  76. }
  77. .comp-txt {
  78. flex: 1;
  79. .comp-name {
  80. color: rgba(23, 23, 37, 1);
  81. font-family: DM Sans;
  82. font-size: 28rpx;
  83. font-weight: 400;
  84. }
  85. .comp-desc {
  86. margin-top: 8rpx;
  87. color: rgba(120, 130, 138, 1);
  88. font-family: DM Sans;
  89. font-size: 28rpx;
  90. font-weight: 400;
  91. }
  92. }
  93. }
  94. }
  95. .bottom-btn {
  96. flex-shrink: 0;
  97. padding-bottom: 50rpx;
  98. text-align: center;
  99. color: #016bf6;
  100. font-family: DM Sans;
  101. font-size: 28rpx;
  102. font-weight: 400;
  103. line-height: 36rpx;
  104. }
  105. }
  106. </style>