businessLicense.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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" @click="goPeopleNumber">下一步</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. goPeopleNumber(){
  48. uni.navigateTo({ url: '/pages/my/peopleNumber' })
  49. }
  50. },
  51. };
  52. </script>
  53. <style lang="scss" scoped>
  54. .input-box{
  55. width: 100%;
  56. padding: 16rpx 0 32rpx 0;
  57. box-sizing: border-box;
  58. }
  59. ::v-deep .u-input {
  60. text-align: left !important;
  61. }
  62. .custom-input {
  63. width: 100%;
  64. box-sizing: border-box;
  65. border: 2rpx solid rgba(158, 161, 168, 1);
  66. border-radius: 100rpx;
  67. background: rgba(255, 255, 255, 1);
  68. padding: 0rpx 24rpx !important;
  69. }
  70. .switch-roles {
  71. position: absolute;
  72. left: 0;
  73. right: 0;
  74. top: 0;
  75. bottom: 0;
  76. padding: 60rpx;
  77. padding-top: 80rpx;
  78. display: flex;
  79. flex-direction: column;
  80. .roles-content {
  81. width: 100%;
  82. flex: 1;
  83. overflow: hidden;
  84. overflow-y: auto;
  85. box-sizing: border-box;
  86. .content {
  87. padding-top: 60rpx;
  88. box-sizing: border-box;
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. justify-content: center;
  93. .title {
  94. width: 100%;
  95. color: rgba(29, 33, 41, 1);
  96. font-family: DM Sans;
  97. font-size: 36rpx;
  98. font-weight: 500;
  99. line-height: 44rpx;
  100. text-align: left;
  101. }
  102. .desc {
  103. width: 100%;
  104. color: rgba(102, 102, 102, 1);
  105. font-family: DM Sans;
  106. font-size: 24rpx;
  107. font-weight: 400;
  108. line-height: 32rpx;
  109. text-align: left;
  110. padding: 22rpx 0;
  111. box-sizing: border-box;
  112. }
  113. .title-second {
  114. width: 100%;
  115. color: #1f2c37;
  116. font-family: DM Sans;
  117. font-size: 28rpx;
  118. font-weight: 500;
  119. line-height: 44rpx;
  120. text-align: left;
  121. }
  122. .desc-txt {
  123. width: 100%;
  124. color: rgba(102, 102, 102, 1);
  125. font-family: DM Sans;
  126. font-size: 24rpx;
  127. font-weight: 400;
  128. line-height: 32rpx;
  129. text-align: left;
  130. .desc-txt-item {
  131. margin-top: 8rpx;
  132. }
  133. }
  134. image {
  135. margin-top: 106rpx;
  136. width: 550rpx;
  137. height: 550rpx;
  138. }
  139. }
  140. }
  141. .next-btn {
  142. border-radius: 999px;
  143. background: rgba(255, 102, 0, 1);
  144. padding: 16rpx 32rpx;
  145. box-sizing: border-box;
  146. color: rgba(255, 255, 255, 1);
  147. font-family: DM Sans;
  148. font-size: 32rpx;
  149. font-weight: 400;
  150. line-height: 48rpx;
  151. display: flex;
  152. justify-content: center;
  153. align-items: center;
  154. }
  155. }
  156. </style>