| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="page-container">
- <view class="content">
- <view class="title">Hi,欢迎加入亿职赞</view>
- <view class="desc">填写企业信息,开启高效招聘方式</view>
- <view class="sub-title">公司名称</view>
- </view>
-
- <view class="fixed-section">
- <u-button type="primary" class="submit-btn" @click="handleNext">下一步</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods: {
- handleNext() {}
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '@/common.scss';
- .page-container {
- font-family: DM Sans;
- .content {
- padding: 60rpx 40rpx;
- .title {
- color: rgba(29, 33, 41, 1);
- font-size: 36rpx;
- font-weight: 500;
- line-height: 44rpx;
- margin-bottom: 20rpx;
- }
- .desc {
- color: rgba(102, 102, 102, 1);
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- margin-bottom: 20rpx;
- }
- .sub-title {
- color: rgba(31, 44, 55, 1);
- font-size: 28rpx;
- font-weight: 500;
- line-height: 44rpx;
- }
- }
- }
- </style>
|