businessLicense.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view class="switch-roles">
  3. <view class="roles-content">
  4. <view class="content">
  5. <view class="title">Hi,欢迎加入亿职赞</view>
  6. <view class="desc">填写招聘信息,开启搞笑招聘方式</view>
  7. <view class="title-second">公司营业执照名称</view>
  8. <view class="input-box">
  9. <u-input
  10. placeholder="请输入您所属公司营业执照上的公司名称"
  11. v-model="phoneNumber"
  12. clearable
  13. class="custom-input"
  14. maxlength="46"
  15. >
  16. <template #prefix>
  17. <u-icon name="phone" size="36rpx" color="#999" marginRight="20rpx"></u-icon>
  18. </template>
  19. </u-input>
  20. </view>
  21. <view class="desc-txt">
  22. <view class="desc-txt-item">注意事项:</view>
  23. <view class="desc-txt-item">1.请输入您所述公司营业执照上的公司名称</view>
  24. <view class="desc-txt-item"
  25. >2.公司名称将用于后续企业认证环节,请确保准确性</view
  26. >
  27. </view>
  28. <image src="@/static/images/my/join-yzz.svg" mode="scaleToFill" />
  29. </view>
  30. </view>
  31. <view class="next-btn">下一步</view>
  32. </view>
  33. </template>
  34. <script>
  35. import navBar from "@/components/nav-bar/index.vue";
  36. export default {
  37. data() {
  38. return {};
  39. },
  40. components: {
  41. navBar,
  42. },
  43. methods: {
  44. goBusinessLicense() {
  45. uni.navigateTo({ url: "/pages/my/businessLicense" });
  46. },
  47. },
  48. };
  49. </script>
  50. <style lang="scss" scoped>
  51. .input-box{
  52. width: 100%;
  53. padding: 16rpx 0 32rpx 0;
  54. box-sizing: border-box;
  55. }
  56. ::v-deep .u-input {
  57. text-align: left !important;
  58. }
  59. .custom-input {
  60. width: 100%;
  61. box-sizing: border-box;
  62. border: 2rpx solid rgba(158, 161, 168, 1);
  63. border-radius: 100rpx;
  64. background: rgba(255, 255, 255, 1);
  65. padding: 0rpx 24rpx !important;
  66. }
  67. .switch-roles {
  68. position: absolute;
  69. left: 0;
  70. right: 0;
  71. top: 0;
  72. bottom: 0;
  73. padding: 60rpx;
  74. padding-top: 80rpx;
  75. display: flex;
  76. flex-direction: column;
  77. .roles-content {
  78. width: 100%;
  79. flex: 1;
  80. overflow: hidden;
  81. overflow-y: auto;
  82. box-sizing: border-box;
  83. .content {
  84. padding-top: 60rpx;
  85. box-sizing: border-box;
  86. display: flex;
  87. flex-direction: column;
  88. align-items: center;
  89. justify-content: center;
  90. .title {
  91. width: 100%;
  92. color: rgba(29, 33, 41, 1);
  93. font-family: DM Sans;
  94. font-size: 36rpx;
  95. font-weight: 500;
  96. line-height: 44rpx;
  97. text-align: left;
  98. }
  99. .desc {
  100. width: 100%;
  101. color: rgba(102, 102, 102, 1);
  102. font-family: DM Sans;
  103. font-size: 24rpx;
  104. font-weight: 400;
  105. line-height: 32rpx;
  106. text-align: left;
  107. padding: 22rpx 0;
  108. box-sizing: border-box;
  109. }
  110. .title-second {
  111. width: 100%;
  112. color: #1f2c37;
  113. font-family: DM Sans;
  114. font-size: 28rpx;
  115. font-weight: 500;
  116. line-height: 44rpx;
  117. text-align: left;
  118. }
  119. .desc-txt {
  120. width: 100%;
  121. color: rgba(102, 102, 102, 1);
  122. font-family: DM Sans;
  123. font-size: 24rpx;
  124. font-weight: 400;
  125. line-height: 32rpx;
  126. text-align: left;
  127. .desc-txt-item {
  128. margin-top: 8rpx;
  129. }
  130. }
  131. image {
  132. margin-top: 106rpx;
  133. width: 550rpx;
  134. height: 550rpx;
  135. }
  136. }
  137. }
  138. .next-btn {
  139. border-radius: 999px;
  140. background: rgba(255, 102, 0, 1);
  141. padding: 16rpx 32rpx;
  142. box-sizing: border-box;
  143. color: rgba(255, 255, 255, 1);
  144. font-family: DM Sans;
  145. font-size: 32rpx;
  146. font-weight: 400;
  147. line-height: 48rpx;
  148. display: flex;
  149. justify-content: center;
  150. align-items: center;
  151. }
  152. }
  153. </style>