joinCompany.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="page-container">
  3. <view class="content">
  4. <view class="title">Hi,欢迎加入亿职赞</view>
  5. <view class="desc">填写企业信息,开启高效招聘方式</view>
  6. <view class="sub-title">公司名称</view>
  7. </view>
  8. <view class="fixed-section">
  9. <u-button type="primary" class="submit-btn" @click="handleNext">下一步</u-button>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. };
  18. },
  19. methods: {
  20. handleNext() {}
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. @import '@/common.scss';
  26. .page-container {
  27. font-family: DM Sans;
  28. .content {
  29. padding: 60rpx 40rpx;
  30. .title {
  31. color: rgba(29, 33, 41, 1);
  32. font-size: 36rpx;
  33. font-weight: 500;
  34. line-height: 44rpx;
  35. margin-bottom: 20rpx;
  36. }
  37. .desc {
  38. color: rgba(102, 102, 102, 1);
  39. font-size: 24rpx;
  40. font-weight: 400;
  41. line-height: 32rpx;
  42. margin-bottom: 20rpx;
  43. }
  44. .sub-title {
  45. color: rgba(31, 44, 55, 1);
  46. font-size: 28rpx;
  47. font-weight: 500;
  48. line-height: 44rpx;
  49. }
  50. }
  51. }
  52. </style>