123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614 |
- <template>
- <view class="content">
- <view class="search">
- <u-input v-model="serach_value" type="text" :border="true" placeholder="热搜榜单" shape="circle"
- prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
- <template slot="suffix">
- <view>搜索</view>
- </template>
- </u-input>
- </view>
- <view class="box hflex acenter jbetween">
- <block v-for="(item,index) in tabs" :key="index">
- <view class="vflex acenter jcenter" @click="toTab(item.url)">
- <image :src="item.src" mode="aspectFill" class="tab_img"></image>
- <view class="tab_text">{{item.text}}</view>
- </view>
- </block>
- </view>
- <view class="box1">
- <view class="hflex acenter jbetween box1_top">
- <view class="hflex acenter">
- <block v-for="(item,index) in tabs2" :key="index">
- <view class="tabs_item" :class="tab_active == item.id? 'tabs_active' : ''" @click="changeTab(item.id)">{{item.text}}</view>
- </block>
- </view>
- <view class="screen hflex acenter jcenter" @click="open">
- <view class="screen_text">筛选</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6"></u-icon>
- </view>
- </view>
- <view class="list" v-if="tab_active == 0">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item" @click="toDetail(item.id)">
- <view class="hflex acenter jbetween">
- <view class="item_title">{{item.title}}</view>
- <view class="item_blue">{{item.salary}}·{{item.monthly}}薪</view>
- </view>
- <view class="hflex acenter" style="padding: 20rpx 0 24rpx;">
- <view class="item_box">{{item.city}}</view>
- <view class="item_box">{{item.education}}</view>
- <view class="item_box">{{item.experience}}</view>
- </view>
- <view class="item_name">{{item.company_name}}</view>
- <view class="hflex acenter jbetween" style="padding-top: 16rpx;">
- <view class="hflex acenter">
- <image class="item_avatar" mode="aspectFill" :src="item.user.avatar"></image>
- <view class="user_name">{{item.user.position}}·{{item.user.name}}</view>
- </view>
- <view class="user_right">{{item.user.city}}·{{item.user.area}}</view>
- </view>
- </view>
- </block>
- </view>
- <view class="list" v-if="tab_active == 1">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item hflex jbetween" @click="toDetail2(item.id)">
- <view class="hflex">
- <image class="item_avatar1" :src="item.avatar"></image>
- <view class="item_right1 vflex">
- <u--text class="item_title" mode="name" :text="item.name" format="encrypt"></u--text>
- <view class="hflex acenter">
- <view class="text_style1">{{item.city}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.age}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.year}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.education}}</view>
- </view>
- <view class="item_box1 hflex acenter">应聘岗位<view style="padding: 0 8rpx;">|</view>{{item.postion}}</view>
- </view>
- </view>
- <view class="item_btn1">打招呼</view>
- </view>
- </block>
- </view>
- </view>
- <u-popup :show="show" mode="bottom" :round="20" :closeable="true" @close="close" @open="open">
- <view class="popup">
- <view class="popup_title">筛选</view>
- <view class="popup_label">薪资待遇<span class="subtitle">(单选)</span></view>
- <view class="hflex acenter fwrap">
- <block v-for="(item,index) in salaryList" :key="index">
- <view class="popup_box" :class="index == salary_active ? 'box_active' : ''" @click="changgeSalary(index)">{{item.value}}</view>
- </block>
- </view>
- <view class="popup_label">学历要求</view>
- <view class="hflex acenter fwrap">
- <block v-for="(item,index) in educationList" :key="index">
- <view class="popup_box" :class="item.id == education_active ? 'box_active' : ''" @click="changgeEdu(item.id)">{{item.value}}</view>
- </block>
- </view>
- <view class="popup_bottom hflex acenter jbetween">
- <view class="reset_btn" @click="reset">重置</view>
- <view class="reset_btn confirm_btn" @click="confirm">确认</view>
- </view>
- </view>
- </u-popup>
- <u-modal :show="first_show" :closeOnClickOverlay="true" :showConfirmButton="false">
- <view class="popup1">
- <view class="popup1_title">Hello</view>
- <view class="popup1_subtitle">欢迎进入此页</view>
- <view class="popup1_line"></view>
- <view class="popup1_text">此项内容<span style="color: #516EFF;">{{is_free}}</span>使用</view>
- <view class="popup1_btn" @click="close">我知道了</view>
- </view>
- </u-modal>
-
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- serach_value: '',
- tabs: [
- {
- url: '/page_index/pages/demand/publish',
- src: '/static/images/index/demand/tab1.png',
- text: '发布应聘',
- },
- {
- url: '/page_index/pages/demand/delivery',
- src: '/static/images/index/demand/tab2.png',
- text: '投递记录',
- },
- {
- url: '/page_index/pages/demand/collect',
- src: '/static/images/index/demand/tab3.png',
- text: '我的收藏',
- }
- ],
- tabs2: [
- {
- id: 0,
- text: '招聘信息'
- },
- {
- id: 1,
- text: '应聘信息'
- }
- ],
- tab_active: 0,
- pageList: [
- {
- id: 0,
- title: '船舶设计师',
- salary: '13-15K',
- monthly: '13',
- city: '北京',
- education: '本科',
- experience: '经验不限',
- company_name: '北京文化旅游产业发展集团有限公司',
- user: {
- avatar: '/static/images/mine/avatar1.jpg',
- name: '江女士',
- position: '行政总监',
- city: '北京市',
- area: '东城区',
- },
- avatar: '/static/images/mine/avatar1.jpg',
- name: '张三',
- age: '27',
- year: '5年',
- postion: '船舶工程师',
- },
- {
- id: 1,
- title: '船舶设计师',
- salary: '13-15K',
- monthly: '13',
- city: '北京',
- education: '本科',
- experience: '经验不限',
- company_name: '北京文化旅游产业发展集团有限公司',
- user: {
- avatar: '/static/images/mine/avatar2.jpg',
- name: '江女士',
- position: '行政总监',
- city: '北京市',
- area: '东城区',
- },
- avatar: '/static/images/mine/avatar2.jpg',
- name: '李四',
- age: '27',
- year: '5年',
- postion: '船舶工程师',
- }
- ],
- salaryList: [
- {
- id: 0,
- value: '不限'
- },
- {
- id: 1,
- value: '4k以下'
- },
- {
- id: 2,
- value: '4k-6k'
- },
- {
- id: 3,
- value: '6k-8k'
- },
- {
- id: 4,
- value: '8k-12k'
- },
- {
- id: 5,
- value: '12k以上'
- }
- ],
- educationList: [
- {
- id: 0,
- value: '不限'
- },
- {
- id: 1,
- value: '初中及以下'
- },
- {
- id: 2,
- value: '中专/中技'
- },
- {
- id: 3,
- value: '高中'
- },
- {
- id: 4,
- value: '大专'
- },
- {
- id: 5,
- value: '本科'
- },
- {
- id: 6,
- value: '硕士'
- },
- {
- id: 7,
- value: '博士'
- }
- ],
- show: false,
- salary_active: -1,
- education_active: -1,
- is_first: true,
- first_show: false,
- is_free: '免费'
- }
- },
- onLoad() {
- that = this
- that.is_first = uni.getStorageSync('is_first')
- if(!that.is_first) {
- that.first_show = true
- uni.setStorageSync('is_first', true)
- }
- },
- methods: {
- // 点击tabs
- toTab(url) {
- $api.jump(url)
- },
- // 切换tabs
- changeTab(id) {
- that.tab_active = id
- },
- // 打开弹出层
- open() {
- that.show = true
- },
- // 关闭弹出层
- close() {
- that.first_show = false
- that.show = false
- },
- // 选择薪资待遇
- changgeSalary(index) {
- console.log(index);
- that.salary_active = index
- },
- // 选择学历要求
- changgeEdu(id) {
- that.education_active = id
- },
-
- // 重置按钮
- reset() {
- that.salary_active = -1
- that.education_active = -1
- },
- // 确认按钮
- confirm() {
- that.close()
- },
- toDetail(id) {
- $api.jump('/page_index/pages/demand/recruitDetail?id='+id)
- },
- toDetail2(id) {
- $api.jump('/page_index/pages/demand/wantedDetail?id='+id)
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- position: relative;
- background: #EEF1F8;
- padding: 0 30rpx;
- .search {
- width: 100%;
- height: 88rpx;
- box-sizing: border-box;
- padding: 12rpx 30rpx;
- .u-input {
- background-color: #fff;
- height: 64rpx;
- padding: 0 0 0 18rpx !important;
- border: 1rpx solid #506Dff;
- margin-bottom: 12rpx;
- }
- .u-input__content__subfix-icon {
- width: 128rpx;
- height: 64rpx;
- background-color: #506Dff;
- border-radius: 32rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- line-height: 64rpx;
- }
- }
- .box {
- width: 100%;
- background: #FFFFFF;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 16rpx 60rpx 30rpx;
- margin-top: 24rpx;
- .tab_img {
- width: 84rpx;
- height: 84rpx;
- margin-bottom: 8rpx;
- }
- .tab_text {
- font-size: 24rpx;
- font-weight: 400;
- color: #444444;
- }
- }
- .box1 {
- width: 100%;
- background: #FFFFFF;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 28rpx 20rpx;
- margin-top: 24rpx;
- .box1_top {
- width: 100%;
- padding-bottom: 12rpx;
- // border-bottom: 1rpx solid #F4F4F4;
- .tabs_item {
- font-size: 32rpx;
- font-weight: 400;
- color: #666666;
- margin-right: 52rpx;
- }
- .tabs_active {
- font-size: 32rpx;
- font-weight: 500;
- color: #222222;
- position: relative;
- }
- .tabs_active::before {
- content: '';
- position: absolute;
- width: 88rpx;
- height: 16rpx;
- background: linear-gradient(270deg, #FFFFFF 0%, #506DFF 100%);
- border-radius: 10rpx;
- bottom: 1rpx;
- left: 1rpx;
- opacity: 0.8;
- }
- .screen {
- width: 92rpx;
- height: 40rpx;
- background: #F3F3F3;
- border-radius: 4rpx;
- .screen_text {
- font-size: 24rpx;
- color: #666666;
- margin-right: 8rpx;
- }
- }
- }
- .list {
- width: 100%;
- .list_item {
- width: 100%;
- padding: 28rpx 0 20rpx;
- border-top: 1rpx solid #F4F4F4;
- .item_title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .item_blue {
- font-size: 32rpx;
- font-weight: bold;
- color: #506DFF;
- }
- .item_box {
- height: 40rpx;
- background: #F0F2F6;
- border-radius: 2px;
- box-sizing: border-box;
- padding: 4rpx 18rpx;
- font-size: 22rpx;
- font-weight: 400;
- color: #444444;
- margin-right: 20rpx;
- }
- .item_name {
- font-size: 24rpx;
- font-weight: 400;
- color: #666666;
- }
- .item_avatar {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- margin-right: 12rpx;
- }
- .item_avatar1 {
- width: 88rpx;
- height: 88rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .item_right1 {
-
- }
- .text_style1 {
- font-size: 22rpx;
- font-weight: 400;
- color: #666666;
- padding: 12rpx 0;
- }
- .item_box1 {
- margin-top: 8rpx;
- background: #EDF0FF;
- border-radius: 8rpx;
- box-sizing: border-box;
- padding: 4rpx 16rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #506DFF;
- }
- .item_btn1 {
- width: 140rpx;
- height: 52rpx;
- background: #F1F3FF;
- border-radius: 28rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #506DFF;
- line-height: 52rpx;
- text-align: center;
- }
- .user_name {
- font-size: 20rpx;
- font-weight: 400;
- color: #333333;
- }
- .user_right {
- font-size: 20rpx;
- font-weight: 400;
- color: #A1A1A1;
- }
- }
- }
- }
- .popup {
- width: 100%;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 40rpx;
-
- .popup_title {
- width: 100%;
- text-align: center;
- font-size: 36rpx;
- font-weight: 500;
- color: #222222;
- }
- .popup_label {
- font-size: 32rpx;
- font-weight: 500;
- color: #222222;
- margin: 36rpx 0 28rpx;
- }
- .subtitle {
- font-size: 24rpx;
- font-weight: 400;
- color: #919191;
- }
- .popup_box {
- width: 208rpx;
- height: 76rpx;
- background: #F2F2F2;
- border-radius: 4rpx;
- text-align: center;
- font-size: 26rpx;
- font-weight: 400;
- color: #222222;
- line-height: 76rpx;
- margin: 0 24rpx 20rpx 0;
- }
- .popup_box:nth-child(3n) {
- margin: 0 0 20rpx;
- }
- .box_active {
- background: #F1F6FF;
- color: #506DFF;
- }
- .popup_bottom {
- margin: 82rpx 0 10rpx;
- width: 100%;
- .reset_btn {
- width: 240rpx;
- height: 76rpx;
- background: #F1F6FF;
- border-radius: 42rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #506DFF;
- text-align: center;
- line-height: 76rpx;
- }
- .confirm_btn {
- width: 400rpx;
- background: #506DFF;
- color: #FFFFFF;
- }
- }
- }
- .popup1 {
- width: 530rpx;
- height: 520rpx;
- border-radius: 40rpx;
-
- box-sizing: border-box;
- padding: 40rpx;
- .popup1_title {
- font-size: 48rpx;
- font-weight: 400;
- color: #222222;
- }
- .popup1_subtitle {
- font-size: 36rpx;
- font-weight: 500;
- color: #222222;
- margin: 8rpx 0 60rpx;
- }
- .popup1_line {
- width: 52rpx;
- height: 12rpx;
- background: #5572FF;
- border-radius: 6rpx;
- }
- .popup1_text {
- width: 100%;
- text-align: center;
- font-size: 40rpx;
- font-weight: 500;
- color: #222222;
- margin: 28rpx 0 52rpx;
- }
- .popup1_btn {
- margin: 0 auto;
- width: 310rpx;
- height: 84rpx;
- background: linear-gradient(90deg, #506DFF 0%, #88A6FF 100%);
- box-shadow: 0px 4rpx 24rpx 0px rgba(90,119,255,0.36);
- border-radius: 42rpx;
- text-align: center;
- line-height: 84rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- .u-modal__content {
- padding: 0 !important;
- }
- .u-modal {
- width: 530rpx !important;
- background: url('/static/images/comment/eject.png') no-repeat;
- background-size: 100%;
- }
- }
- </style>
|