123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796 |
- <template>
- <view>
- <u-navbar back-text="搜索" back-icon-size="28" back-icon-color="#ffffff"
- :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
- <!-- 搜索框 -->
- <view class="search">
- <view class="search-box">
- <view class="option">
- <nxsearch :selectList="selectList"
- :defaultSelectIndex="defaultSelectIndex"
- button="inside" @search="doSearch" @confirm="doSearch"
- @selectItem="selectItem"
- v-model="searchQuery.keyword" :placeholder="'输入关键字'+selectList[searchQuery.selectIndex].name" />
- </view>
- </view>
- </view>
-
- <!-- 搜索历史 -->
- <view class="search-history" v-show="step" >
- <view class="top">
- <view class="title">
- 搜索历史
- </view>
- <view class="clear" @click="clear()">
- 清空历史
- </view>
- </view>
- <view class="history">
- <view class="tag" v-for="(mod,index) in searchHistory" :key="index" v-text="mod"
- @click="searchQuery.keyword=mod,submit()">
- 打杂
- </view>
- </view>
- </view>
- <!-- 搜索结果 -->
- <view class="result" v-if="!step&&searchQuery.selectIndex==0" >
- <view class="tabs">
- <view class="left" style=" width: 33%;">
- <u-tabs bg-color="#F0F0F2" :list="tabList" :is-scroll="false" :current="current"
- @change="change"></u-tabs>
- </view>
- <view class="screen" @click="popupShowtrue">
- <view class="icon">
- <img src="@/assets/img/riLine-filter-line@1x.png" alt="">
- </view>
- <view>筛选</view>
- </view>
- </view>
- <view class="result-item result-item1" v-for="(item,i) in tabList[current].list" :key="i"
- @click="gotoUrl('pages/packages/choreInformation/jobSearchDetails?id='+item.id)" >
- <!-- 照片 -->
- <view class="photo">
- <u-avatar :src="item.photo"></u-avatar>
-
- </view>
- <view class="content">
- <!-- 职位薪水 -->
- <view class="top">
- <view class="position">
- {{item.intendedIndustriesN}}
- </view>
- <view class="salary">
- {{item.hopeSalary}}{{getUnit(item)}}
- </view>
- </view>
- <view class="issuer">
- {{item.personName}}
- </view>
- <view class="bottom">
- <view class="tags">
- <view class="tag-item">
- {{item.gender==1?'男':'女'}}
- </view>
- <view class="tag-item">
- {{item.age}}岁
- </view>
- <view class="tag-item" v-if="item.educationN" >
- {{item.educationN}}
- </view>
-
- </view>
-
- <view class="date">
- {{getTime(item)}}
- </view>
- </view>
- </view>
-
- </view>
-
- <u-divider bgNoneColor="#ffffff" style="background: #F0F0F2;" v-if="tabList[current].recordsTotal==tabList[current].list.length"
- :isnone="tabList[current].recordsTotal==0" nonetext="没有找到相关内容"
- border-color="#CFD2D5">已经到底了</u-divider>
- </view>
-
- <!-- 搜索结果 -->
- <view class="result" v-if="!step&&searchQuery.selectIndex==1" >
- <view class="tabs">
- <view class="left">
- <u-tabs bg-color="#F0F0F2" :list="tabList" :is-scroll="false" :current="current"
- @change="change"></u-tabs>
- </view>
- <view class="screen" @click="popupShowtrue">
- <view class="icon">
- <img src="@/assets/img/riLine-filter-line@1x.png" alt="">
- </view>
- <view>筛选</view>
- </view>
- </view>
- <view class="result-item" v-for="(item,i) in tabList[current].list" :key="i"
-
- @click="gotoUrl('pages/packages/jobInformation/jobDetails?id='+item.id)">
-
- <view class="content-1">
- <!-- 职位 -->
- <view class="position">
- {{item.positionName}}
- </view>
- <!-- 薪水 -->
- <view class="salary">
- {{item.salary}}{{getUnit(item)}}
- </view>
- </view>
- <view class="content-2">
- <!-- 标签 -->
- <view class="tag">
- <view class="tag-item">
- {{item.workArea}}
- </view>
- <view class="tag-item">
- {{item.settlementMethodN}}
- </view>
- <view class="tag-item">
- {{item.industryN}}
- </view>
-
- </view>
- <!-- 日期 -->
- <view class="date">
- {{getTime(item)}}
- </view>
- </view>
- <view class="content-3">
- <view class="issuer">
- {{item.contacts}}
- </view>
- <view class="address">
- {{item.address}}
- </view>
- </view>
- </view>
-
-
- <u-divider bgNoneColor="#ffffff" v-if="tabList[current].recordsTotal==tabList[current].list.length"
- :isnone="tabList[current].recordsTotal==0" nonetext="没有找到相关内容"
- border-color="#CFD2D5">已经到底了</u-divider>
- </view>
-
- <jkpop ref="pop" @reset="reset" @queryBtn="queryBtn" ></jkpop>
-
-
-
- </view>
- </template>
- <script>
- import jkpop from "@/pages/packages/as-components/jk-popup.vue"
-
- import * as API from '@/apis/pagejs/packages.js'
- import nxsearch from "@/components/nx-search.vue"
- import * as API_weixin from '@/apis/weixin.js'
- export default {
- components: {
- jkpop,nxsearch
- },
- data() {
- return {
- step: true, //步骤 ,true第一步查询,false第二步显示结果
- searchQuery: {
- keyword: '',
- selectIndex: 0
- },
- selectList: [{
- id: 1,
- name: '找零工'
- },
- {
- id: 0,
- name: '找工作'
- }
- ],
- recordsTotal: 0,
- listForm: {
- typeId: "",
- title: "",
- pageIndex: 1,
- pageSize: 4,
- totalPage: 1,
- },
- current: 0,
- list: [],
- searchHistory: [],
- tabList:[],
- tabList2: [{
- name: '最新',
- pageIndex: 1,
- pageSize: 20,
- statusType:"",
- list:[],
- recordsTotal:0
- }, {
- name: '日结',
- unit:"日",
- statusType:"1",
- pageIndex: 1,
- pageSize: 20,
- list:[],
- recordsTotal:0
- }, {
- name: '周结',
- unit:"周",
- pageIndex: 1,
- pageSize: 20,
- statusType:"2",
- list:[],
- recordsTotal:0
-
- }, {
- name: '月结',
- unit:"月",
- pageIndex: 1,
- pageSize: 20,
- statusType:"3",
- list:[],
- recordsTotal:0
- }],
-
-
- tabList1: [{
- name: '最新',
- pageIndex: 1,
- pageSize: 20,
- statusType:"1",
- list:[],
- recordsTotal:0
- }, {
- name: '最热',
- pageIndex: 1,
- pageSize: 20,
- statusType:"2",
- list:[],
- recordsTotal:0
- }],
- workList: [
-
- ],
-
- defaultSelectIndex:0,
- queryForm:{
-
- }
- }
- },
- onLoad(op) {
- if (op.type) {
- this.searchQuery.selectIndex = op.type
- this.defaultSelectIndex=op.type
- //this.$refs.nxsearch.selectItem(op.type)
- }
- console.log(this.searchQuery,op)
-
- var sz = this.carhelp.get("setSearchHistory");
- if (sz) {
- this.searchHistory = sz
- } else {
- this.searchHistory = []
- }
- },
- onReady() {
-
- },
- onReachBottom() {
- if (this.list.length < this.recordsTotal) {
- this.myLoadmore();
- }
- },
- methods: {
-
-
- ckInfo(id) {
- var url = "/pages/news/articleDetails?id=" + id;
- uni.navigateTo({
- url: url
- })
- },
- clear() {
- this.setSearchHistory([]);
-
- },
- setHistory() {
- //搜索记录保存
- var key = this.searchQuery.keyword;
- var sz = this.searchHistory;
- if (!sz) {
- sz = [];
- }
- var temp = [];
- //去重 ,后插入的,排队到最前面
- if (sz.length) {
- for (var i in sz) {
- if (i == 0) {
- temp.push(key);
- }
- if (sz[i] == key) {
- continue;
- }
- temp.push(sz[i]);
- if (temp.length == 10) {
- break
- }
- }
- } else {
- temp.push(key);
- }
- this.setSearchHistory(temp);
- },
- setSearchHistory(obj) {
- this.searchHistory = obj
- this.carhelp.set("setSearchHistory", obj)
- },
- blur() {
- },
- focus() {
- this.step = true;
- },
- submit() {
- if (!this.searchQuery.keyword) {
- uni.showToast({
- title:"请输入内容",
- icon:"none"
- })
- return
- }
- this.setHistory()
-
- this.listForm.pageIndex = 1
- // var ref =this.$refs.searchinput.getRef()
- // ref.blur()
- this.query();
- },
- myLoadmore() {
- this.listForm.pageIndex += 1;
- this.query();
- },
- query() {
-
- if(this.searchQuery.selectIndex==0){
- this.tabList=[
- ...this.tabList1
- ]
- }
- if(this.searchQuery.selectIndex==1){
- this.tabList=[
- ...this.tabList2
- ]
- }
- this.step = false;
-
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
-
- var list = this.tabList[this.current].list
- var obj = this.tabList[this.current]
- var listForm = {
- ...obj,
- ...this.queryForm
-
- }
- listForm.status= this.selectList[this.searchQuery.selectIndex].id,
- listForm.content= this.searchQuery.keyword
- delete listForm.list
-
- API.findRecruitSearch(listForm).then((res) => {
- uni.hideLoading();
- if (listForm.pageIndex == 1) {
- list = res.data.data;
- } else {
- list = [
- ...list,
- ...res.data.data
- ];
- }
-
- this.tabList[this.current].list = list
-
- this.tabList[this.current].recordsTotal = res.data.recordsTotal;
- }).catch(error => {
- uni.showToast({icon: 'none',
- title: error
- })
- //this.getPhone()
- })
- },
- // 执行搜索
- doSearch(searchQuery) {
- //.log('searchQuery', searchQuery);
- this.searchQuery=searchQuery;
- this.submit()
- },
- change(index) {
- this.current = index;
- var list = this.tabList[this.current].list
- if (list.length == 0) {
- this.query();
- }
- },
- close(){},
- popupShowtrue(){
- this.$refs.pop.show();
- },
- queryBtn(queryForm){
- this.$refs.pop.hide();
- this.current = 0;
- this.tabList[this.current].list=[]
-
- this.tabList[this.current].pageIndex = 1;
-
- // this.saralyChecked = -1;
- // this.workChecked = -1;
-
- // this.queryForm.salaryStart=""
- // this.queryForm.salaryEnd=""
- // this.queryForm.workExp=""
-
- this.queryForm=queryForm
-
- this.query();
- },
- reset(queryForm) {
-
-
- this.queryBtn(queryForm)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- // 搜索框
- .search {
- padding: 16rpx 32rpx;
- .search-box {
- border-radius: 50px;
- // background-color: rgba(243, 246, 249, 1);
- height: 72rpx;
- line-height: 72rpx;
- }
- }
- // 搜索历史
- .search-history {
- padding: 0 32rpx;
- margin-top: 40rpx;
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title {
- color: #101010;
- }
- .clear {
- color: rgba(169, 169, 169, 1);
- font-size: 24rpx;
- }
- }
- .history {
- display: flex;
- margin-top: 16rpx;
- .tag {
- width: 144rpx;
- height: 56rpx;
- line-height: 56rpx;
- border-radius: 4px;
- background-color: rgba(241, 244, 247, 1);
- color: rgba(88, 88, 88, 1);
- font-size: 12px;
- text-align: center;
- font-family: Arial;
- margin-right: 16rpx;
- }
- }
- }
-
- // 搜索结果
- .result {
- background-color: #fff;
-
- .tabs {
- padding-right: 32rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f1f1f1;
-
- .left {
- width: 68%;
-
- /deep/.u-tabs {
- background-color: #fff !important;
-
- }
- }
-
- .screen {
- display: flex;
- align-items: center;
- color: rgba(39, 149, 253, 1);
- font-size: 16px;
-
- img {
- width: 16px;
- height: 16px;
- vertical-align: middle;
- margin-right: 4rpx;
- }
- }
-
- }
- .result-item1{
- display: flex;
- }
- .result-item {
- padding: 24rpx 0;
- margin: 0 32rpx;
- border-bottom: 1px solid #F0F0F2;
-
-
- // 照片
- .photo {
- width: 96rpx;
- height: 96rpx;
- overflow: hidden;
- border-radius: 50px;
- border: 1px solid rgba(255, 255, 255, 1);
-
- img {
- width: 100%;
- height: 100%;
- }
- }
- .content {
- margin-left: 24rpx;
- flex: 1;
-
- // 职位薪水
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 36rpx;
-
- .position {
- color: rgba(16, 16, 16, 1);
-
- font-family: 'PingFangSC-medium';
- }
-
- .salary {
- color: rgba(255, 61, 0, 1);
- font-size: 32rpx;
- }
- }
-
- // 发布人
- .issuer {
- margin-top: 16rpx;
- }
-
- // 标签和时间
- .bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 24rpx;
-
- .tags {
- display: flex;
-
- .tag-item {
-
- padding: 0 8rpx;
- height: 36rpx;
- line-height: 36rpx;
- border-radius: 4px;
- background-color: rgba(241, 241, 247, 1);
- color: rgba(129, 127, 153, 1);
- font-size: 24rpx;
- text-align: center;
- margin-right: 8rpx;
- }
- }
-
- .date {
- color: rgba(153, 153, 153, 1);
- font-size: 24rpx;
-
- }
- }
- }
- .content-1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- // 职位
- .position {
- color: rgba(16, 16, 16, 1);
- font-size: 36rpx;
- font-family: 'PingFang Medium';
- }
-
- // 薪水
- .salary {
- color: rgba(255, 61, 0, 1);
- font-size: 32rpx;
- font-family: 'PingFang Medium';
- }
- }
-
- .content-2 {
- margin-top: 12rpx;
- display: flex;
- justify-content: space-between;
-
- // 标签
- .tag {
- display: flex;
-
- .tag-item {
- min-width: 64rpx;
- height: 36rpx;
- line-height: 36rpx;
- border-radius: 8rpx;
- background-color: rgba(241, 241, 247, 1);
- color: rgba(129, 127, 153, 1);
- font-size: 24rpx;
- text-align: center;
- margin-right: 12rpx;
-
- padding: 0 8rpx;
- }
- }
-
- // 日期
- .date {
- color: rgba(153, 153, 153, 1);
- font-size: 24rpx;
- }
- }
-
- .content-3 {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- .issuer {
- color: rgba(51, 51, 51, 1);
- font-size: 24rpx;
- }
-
- .address {
- color: rgba(51, 51, 51, 1);
- font-size: 24rpx;
- }
- }
-
- }
-
-
-
-
- }
-
- // 筛选框
- .popup-content {
- padding: 32rpx;
-
- .headline {
- color: #101010;
- font-size: 40rpx;
- text-align: center;
- }
-
- //行业
- .industry,.salary-package,.work-experience,
- .clearing-form,
- .salary-form {
- margin-top: 16rpx;
- margin-bottom: 76rpx;
- .title {
- font-size: 32rpx;
- color: #111111;
- }
-
- // 选项
- .options {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- margin-top: 24rpx;
-
- .item {
- height: 56rpx;
- line-height: 56rpx;
- padding: 0 32rpx;
- margin-bottom: 16rpx;
- color: #999999;
- background-color: #F3F3F4;
- border-radius: 4px;
- }
-
- .checked {
- background-color: #2795FD;
- color: #fff;
- }
- }
- }
-
- .button {
- display: flex;
-
- margin-top: 8rpx;
- .reset:after{
- border:0
- }
- .reset {
- color: #999999;
- background-color: #F3F3F4;
- width: 200rpx;
- height: 72rpx;
- line-height: 72rpx;
- border-radius: 8px;
- }
-
- .confirm {
- width: 440rpx;
- background-color: #2795FD;
- color: #fff;
- height: 72rpx;
- line-height: 72rpx;
- border-radius: 8px;
- }
- }
- }
-
- .salary-form,.salary-package,.work-experience,
- .clearing-form {
- .options {
- justify-content: start !important;
- }
-
- .item {
- margin-right: 24rpx;
- }
- }
-
- /deep/.u-close--top-right {
- top: 44rpx;
- }
- </style>
|