123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <template>
- <view class="switch-roles">
- <nav-bar title="选择公司规模" color="#000"></nav-bar>
- <view class="roles-content">
- <view class="content">
- <view class="title">发布社招</view>
- <view class="desc">“深圳市汉睿国际猎头服务有限公司”的人员规模</view>
- <view class="step">
- <u-steps :list="numList" mode="number" :current="1"></u-steps>
- </view>
- <view class="check-title">招聘类型</view>
- <view class="check-box">
- <view
- class="check-item"
- :class="{ 'is-check': check == index }"
- v-for="(item, index) in peopleList"
- :key="index"
- @click="checkPeople(index)"
- >{{ item }}</view
- >
- </view>
- <view class="check-title-big">招聘职位</view>
- <view class="check-select" @click="goJob">
- <view class="select-txt">请选择要招聘的职位</view>
- <u-icon name="arrow-down" color="#D3D3D6" size="22"></u-icon>
- </view>
- <view class="check-title-big">岗位描述</view>
- <view class="check-select" @click="goJobContent">
- <view class="select-txt">{{
- this.text ? this.text : "介绍工作内容、职位要求"
- }}</view>
- <u-icon name="arrow-down" color="#D3D3D6" size="22"></u-icon>
- </view>
- <view class="txt-desc">注:职位名称、职位类型等发布后不可修改</view>
- </view>
- </view>
- <view class="submit-btn" @click="goJobPosting">确定</view>
- </view>
- </template>
- <script>
- import navBar from "@/components/nav-bar/index.vue";
- export default {
- data() {
- return {
- peopleList: ["社招全职", "应届生校园招聘", "实习生招聘", "兼职招聘"],
- check: 0,
- text: "",
- numList: [
- {
- name: "填写基本信息",
- },
- {
- name: "Confirm",
- },
- ],
- };
- },
- components: {
- navBar,
- },
- onLoad(options) {
- if (options.text) {
- this.text = options.text;
- }
- },
- methods: {
- goBusinessLicense() {
- uni.navigateTo({ url: "/pages/my/businessLicense" });
- },
- checkPeople(index) {
- this.check = index;
- },
- goJob() {
- uni.navigateTo({
- url: "/package/jobIntention/jobList",
- });
- },
- goJobContent() {
- uni.navigateTo({
- url: `/package/jobIntention/editJob?text=${this.text}`,
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .switch-roles {
- background-color: #fff;
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: flex;
- flex-direction: column;
- .roles-content {
- width: 100%;
- flex: 1;
- overflow: hidden;
- overflow-y: auto;
- .content {
- padding: 40rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .title {
- color: #333;
- width: 100%;
- font-family: DM Sans;
- font-size: 40rpx;
- font-weight: 600;
- }
- .desc {
- color: rgba(102, 102, 102, 1);
- width: 100%;
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- letter-spacing: 0.5%;
- text-align: left;
- padding: 20rpx 0;
- box-sizing: border-box;
- }
- .check-title {
- width: 100%;
- color: rgba(31, 44, 55, 1);
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 500;
- line-height: 44rpx;
- margin-top: 20rpx;
- margin-bottom: 16rpx;
- }
- .check-title-big {
- color: rgba(58, 57, 67, 1);
- font-family: DM Sans;
- font-size: 36rpx;
- font-weight: 500;
- line-height: 48rpx;
- width: 100%;
- padding: 20rpx 0;
- box-sizing: border-box;
- }
- .check-select {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius: 12rpx;
- box-shadow: 0px 16rpx 300rpx 0px rgba(0, 0, 0, 0.06);
- background: rgba(255, 255, 255, 1);
- padding: 32rpx 47rpx;
- box-sizing: border-box;
- .select-txt {
- }
- }
- .check-box {
- width: 100%;
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 24rpx;
- .check-item {
- border-radius: 16rpx;
- background: rgba(245, 248, 254, 1);
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 44rpx;
- text-align: center;
- padding: 12rpx 48rpx;
- box-sizing: border-box;
- }
- .is-check {
- box-sizing: border-box;
- border: 1rpx solid #016bf6;
- border-radius: 16rpx;
- background: rgba(252, 233, 220, 1);
- color: #016bf6;
- }
- }
- }
- }
- .step {
- width: 100%;
- padding: 32rpx 0;
- box-sizing: border-box;
- }
- .submit-btn {
- flex-shrink: 0;
- border-radius: 999px;
- box-shadow: 0px 2px 4px 0px rgba(9, 196, 116, 0.3);
- background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 400;
- line-height: 48rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 16rpx 32rpx;
- box-sizing: border-box;
- margin: 60rpx 20rpx;
- }
- .txt-desc {
- color: rgba(102, 102, 102, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- text-align: left;
- width: 100%;
- margin-top: 20rpx;
- }
- }
- </style>
|