2024-11-08 11:55:23 +08:00
|
|
|
|
<template>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<view class="app-container">
|
2024-11-18 16:33:37 +08:00
|
|
|
|
<view class="index-AI">AI+就业服务程序</view>
|
|
|
|
|
<view class="index-option">
|
|
|
|
|
<view class="option-left">
|
|
|
|
|
<view class="left-item" @click="navTo('/pages/nearby/nearby')">附近</view>
|
|
|
|
|
<view class="left-item" @click="navTo('/packageA/pages/choiceness/choiceness')">精选</view>
|
|
|
|
|
<view class="left-item">职业图谱</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="option-right">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<input
|
|
|
|
|
class="uni-input right-input"
|
|
|
|
|
adjust-position="false"
|
|
|
|
|
confirm-type="search"
|
|
|
|
|
v-model="inputText"
|
|
|
|
|
@confirm="searchJobTitle"
|
|
|
|
|
/>
|
|
|
|
|
<uni-icons
|
|
|
|
|
class="iconsearch"
|
|
|
|
|
color="#FFFFFF"
|
|
|
|
|
type="search"
|
|
|
|
|
size="20"
|
|
|
|
|
@click="searchJobTitle"
|
|
|
|
|
></uni-icons>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- tab -->
|
|
|
|
|
<view class="tab-options">
|
|
|
|
|
<scroll-view :scroll-x="true" :show-scrollbar="false" class="tab-scroll">
|
|
|
|
|
<view class="tab-op-left">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<view
|
|
|
|
|
class="tab-list"
|
|
|
|
|
:class="{ tabchecked: state.tabIndex === 'all' }"
|
|
|
|
|
@click="choosePosition('all')"
|
|
|
|
|
>
|
|
|
|
|
全部
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="tab-list"
|
|
|
|
|
:class="{ tabchecked: state.tabIndex === index }"
|
|
|
|
|
v-for="(item, index) in userInfo.jobTitle"
|
|
|
|
|
:key="index"
|
|
|
|
|
@click="choosePosition(index)"
|
|
|
|
|
>
|
|
|
|
|
{{ item }}
|
|
|
|
|
</view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
<view class="tab-op-right">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<uni-icons type="plusempty" style="margin-right: 10rpx" size="20" @click="editojobs"></uni-icons>
|
|
|
|
|
<view class="tab-recommend">
|
|
|
|
|
<latestHotestStatus @confirm="handelHostestSearch"></latestHotestStatus>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tab-filter" @click="showFilter = true">
|
|
|
|
|
<view class="tab-number" v-show="pageState.total">{{ formatTotal(pageState.total) }}</view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
<image class="image" src="/static/icon/filter.png"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- waterfalls -->
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<scroll-view :scroll-y="true" class="falls-scroll" @scrolltolower="scrollBottom">
|
2024-11-18 16:33:37 +08:00
|
|
|
|
<view class="falls">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<custom-waterfalls-flow ref="waterfallsFlowRef" :value="list">
|
|
|
|
|
<template v-slot:default="job">
|
|
|
|
|
<view class="item" v-if="!job.recommend">
|
|
|
|
|
<view class="falls-card" @click="nextDetail(job)">
|
|
|
|
|
<view class="falls-card-title">{{ job.jobTitle }}</view>
|
|
|
|
|
<view class="falls-card-pay">
|
|
|
|
|
<view class="pay-text">
|
|
|
|
|
<Salary-Expectation
|
|
|
|
|
:max-salary="job.maxSalary"
|
|
|
|
|
:min-salary="job.minSalary"
|
|
|
|
|
:is-month="true"
|
|
|
|
|
></Salary-Expectation>
|
|
|
|
|
</view>
|
|
|
|
|
<image v-if="job.isHot" class="flame" src="/static/icon/flame.png"></image>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="falls-card-education" v-if="job.education">
|
|
|
|
|
<dict-Label dictType="education" :value="job.education"></dict-Label>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="falls-card-experience" v-if="job.experience">
|
|
|
|
|
<dict-Label dictType="experience" :value="job.experience"></dict-Label>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="falls-card-company">{{ job.companyName }}</view>
|
|
|
|
|
<view class="falls-card-company">
|
|
|
|
|
青岛
|
|
|
|
|
<dict-Label dictType="area" :value="job.jobLocationAreaCode"></dict-Label>
|
|
|
|
|
</view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
<view class="falls-card-pepleNumber">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<view>{{ job.postingDate || '发布日期' }}</view>
|
|
|
|
|
<view>{{ vacanciesTo(job.vacancies) }}</view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="falls-card-matchingrate">
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<view class=""><matchingDegree :job="job"></matchingDegree></view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
<uni-icons type="star" size="30"></uni-icons>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<!-- <uni-icons type="star-filled" color="#FFCB47" size="30"></uni-icons> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item" v-else>
|
|
|
|
|
<view class="recommend-card">
|
|
|
|
|
<view class="card-content">
|
|
|
|
|
<view class="recommend-card-title">在找「{{ job.jobCategory }}」工作吗?</view>
|
|
|
|
|
<view class="recommend-card-tip">{{ job.tip }}</view>
|
|
|
|
|
<view class="recommend-card-controll">
|
|
|
|
|
<view class="controll-yes" @click="findJob(job)">是的</view>
|
|
|
|
|
<view class="controll-no">不是</view>
|
|
|
|
|
</view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
</custom-waterfalls-flow>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<loadmore ref="loadmoreRef"></loadmore>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<screeningJobRequirementsVue
|
|
|
|
|
v-model:show="showFilter"
|
|
|
|
|
@confirm="handleFilterConfirm"
|
|
|
|
|
></screeningJobRequirementsVue>
|
|
|
|
|
<!-- 岗位推荐组件 -->
|
|
|
|
|
<modify-expected-position-vue v-model:show="showModel" :jobList="jobList" />
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
2024-11-08 11:55:23 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
import { reactive, inject, watch, ref, onMounted, getCurrentInstance } from 'vue';
|
|
|
|
|
import img from '@/static/icon/filter.png';
|
|
|
|
|
import dictLabel from '@/components/dict-Label/dict-Label.vue';
|
|
|
|
|
const { $api, navTo, vacanciesTo, formatTotal } = inject('globalFunction');
|
2024-11-08 11:55:23 +08:00
|
|
|
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
2025-03-28 15:19:42 +08:00
|
|
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
|
import useUserStore from '@/stores/useUserStore';
|
|
|
|
|
const { userInfo } = storeToRefs(useUserStore());
|
|
|
|
|
import useDictStore from '@/stores/useDictStore';
|
|
|
|
|
const { getTransformChildren } = useDictStore();
|
|
|
|
|
import screeningJobRequirementsVue from '@/components/screening-job-requirements/screening-job-requirements.vue';
|
|
|
|
|
import modifyExpectedPositionVue from '@/components/modifyExpectedPosition/modifyExpectedPosition.vue';
|
|
|
|
|
import { useRecommedIndexedDBStore, jobRecommender } from '@/stores/useRecommedIndexedDBStore.js';
|
|
|
|
|
const recommedIndexDb = useRecommedIndexedDBStore();
|
2024-11-18 16:33:37 +08:00
|
|
|
|
const waterfallsFlowRef = ref(null);
|
2025-03-28 15:19:42 +08:00
|
|
|
|
const loadmoreRef = ref(null);
|
2024-11-08 11:55:23 +08:00
|
|
|
|
const state = reactive({
|
2025-03-28 15:19:42 +08:00
|
|
|
|
tabIndex: 'all',
|
|
|
|
|
search: '',
|
2024-11-08 11:55:23 +08:00
|
|
|
|
});
|
2025-03-28 15:19:42 +08:00
|
|
|
|
const list = ref([]);
|
|
|
|
|
const pageState = reactive({
|
|
|
|
|
page: 0,
|
|
|
|
|
total: 0,
|
|
|
|
|
maxPage: 2,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
search: {
|
|
|
|
|
order: 0,
|
|
|
|
|
},
|
2024-11-08 11:55:23 +08:00
|
|
|
|
});
|
2025-03-28 15:19:42 +08:00
|
|
|
|
const inputText = ref('');
|
|
|
|
|
const showFilter = ref(false);
|
|
|
|
|
const showModel = ref(false);
|
|
|
|
|
const jobList = ref([
|
|
|
|
|
{ name: '销售顾问', highlight: true },
|
|
|
|
|
{ name: '销售管理', highlight: true },
|
|
|
|
|
{ name: '销售工程师', highlight: true },
|
|
|
|
|
{ name: '算法工程师', highlight: false },
|
|
|
|
|
{ name: '生产经理', highlight: false },
|
|
|
|
|
{ name: '市场策划', highlight: false },
|
|
|
|
|
{ name: '商务服务', highlight: false },
|
|
|
|
|
{ name: '客服', highlight: false },
|
|
|
|
|
{ name: '创意总监', highlight: false },
|
|
|
|
|
]);
|
|
|
|
|
|
2024-11-08 11:55:23 +08:00
|
|
|
|
onLoad(() => {
|
2025-03-28 15:19:42 +08:00
|
|
|
|
getJobRecommend('refresh');
|
2024-11-08 11:55:23 +08:00
|
|
|
|
});
|
|
|
|
|
|
2025-03-28 15:19:42 +08:00
|
|
|
|
function nextDetail(job) {
|
|
|
|
|
// 记录岗位类型,用作数据分析
|
|
|
|
|
if (job.jobCategory) {
|
|
|
|
|
const recordData = recommedIndexDb.JobParameter(job);
|
|
|
|
|
recommedIndexDb.addRecord(recordData);
|
|
|
|
|
}
|
|
|
|
|
navTo(`/packageA/pages/post/post?jobId=${btoa(job.jobId)}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleModelConfirm(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function findJob(item) {
|
|
|
|
|
console.log(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleFilterConfirm(val) {
|
|
|
|
|
pageState.search = {
|
|
|
|
|
order: pageState.search.order,
|
|
|
|
|
};
|
|
|
|
|
for (const [key, value] of Object.entries(val)) {
|
|
|
|
|
pageState.search[key] = value.join(',');
|
|
|
|
|
}
|
|
|
|
|
getJobList('refresh');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handelHostestSearch(val) {
|
|
|
|
|
pageState.search.order = val.value;
|
|
|
|
|
getJobList('refresh');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function scrollBottom() {
|
|
|
|
|
loadmoreRef.value.change('loading');
|
|
|
|
|
if (state.tabIndex === 'all') {
|
|
|
|
|
getJobRecommend();
|
|
|
|
|
} else {
|
|
|
|
|
getJobList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function editojobs() {
|
|
|
|
|
console.log('jobs');
|
|
|
|
|
showModel.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function choosePosition(index) {
|
|
|
|
|
state.tabIndex = index;
|
|
|
|
|
list.value = [];
|
|
|
|
|
if (index === 'all') {
|
|
|
|
|
pageState.search = {};
|
|
|
|
|
inputText.value = '';
|
|
|
|
|
getJobRecommend('refresh');
|
|
|
|
|
} else {
|
|
|
|
|
// const id = useUserStore().userInfo.jobTitleId.split(',')[index];
|
|
|
|
|
pageState.search.jobTitle = useUserStore().userInfo.jobTitle[index];
|
|
|
|
|
inputText.value = '';
|
|
|
|
|
getJobList('refresh');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function searchJobTitle() {
|
|
|
|
|
state.tabIndex = '-1';
|
|
|
|
|
pageState.search = {
|
|
|
|
|
jobTitle: inputText.value,
|
|
|
|
|
};
|
|
|
|
|
getJobList('refresh');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function changeRecommend() {}
|
|
|
|
|
|
|
|
|
|
function changeLatestHotestStatus(e) {}
|
|
|
|
|
|
|
|
|
|
function getJobRecommend(type = 'add') {
|
|
|
|
|
if (type === 'refresh') {
|
|
|
|
|
list.value = [];
|
|
|
|
|
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
|
|
|
|
|
}
|
|
|
|
|
let params = {
|
|
|
|
|
pageSize: pageState.pageSize,
|
|
|
|
|
sessionId: useUserStore().seesionId,
|
|
|
|
|
...pageState.search,
|
|
|
|
|
};
|
|
|
|
|
let comd = { recommend: true, jobCategory: '', tip: '确认你的兴趣,为您推荐更多合适的岗位' };
|
|
|
|
|
$api.createRequest('/app/job/recommend', params).then((resData) => {
|
|
|
|
|
const { data, total } = resData;
|
|
|
|
|
pageState.total = 0;
|
|
|
|
|
if (type === 'add') {
|
|
|
|
|
// 记录系统
|
|
|
|
|
recommedIndexDb.getRecord().then((res) => {
|
|
|
|
|
if (res.length) {
|
|
|
|
|
// 数据分析系统
|
|
|
|
|
const resultData = recommedIndexDb.analyzer(res);
|
|
|
|
|
const { sort, result } = resultData;
|
|
|
|
|
// 岗位询问系统
|
|
|
|
|
const conditionCounts = Object.fromEntries(
|
|
|
|
|
sort.filter((item) => item[1] > 1) // 过滤掉次数为 1 的项
|
|
|
|
|
);
|
|
|
|
|
jobRecommender.updateConditions(conditionCounts);
|
|
|
|
|
|
|
|
|
|
const question = jobRecommender.getNextQuestion();
|
|
|
|
|
if (question) {
|
|
|
|
|
comd.jobCategory = question;
|
|
|
|
|
data.unshift(comd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const reslist = dataToImg(data);
|
|
|
|
|
list.value.push(...reslist);
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
list.value = dataToImg(data);
|
|
|
|
|
}
|
|
|
|
|
// 切换状态
|
|
|
|
|
if (data.length < pageState.pageSize) {
|
|
|
|
|
loadmoreRef.value.change('noMore');
|
|
|
|
|
} else {
|
|
|
|
|
loadmoreRef.value.change('more');
|
|
|
|
|
}
|
|
|
|
|
// 当没有岗位,刷新sessionId重新啦
|
|
|
|
|
if (!data.length) {
|
|
|
|
|
useUserStore().initSeesionId();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getJobList(type = 'add') {
|
|
|
|
|
if (type === 'add' && pageState.page < pageState.maxPage) {
|
|
|
|
|
pageState.page += 1;
|
|
|
|
|
}
|
|
|
|
|
if (type === 'refresh') {
|
|
|
|
|
list.value = [];
|
|
|
|
|
pageState.page = 1;
|
|
|
|
|
pageState.maxPage = 2;
|
|
|
|
|
waterfallsFlowRef.value.refresh();
|
|
|
|
|
}
|
|
|
|
|
let params = {
|
|
|
|
|
current: pageState.page,
|
|
|
|
|
pageSize: pageState.pageSize,
|
|
|
|
|
...pageState.search,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$api.createRequest('/app/job/list', params).then((resData) => {
|
|
|
|
|
const { rows, total } = resData;
|
|
|
|
|
if (type === 'add') {
|
|
|
|
|
const str = pageState.pageSize * (pageState.page - 1);
|
|
|
|
|
const end = list.value.length;
|
|
|
|
|
const reslist = dataToImg(rows);
|
|
|
|
|
list.value.splice(str, end, ...reslist);
|
|
|
|
|
} else {
|
|
|
|
|
list.value = dataToImg(rows);
|
|
|
|
|
}
|
|
|
|
|
pageState.total = resData.total;
|
|
|
|
|
pageState.maxPage = Math.ceil(pageState.total / pageState.pageSize);
|
|
|
|
|
if (rows.length < pageState.pageSize) {
|
|
|
|
|
loadmoreRef.value.change('noMore');
|
|
|
|
|
} else {
|
|
|
|
|
loadmoreRef.value.change('more');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function dataToImg(data) {
|
|
|
|
|
return data.map((item) => ({
|
|
|
|
|
...item,
|
|
|
|
|
image: img,
|
|
|
|
|
hide: true,
|
|
|
|
|
}));
|
|
|
|
|
}
|
2024-11-08 11:55:23 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2025-03-28 15:19:42 +08:00
|
|
|
|
// 推荐卡片
|
|
|
|
|
.recommend-card::before
|
|
|
|
|
position: absolute
|
|
|
|
|
left: 0
|
|
|
|
|
top: 0
|
|
|
|
|
content: ''
|
|
|
|
|
height: 60rpx
|
|
|
|
|
width: 100%
|
|
|
|
|
background: linear-gradient(to bottom, #FFAD47, #FFFFFF)
|
|
|
|
|
.recommend-card::after
|
|
|
|
|
position: absolute
|
|
|
|
|
right: -20rpx
|
|
|
|
|
top: 40rpx
|
|
|
|
|
content: ''
|
|
|
|
|
height: 100rpx
|
|
|
|
|
width: 200rpx
|
|
|
|
|
background: url('@/static/icon/Group1.png') center center no-repeat
|
|
|
|
|
background-size: 100rpx 140rpx
|
|
|
|
|
.recommend-card
|
|
|
|
|
padding: 20rpx
|
|
|
|
|
.card-content
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
.recommend-card-title
|
|
|
|
|
color: #333333
|
|
|
|
|
font-size: 32rpx
|
|
|
|
|
.recommend-card-tip
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #606060;
|
|
|
|
|
margin-top: 10rpx
|
|
|
|
|
.recommend-card-controll
|
|
|
|
|
display: flex
|
|
|
|
|
align-items: center
|
|
|
|
|
justify-content: space-around
|
|
|
|
|
margin-top: 40rpx
|
|
|
|
|
.controll-yes
|
|
|
|
|
border-radius: 39rpx
|
|
|
|
|
padding: 0rpx 30rpx
|
|
|
|
|
background: rgba(255, 173, 71, 1)
|
|
|
|
|
border: 2rpx solid rgba(255, 173, 71, 1)
|
|
|
|
|
color: #FFFFFF
|
|
|
|
|
.controll-no
|
|
|
|
|
border-radius: 39rpx
|
|
|
|
|
border: 2rpx solid rgba(255, 173, 71, 1)
|
|
|
|
|
padding: 0rpx 30rpx
|
|
|
|
|
color: rgba(255, 173, 71, 1)
|
|
|
|
|
.controll-yes:active, .controll-no:active
|
|
|
|
|
background: #e8e8e8
|
|
|
|
|
border: 2rpx solid #e8e8e8
|
|
|
|
|
|
|
|
|
|
.app-container
|
2024-11-18 16:33:37 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));
|
|
|
|
|
background: linear-gradient( 180deg, #4778EC 0%, #002979 100%);
|
2025-03-28 15:19:42 +08:00
|
|
|
|
// background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, #fff 100%);
|
2024-11-18 16:33:37 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-03-28 15:19:42 +08:00
|
|
|
|
position: fixed
|
2024-11-18 16:33:37 +08:00
|
|
|
|
.index-AI
|
|
|
|
|
height: 42rpx;
|
|
|
|
|
font-family: Inter, Inter;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 35rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 41rpx;
|
|
|
|
|
padding: 85rpx 0 0 30rpx;
|
|
|
|
|
.index-option
|
|
|
|
|
margin-top: 27rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
.option-left
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 427rpx;
|
|
|
|
|
height: 56rpx;
|
|
|
|
|
background: #4778EC;
|
|
|
|
|
border-radius: 0rpx 17rpx 17rpx 0rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.left-item
|
|
|
|
|
width: 117rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 47rpx;
|
|
|
|
|
height: 47rpx;
|
|
|
|
|
margin-right: 27rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
.left-item:active
|
|
|
|
|
color: blue;
|
|
|
|
|
.option-right
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 49rpx;
|
|
|
|
|
.right-input
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 45rpx;
|
|
|
|
|
background: rgba(255,255,255,0.5);
|
|
|
|
|
border-radius: 17rpx 17rpx 17rpx 17rpx;
|
|
|
|
|
border: 3rpx solid #FFFFFF;
|
|
|
|
|
padding: 0 50rpx 0 10rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
.iconsearch
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 60rpx;
|
|
|
|
|
.tab-options
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: 77rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 17rpx 17rpx 0rpx 0rpx;
|
|
|
|
|
padding: 0 24rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
.tab-scroll
|
|
|
|
|
height: 77rpx;
|
|
|
|
|
line-height: 77rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding-right: 10rpx;
|
|
|
|
|
.tab-op-left
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
.tab-list
|
|
|
|
|
text-align: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #606060;
|
|
|
|
|
.tab-op-right
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.tab-recommend
|
|
|
|
|
white-space: nowrap;
|
2025-03-28 15:19:42 +08:00
|
|
|
|
width: fit-content;
|
|
|
|
|
padding: 0 10rpx;
|
2024-11-18 16:33:37 +08:00
|
|
|
|
height: 42rpx;
|
|
|
|
|
background: #4778EC;
|
|
|
|
|
border-radius: 17rpx 17rpx 0rpx 17rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
font-size: 21rpx;
|
|
|
|
|
line-height: 42rpx;
|
2025-03-28 15:19:42 +08:00
|
|
|
|
margin-right: 14rpx;
|
2024-11-18 16:33:37 +08:00
|
|
|
|
.tab-number
|
|
|
|
|
font-size: 21rpx;
|
|
|
|
|
color: #606060;
|
|
|
|
|
line-height: 25rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
.tab-filter
|
|
|
|
|
display: flex;
|
|
|
|
|
.image
|
|
|
|
|
width: 28rpx;
|
|
|
|
|
height: 27rpx;
|
|
|
|
|
.falls-scroll
|
|
|
|
|
flex: 1;
|
2025-03-28 15:19:42 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, #fff 100%)
|
2024-11-18 16:33:37 +08:00
|
|
|
|
.falls
|
|
|
|
|
padding: 20rpx 40rpx;
|
2025-03-28 15:19:42 +08:00
|
|
|
|
.item
|
|
|
|
|
position: relative;
|
|
|
|
|
// background: linear-gradient( 180deg, rgba(19, 197, 124, 0.4) 0%, rgba(255, 255, 255, 0) 30%), rgba(255, 255, 255, 0);
|
|
|
|
|
.falls-card
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
.falls-card-title
|
|
|
|
|
// height: 49rpx;
|
|
|
|
|
font-size: 42rpx;
|
|
|
|
|
color: #606060;
|
|
|
|
|
line-height: 49rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
word-break:break-all
|
|
|
|
|
.falls-card-pay
|
|
|
|
|
// height: 50rpx;
|
|
|
|
|
word-break:break-all
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
color: #002979;
|
|
|
|
|
line-height: 50rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: end;
|
|
|
|
|
position: relative
|
|
|
|
|
.pay-text
|
|
|
|
|
color: #002979;
|
|
|
|
|
padding-right: 10rpx
|
|
|
|
|
.flame
|
|
|
|
|
position: absolute
|
|
|
|
|
bottom: 0
|
|
|
|
|
right: -10rpx
|
|
|
|
|
transform: translate(0, -30%)
|
|
|
|
|
width: 24rpx
|
|
|
|
|
height: 31rpx
|
|
|
|
|
.falls-card-education,.falls-card-experience
|
|
|
|
|
width: fit-content;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
background: #13C57C;
|
|
|
|
|
border-radius: 17rpx 17rpx 17rpx 17rpx;
|
|
|
|
|
padding: 0 10rpx;
|
|
|
|
|
line-height: 30rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 21rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 14rpx;
|
|
|
|
|
.falls-card-company,.falls-card-pepleNumber
|
|
|
|
|
margin-top: 14rpx;
|
|
|
|
|
font-size: 21rpx;
|
|
|
|
|
color: #606060;
|
|
|
|
|
line-height: 25rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
.falls-card-pepleNumber
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.falls-card-matchingrate
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 21rpx;
|
|
|
|
|
color: #4778EC;
|
|
|
|
|
text-align: left;
|
2024-11-08 11:55:23 +08:00
|
|
|
|
.logo
|
2025-03-28 15:19:42 +08:00
|
|
|
|
width: 200rpx;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
.tabchecked
|
|
|
|
|
color: #4778EC !important
|
2024-11-08 11:55:23 +08:00
|
|
|
|
</style>
|