123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634 |
- <template>
- <view class="index-search">
- <view class="search-header">
- <u-search placeholder="请输入" v-model="keyword1" :show-action="false" @search="tosearch(1)"></u-search>
- <view class="navbar-down">
- <view class="scroll-down u-flex u-row-between">
- <view class="u-flex down-left">
- <text class="text1" :class="{textactive:paixu == 1}" @click="changepaixu(1)">按职位</text>
- <text class="text1" :class="{textactive:paixu == 2}" @click="changepaixu(2)">搜公司</text>
- </view>
- <view class="u-flex down-right">
- <view :style="{background:city.name!=''?'#EDF2F8':'#f3f3f3'}"
- class="right-item u-flex u-row-center" @click="opencity1">
- <text :style="{color:city.name!=''?'#0C66C2':'#666666'}"
- class="text">{{city.name || '全国'}}</text>
- <u-icon v-if="city.name !='' " color="#0C66C2" name="arrow-down-fill" size="8"></u-icon>
- <u-icon v-if="city.name ==''" name="arrow-down-fill" size="8"></u-icon>
- </view>
- <view :style="{background:Object.keys(search_data).length!=0?'#EDF2F8':'#f3f3f3'}"
- class="right-item u-flex u-row-center" @click="openshaixuan">
- <text :style="{color:Object.keys(search_data).length!=0?'#0C66C2':'#666666'}"
- class="text">筛选</text>
- <u-icon v-if="Object.keys(search_data).length!=0 " color="#0C66C2" name="arrow-down-fill"
- size="8"></u-icon>
- <u-icon v-if="Object.keys(search_data).length==0" name="arrow-down-fill" size="8"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="" style="padding: 0 20rpx;">
- <view class="content" @click="todetails(item.id)" v-for="(item,index) in positionlist" :key="item.id">
- <view class="u-flex u-row-between">
- <view class="u-flex">
- <view class="font">{{item.job_name}}</view>
- <view class="back" v-if="item.is_urgent == 1">急聘</view>
- </view>
- <view class="money">{{item.salary_min}}-{{item.salary_max}}K
- <text v-if="item.salary_structure">·{{item.salary_structure}}</text>
- </view>
- </view>
- <view class="u-flex" style="margin: 16rpx 0 14rpx 0;">
- <text class="introduce">{{item.companys.name}}</text>
- <text class="introduce">{{item.companys.company_stage.name}}</text>
- <text class="introduce">{{item.companys.company_scale.name}}</text>
- </view>
- <view class="u-flex" style="margin-bottom: 24rpx;">
- <view class="tabs">
- {{item.education_name}}
- </view>
- <view class="tabs">
- {{item.experience_name}}
- </view>
- </view>
- <view class="u-flex u-row-between u-col-center">
- <view class=" u-flex u-col-center">
- <image :src="item.usermanager.avatar" mode=""
- style="width: 50rpx;height: 50rpx;border-radius: 50%;">
- </image>
- <view class="" style="margin-left: 16rpx;">
- <text>{{item.usermanager.name}}</text>·
- <text>{{item.usermanager.job_text}}</text>
- </view>
- </view>
- <view class="u-flex u-col-center ">
- <view class="address" style="margin -right: 10rpx;">{{item.work_province.slice(0,-1)}}
- </view>
- <view class="address">{{item.work_city}}</view>
- </view>
- </view>
- </view>
- <view class="safe-area-inset-bottom"></view>
- </view>
- <view style="height: 85vh;padding: 0 24rpx;background-color: #fff;" v-if="positionlist.length == 0">
- <view class="u-flex u-row-between">
- <view class="shar">历史搜索</view>
- <view class="" @click="clear">
- <u-icon name="trash" color="rgba(0,0,0,.7)" size="14"></u-icon>
- </view>
- </view>
- <view class="u-flex" style="flex-wrap: wrap;margin-top: 24rpx;">
- <view class="item" style="margin-right: 16rpx;" v-for="(item,index) in search" :key="index">
- {{item}}
- </view>
- </view>
- </view>
- <u-popup border-radius="28" :show="opencity" mode="bottom">
- <view class="change-city-popup u-flex-col">
- <view class="change-city-header u-flex u-row-between">
- <u-icon name="close" size="22" color="#222" @click="opencity = false"></u-icon>
- <text class="text">选择城市</text>
- <u-icon name="close" size="22" color="#fff"></u-icon>
- </view>
- <view class="u-flex-1 u-flex change-city-scroll">
- <scroll-view scroll-y="true" class="change-scroll-left">
- <view class="scroll-left-sheng" v-for="(item,index) in citylist" :key="index"
- :class="{shengactive:cityleftindex == index}" @click="changeleftcity(index)">{{item.name}}
- </view>
- </scroll-view>
- <scroll-view scroll-y="true" class="change-scroll-right u-flex-1">
- <view class="scroll-left-shi" v-for="(item,index) in rightcity" :key="index"
- :class="{shiactive:cityrightindex == index}" @click="changerightcity(index,item)">
- {{item.name}}
- </view>
- </scroll-view>
- </view>
- <view class="change-city-down u-flex u-row-between">
- <text @click="chongzhi">重置</text>
- <text @click="changecity">确定</text>
- </view>
- </view>
- </u-popup>
- <zhao-shaixuan ref="shaixuan" @tosearch="shaixuan"></zhao-shaixuan>
- </view>
- </template>
- <script>
- import {
- getList,
- getareacity
- } from "@/units/inquire.js"
- export default {
- data() {
- return {
- paixu: 1,
- keyword: "",
- keyword1: "",
- category_industry_id: "",
- category_industry_name: '',
- opencity: false,
- citylist: [],
- total: 0,
- height: "",
- list1: [{
- name: "相关"
- },
- {
- name: "推荐"
- },
- {
- name: "最新"
- },
- ],
- list4: [{
- name: "职位"
- },
- {
- name: "校招"
- }
- ],
- page: 1,
- tab1: 0,
- tab2: 0,
- positionlist: [], //职位列表
- is_auth: "", //是否认证
- rightcity: [],
- cityrightindex: "-1",
- cityleftindex: "0",
- city: {},
- search_data: {},
- job_intention: [],
- id: "",
- navheight: null,
- search: []
- }
- },
- onLoad() {
- if (uni.getStorageSync('searchdata')) {
- this.search = uni.getStorageSync('searchdata')
- }
- this.search_data = {}
- // this.getlist()
- this.getcity()
- this.city = {
- name: '',
- id: ''
- }
- },
- onReachBottom() {
- if (this.total != this.positionlist.length) {
- this.page++
- this.getlist()
- }
- },
- methods: {
- clear(){
- uni.removeStorageSync('searchdata')
- this.search = []
- },
- changepaixu(type) {
- this.paixu = type
- this.tosearch()
- },
- opencity1() {
- this.opencity = true
- this.city = {
- name: '',
- id: ''
- }
- },
- shaixuan(e) {
- this.search_data = e
- this.tosearch()
- },
- chongzhi() {
- this.city = {
- name: '',
- id: ''
- }
- this.opencity = false
- this.tosearch()
- },
- changecity() {
- if (this.cityrightindex == -1) {
- this.$u.toast("请选择城市")
- return
- }
- this.city = {
- name: this.citylist[this.cityleftindex].childlist[this.cityrightindex].name,
- id: this.citylist[this.cityleftindex].childlist[this.cityrightindex].id
- }
- console.log(this.city);
- this.opencity = false
- this.tosearch()
- },
- changerightcity(index, item) {
- this.cityrightindex = index
- },
- changeleftcity(index) {
- this.cityleftindex = index
- this.cityrightindex = -1
- this.rightcity = this.citylist[this.cityleftindex].childlist
- },
- getcity() {
- getareacity().then(res => {
- console.log(res);
- this.citylist = res.data
- this.rightcity = res.data[0].childlist
- })
- },
- tosearch(type) {
- this.positionlist = []
- if (type == 1) {
- this.keyword = this.keyword1
- }
- this.page = 1
- this.total = 0
- this.getlist()
- if(this.keyword1 != ''){
- this.search.push(this.keyword1)
- }
- uni.setStorageSync('searchdata', this.search)
- },
- openshaixuan() {
- this.$refs.shaixuan.openshaixuan = true
- },
- getlist() {
- getList({
- page: this.page,
- type: this.tab2,
- search_field: this.paixu == 1 ? 'job_name' : 'name',
- search: this.keyword,
- search_data: {
- ...this.search_data,
- city_id: this.city.id,
- category_industry_id: this.category_industry_id
- }
- }).then(res => {
- if (this.page == 1) {
- this.positionlist = res.data.data
- } else {
- this.positionlist = this.positionlist.concat(res.data.data)
- }
- this.total = res.data.total
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .item {
- height: 54rpx;
- background: #F3F3F3;
- border-radius: 6rpx;
- line-height: 54rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- padding: 0 18rpx;
- }
- .shar {
- font-size: 34rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #222222;
- }
- page {
- background-color: #F3F3F3;
- }
- .content {
- padding: 24rpx 20rpx;
- margin-top: 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- .font {
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- line-height: 44rpx;
- max-width: 326rpx;
- overflow: hidden; //超出隐藏
- white-space: nowrap; //不换行,同一行展示
- text-overflow: ellipsis; //设置超出部分以省略号展示
- }
- .back {
- width: 58rpx;
- height: 32rpx;
- background: #FF5335;
- border-radius: 6rpx;
- font-size: 22rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 32rpx;
- text-align: center;
- margin-left: 16rpx;
- }
- .money {
- font-size: 32rpx;
- font-family: JDZhengHT-Regular, JDZhengHT;
- font-weight: 400;
- color: #0C66C2;
- }
- .introduce {
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #555555;
- line-height: 40rpx;
- margin-right: 16rpx;
- }
- .tabs {
- background: #F3F3F3;
- border-radius: 4rpx;
- padding: 6rpx 14rpx;
- margin-right: 16rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #5F5F5F;
- height: 34rpx;
- line-height: 34rpx;
- }
- }
- .index-search {
- .change-city-popup {
- height: calc(100vh - 144rpx);
- .change-city-scroll {
- min-height: 1rpx;
- .change-scroll-right {
- height: 100%;
- .scroll-left-shi {
- line-height: 100rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- padding: 0 32rpx;
- }
- .shiactive {
- color: #0C66C2;
- }
- }
- .change-scroll-left {
- width: 304rpx;
- height: 100%;
- background-color: #F5F5F5;
- .scroll-left-sheng {
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- padding: 28rpx 32rpx;
- }
- .shengactive {
- background-color: #fff;
- color: #0C66C2;
- }
- }
- }
- .change-city-down {
- padding: 12rpx 32rpx;
- text:first-child {
- width: 208rpx;
- line-height: 84rpx;
- background: #F3F3F3;
- border-radius: 10rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #555555;
- }
- text:last-child {
- width: 454rpx;
- line-height: 84rpx;
- background: #0C66C2;
- border-radius: 10rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- .change-city-header {
- height: 120rpx;
- padding: 0 32rpx;
- .text {
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- }
- }
- }
- .index-item {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 20rpx auto;
- padding: 0 20rpx 24rpx 20rpx;
- .item-down {
- text:first-child {
- font-size: 22rpx;
- font-family: SFPro-Regular, SFPro;
- font-weight: 400;
- color: #666666;
- }
- text:last-child {
- font-size: 22rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- }
- }
- .item-gongsi {
- margin-bottom: 16rpx;
- .text2 {
- font-size: 24rpx;
- font-family: SFPro-Regular, SFPro;
- font-weight: 400;
- color: #666666;
- }
- .logo {
- width: 42rpx;
- height: 42rpx;
- border-radius: 10rpx;
- margin-right: 16rpx;
- }
- .text1 {
- max-width: 192rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #444444;
- margin-right: 12rpx;
- }
- }
- .item-label {
- margin-bottom: 20rpx;
- text {
- margin-right: 16rpx;
- line-height: 46rpx;
- background: #F7F7F7;
- border-radius: 4rpx;
- padding: 0 14rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #5F5F5F;
- }
- }
- .item-top {
- height: 88rpx;
- .text1 {
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- margin-right: 16rpx;
- }
- .text2 {
- width: 50rpx;
- line-height: 32rpx;
- background: rgba(255, 83, 53, 0.1);
- border-radius: 4rpx;
- text-align: center;
- font-size: 20rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FF5335;
- margin-right: 12rpx;
- }
- .text3 {
- width: 90rpx;
- line-height: 32rpx;
- background: #FFF2E8;
- border-radius: 4rpx;
- text-align: center;
- font-size: 20rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FF8620;
- margin-right: 12rpx;
- }
- .text4 {
- line-height: 32rpx;
- background: #E6EFF8;
- border-radius: 4rpx;
- padding: 0 4rpx;
- text-align: center;
- font-size: 20rpx;
- font-family: SFPro-Regular, SFPro;
- font-weight: 400;
- color: #0C66C2;
- }
- .text5 {
- font-size: 32rpx;
- font-family: JDZhengHT-Regular, JDZhengHT;
- font-weight: 400;
- color: #0C66C2;
- }
- }
- }
- .search-header {
- position: sticky;
- top: 0;
- left: 0;
- z-index: 10;
- background-color: #fff;
- padding: 20rpx 24rpx;
- .navbar-down {
- padding-top: 20rpx;
- .scroll-down {
- .down-right {
- .right-item {
- // width: 100rpx;
- padding: 0 20rpx;
- height: 52rpx;
- background: #F3F3F3;
- border-radius: 4rpx;
- margin-left: 20rpx;
- .text {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- margin-right: 4rpx;
- }
- image {
- width: 16rpx;
- height: 16rpx;
- }
- }
- }
- .down-left {
- .text1 {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #777;
- margin-right: 32rpx;
- }
- .textactive {
- color: #222222;
- }
- }
- }
- }
- }
- }
- </style>
|