2031 lines
65 KiB
Vue
2031 lines
65 KiB
Vue
<template>
|
||
<view class="app-container">
|
||
<!-- #ifdef MP-WEIXIN -->
|
||
<!-- 小程序背景图片 -->
|
||
<image
|
||
class="mp-background"
|
||
src="/static/icon/background2.png"
|
||
mode="aspectFill"
|
||
></image>
|
||
<!-- #endif -->
|
||
|
||
<!-- 企业账号显示卡片 -->
|
||
<view
|
||
class="enterprise-card btn-feel"
|
||
v-if="shouldShowCompanyCard"
|
||
@click="goToCompanyInfo"
|
||
>
|
||
<view class="card-content">
|
||
<!-- 企业图标 -->
|
||
<view class="company-icon">
|
||
<image
|
||
v-if="companyInfo.avatar"
|
||
:src="companyInfo.avatar"
|
||
class="logo-image"
|
||
mode="aspectFit"
|
||
/>
|
||
<view v-else class="default-logo">
|
||
<uni-icons type="home-filled" size="32" color="#256BFA"></uni-icons>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 企业信息 -->
|
||
<view class="company-info">
|
||
<view class="company-name">{{ companyInfo.name || "企业名称" }}</view>
|
||
<view class="company-details">
|
||
<text class="industry">{{ companyInfo.industry || "互联网" }}</text>
|
||
<text class="separator">·</text>
|
||
<text class="size">{{ companyInfo.scale || "100-999人" }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view
|
||
class="nav-hidden hidden-animation"
|
||
:class="{ 'hidden-height': shouldHideTop }"
|
||
>
|
||
<view class="container-search" v-if="shouldShowJobSeekerContent">
|
||
<view
|
||
class="search-input button-click"
|
||
@click="navTo('/pages/search/search')"
|
||
>
|
||
<uni-icons
|
||
class="iconsearch"
|
||
color="#666666"
|
||
type="search"
|
||
size="18"
|
||
></uni-icons>
|
||
<text class="inpute">职位名称、薪资要求等</text>
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
|
||
<!-- 企业用户内容 -->
|
||
<!-- <view class="company-content" v-if="shouldShowCompanyContent">
|
||
<view class="company-header">
|
||
<text class="company-title">企业服务</text>
|
||
<text class="company-subtitle">为您提供专业的企业招聘服务</text>
|
||
</view>
|
||
|
||
<view class="company-grid">
|
||
<view class="company-item press-button" @click="navTo('/pages/job/publishJob')">
|
||
<view class="company-icon company-icon-1">
|
||
<uni-icons type="plus-filled" size="32" color="#FFFFFF"></uni-icons>
|
||
</view>
|
||
<view class="company-title">发布岗位</view>
|
||
</view>
|
||
<view class="company-item press-button" @click="handleServiceClick('company-management')">
|
||
<view class="company-icon company-icon-2">
|
||
<uni-icons type="settings-filled" size="32" color="#FFFFFF"></uni-icons>
|
||
</view>
|
||
<view class="company-title">企业管理</view>
|
||
</view>
|
||
<view class="company-item press-button" @click="handleServiceClick('recruitment-data')">
|
||
<view class="company-icon company-icon-3">
|
||
<uni-icons type="bar-chart-filled" size="32" color="#FFFFFF"></uni-icons>
|
||
</view>
|
||
<view class="company-title">招聘数据</view>
|
||
</view>
|
||
<view class="company-item press-button" @click="handleServiceClick('talent-pool')">
|
||
<view class="company-icon company-icon-4">
|
||
<uni-icons type="person-filled" size="32" color="#FFFFFF"></uni-icons>
|
||
</view>
|
||
<view class="company-title">人才库</view>
|
||
</view>
|
||
</view>
|
||
</view> -->
|
||
|
||
<!-- 吸顶筛选区域占位 -->
|
||
<view
|
||
class="filter-placeholder"
|
||
v-if="shouldStickyFilter && shouldShowJobSeekerContent"
|
||
></view>
|
||
|
||
<view
|
||
class="nav-filter"
|
||
:class="{ 'sticky-filter': shouldStickyFilter }"
|
||
v-if="shouldShowJobSeekerContent"
|
||
>
|
||
<view class="filter-top" @touchmove.stop.prevent>
|
||
<scroll-view
|
||
:scroll-x="true"
|
||
:show-scrollbar="false"
|
||
class="tab-scroll"
|
||
>
|
||
<view class="jobs-left">
|
||
<view
|
||
class="job button-click"
|
||
:class="{ active: state.tabIndex === 'all' }"
|
||
@click="choosePosition('all')"
|
||
>
|
||
全部
|
||
</view>
|
||
<view
|
||
class="job button-click"
|
||
:class="{ active: state.tabIndex === index }"
|
||
v-for="(item, index) in userInfo.jobTitle"
|
||
:key="index"
|
||
@click="choosePosition(index)"
|
||
>
|
||
{{ item }}
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
<view
|
||
class="jobs-add button-click"
|
||
@click="navTo('/packageA/pages/addPosition/addPosition')"
|
||
>
|
||
<uni-icons
|
||
class="iconsearch"
|
||
color="#666D7F"
|
||
type="plusempty"
|
||
size="18"
|
||
></uni-icons>
|
||
<text>添加</text>
|
||
</view>
|
||
</view>
|
||
<view class="filter-bottom">
|
||
<view class="btm-left">
|
||
<view
|
||
class="button-click filterbtm"
|
||
:class="{ active: pageState.search.order === item.value }"
|
||
v-for="item in rangeOptions"
|
||
@click="handelHostestSearch(item)"
|
||
:key="item.value"
|
||
>
|
||
{{ item.text }}
|
||
</view>
|
||
</view>
|
||
<view class="btm-right button-click" @click="openFilter">
|
||
筛选
|
||
<image
|
||
class="right-sx"
|
||
:class="{ active: showFilter }"
|
||
src="@/static/icon/shaixun.png"
|
||
></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="table-list">
|
||
<scroll-view
|
||
:scroll-y="true"
|
||
class="falls-scroll"
|
||
@scroll="handleScroll"
|
||
@scrolltolower="scrollBottom"
|
||
:enable-back-to-top="false"
|
||
:scroll-with-animation="false"
|
||
>
|
||
<view class="falls" v-if="list.length">
|
||
<!-- #ifdef MP-WEIXIN -->
|
||
<!-- 小程序使用具名插槽 -->
|
||
<custom-waterfalls-flow
|
||
:column="columnCount"
|
||
:columnSpace="columnSpace"
|
||
ref="waterfallsFlowRef"
|
||
:value="list"
|
||
>
|
||
<view
|
||
v-for="(job, index) in list"
|
||
:key="index"
|
||
:slot="`slot${index}`"
|
||
>
|
||
<view class="item btn-feel" v-if="!job.recommend">
|
||
<view class="falls-card" @click="nextDetail(job)">
|
||
<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-title">{{ job.jobTitle }}</view>
|
||
<view class="fl_box fl_warp">
|
||
<view
|
||
class="falls-card-education mar_ri10"
|
||
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>
|
||
<view class="falls-card-company" v-show="isShowJw !== 3">
|
||
{{ config.appInfo.areaName }}
|
||
<!-- {{ job.jobLocation }} -->
|
||
<dict-Label
|
||
dictType="area"
|
||
:value="job.jobLocationAreaCode"
|
||
></dict-Label>
|
||
</view>
|
||
<view class="falls-card-pepleNumber">
|
||
<view>
|
||
<image
|
||
class="point2"
|
||
src="/static/icon/pintDate.png"
|
||
></image>
|
||
<view class="fl_1">
|
||
{{ job.postingDate || "发布日期" }}
|
||
</view>
|
||
</view>
|
||
<view>
|
||
<image
|
||
class="point3"
|
||
src="/static/icon/pointpeople.png"
|
||
></image>
|
||
<view class="fl_1">
|
||
{{ vacanciesTo(job.vacancies) }}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="falls-card-company2">
|
||
<image class="point3" src="/static/icon/point3.png"></image>
|
||
<view class="fl_1">
|
||
{{ job.companyName }}
|
||
</view>
|
||
</view>
|
||
<!-- <view class="falls-card-matchingrate">
|
||
<view class=""><matchingDegree :job="job"></matchingDegree></view>
|
||
<uni-icons type="star" size="30"></uni-icons>
|
||
</view> -->
|
||
</view>
|
||
</view>
|
||
<view class="item" :class="{ isBut: job.isBut }" 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-line"></view>
|
||
<view class="recommend-card-controll">
|
||
<view class="controll-no" @click="clearfindJob(job)"
|
||
>不是</view
|
||
>
|
||
<view class="controll-yes" @click="findJob(job)"
|
||
>是的</view
|
||
>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</custom-waterfalls-flow>
|
||
<!-- #endif -->
|
||
<!-- #ifndef MP-WEIXIN -->
|
||
<!-- H5/App使用作用域插槽 -->
|
||
<custom-waterfalls-flow
|
||
:column="columnCount"
|
||
:columnSpace="columnSpace"
|
||
ref="waterfallsFlowRef"
|
||
:value="list"
|
||
>
|
||
<template v-slot:default="job">
|
||
<view class="item btn-feel" v-if="!job.recommend">
|
||
<view class="falls-card" @click="nextDetail(job)">
|
||
<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-title">{{ job.jobTitle }}</view>
|
||
<view class="fl_box fl_warp">
|
||
<view
|
||
class="falls-card-education mar_ri10"
|
||
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>
|
||
<view class="falls-card-company" v-show="isShowJw !== 3">
|
||
{{ config.appInfo.areaName }}
|
||
<!-- {{ job.jobLocation }} -->
|
||
<dict-Label
|
||
dictType="area"
|
||
:value="job.jobLocationAreaCode"
|
||
></dict-Label>
|
||
</view>
|
||
<view class="falls-card-pepleNumber">
|
||
<view>
|
||
<image
|
||
class="point2"
|
||
src="/static/icon/pintDate.png"
|
||
></image>
|
||
<view class="fl_1">
|
||
{{ job.postingDate || "发布日期" }}
|
||
</view>
|
||
</view>
|
||
<view>
|
||
<image
|
||
class="point3"
|
||
src="/static/icon/pointpeople.png"
|
||
></image>
|
||
<view class="fl_1">
|
||
{{ vacanciesTo(job.vacancies) }}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="falls-card-company2">
|
||
<image class="point3" src="/static/icon/point3.png"></image>
|
||
<view class="fl_1">
|
||
{{ job.companyName }}
|
||
</view>
|
||
</view>
|
||
<!-- <view class="falls-card-matchingrate">
|
||
<view class=""><matchingDegree :job="job"></matchingDegree></view>
|
||
<uni-icons type="star" size="30"></uni-icons>
|
||
</view> -->
|
||
</view>
|
||
</view>
|
||
<view class="item" :class="{ isBut: job.isBut }" 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-line"></view>
|
||
<view class="recommend-card-controll">
|
||
<view class="controll-no" @click="clearfindJob(job)"
|
||
>不是</view
|
||
>
|
||
<view class="controll-yes" @click="findJob(job)"
|
||
>是的</view
|
||
>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
</custom-waterfalls-flow>
|
||
<!-- #endif -->
|
||
<loadmore ref="loadmoreRef"></loadmore>
|
||
</view>
|
||
<empty v-else pdTop="200"></empty>
|
||
</scroll-view>
|
||
</view>
|
||
<!-- 筛选 -->
|
||
<select-filter ref="selectFilterModel"></select-filter>
|
||
|
||
<!-- 微信授权登录弹窗 -->
|
||
<WxAuthLogin
|
||
ref="wxAuthLoginRef"
|
||
@success="handleLoginSuccess"
|
||
></WxAuthLogin>
|
||
|
||
<!-- <view class="maskFristEntry" v-if="maskFristEntry">
|
||
<view class="entry-content">
|
||
<text class="text1">左滑查看视频</text>
|
||
<text class="text2">左滑查看视频</text>
|
||
<view class="goExperience">去体验</view>
|
||
<view class="maskFristEntry-Close" @click="closeFristEntry">1</view>
|
||
</view>
|
||
</view> -->
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import {
|
||
reactive,
|
||
inject,
|
||
watch,
|
||
ref,
|
||
onMounted,
|
||
onUnmounted,
|
||
watchEffect,
|
||
nextTick,
|
||
computed,
|
||
} from "vue";
|
||
import img from "@/static/icon/filter.png";
|
||
import dictLabel from "@/components/dict-Label/dict-Label.vue";
|
||
const { $api, navTo, vacanciesTo, formatTotal, config } =
|
||
inject("globalFunction");
|
||
import { onLoad, onShow } from "@dcloudio/uni-app";
|
||
import { storeToRefs } from "pinia";
|
||
import useUserStore from "@/stores/useUserStore";
|
||
const { userInfo, hasLogin, token } = storeToRefs(useUserStore());
|
||
|
||
// 计算是否显示求职者内容
|
||
const shouldShowJobSeekerContent = computed(() => {
|
||
// 未登录时默认显示求职者内容
|
||
if (!hasLogin.value) {
|
||
return true;
|
||
}
|
||
|
||
// 优先从store获取,如果为空则从缓存获取
|
||
const storeIsCompanyUser = userInfo.value?.isCompanyUser;
|
||
const cachedUserInfo = uni.getStorageSync("userInfo") || {};
|
||
const cachedIsCompanyUser = cachedUserInfo.isCompanyUser;
|
||
|
||
// 获取用户类型:优先使用store中的isCompanyUser,如果store中没有,使用缓存中的isCompanyUser
|
||
// 缓存中的值可能是字符串,需要转换为数值类型
|
||
const userType =
|
||
storeIsCompanyUser !== undefined
|
||
? Number(storeIsCompanyUser)
|
||
: Number(cachedIsCompanyUser);
|
||
|
||
// 企业用户(isCompanyUser=0)不显示求职者内容,其他用户类型显示
|
||
return userType !== 0;
|
||
});
|
||
|
||
// 企业信息数据
|
||
const companyInfo = reactive({
|
||
name: "",
|
||
avatar: "",
|
||
industry: "",
|
||
scale: "",
|
||
isVerified: false,
|
||
});
|
||
|
||
// 计算是否显示企业卡片
|
||
const shouldShowCompanyCard = computed(() => {
|
||
// 未登录时不显示
|
||
if (!hasLogin.value) {
|
||
return false;
|
||
}
|
||
|
||
// 优先从store获取,如果为空则从缓存获取
|
||
const storeIsCompanyUser = userInfo.value?.isCompanyUser;
|
||
const cachedUserInfo = uni.getStorageSync("userInfo") || {};
|
||
const cachedIsCompanyUser = cachedUserInfo.isCompanyUser;
|
||
|
||
// 获取用户类型:优先使用store中的isCompanyUser,如果store中没有,使用缓存中的isCompanyUser
|
||
// 缓存中的值可能是字符串,需要转换为数值类型
|
||
const userType =
|
||
storeIsCompanyUser !== undefined
|
||
? Number(storeIsCompanyUser)
|
||
: Number(cachedIsCompanyUser);
|
||
|
||
// 只有企业用户(isCompanyUser=0)才显示企业卡片
|
||
if (userType !== 0) {
|
||
return false;
|
||
}
|
||
|
||
// 检查企业信息是否已完善
|
||
return companyInfo.name && companyInfo.name.trim() !== "";
|
||
});
|
||
|
||
// 计算是否显示企业用户内容
|
||
const shouldShowCompanyContent = computed(() => {
|
||
// 未登录时不显示企业内容
|
||
if (!hasLogin.value) {
|
||
return false;
|
||
}
|
||
|
||
// 优先从store获取,如果为空则从缓存获取
|
||
const storeIsCompanyUser = userInfo.value?.isCompanyUser;
|
||
const cachedUserInfo = uni.getStorageSync("userInfo") || {};
|
||
const cachedIsCompanyUser = cachedUserInfo.isCompanyUser;
|
||
|
||
// 获取用户类型:优先使用store中的isCompanyUser,如果store中没有,使用缓存中的isCompanyUser
|
||
// 缓存中的值可能是字符串,需要转换为数值类型
|
||
const userType =
|
||
storeIsCompanyUser !== undefined
|
||
? Number(storeIsCompanyUser)
|
||
: Number(cachedIsCompanyUser);
|
||
|
||
// 只有企业用户(isCompanyUser=0)才显示企业内容
|
||
return userType === 0;
|
||
});
|
||
|
||
import useDictStore from "@/stores/useDictStore";
|
||
const { getTransformChildren, oneDictData } = useDictStore();
|
||
import useLocationStore from "@/stores/useLocationStore";
|
||
import selectFilter from "@/components/selectFilter/selectFilter.vue";
|
||
import {
|
||
useRecommedIndexedDBStore,
|
||
jobRecommender,
|
||
} from "@/stores/useRecommedIndexedDBStore.js";
|
||
import { useScrollDirection } from "@/hook/useScrollDirection";
|
||
import { useColumnCount } from "@/hook/useColumnCount";
|
||
import WxAuthLogin from "@/components/WxAuthLogin/WxAuthLogin.vue";
|
||
import IconfontIcon from "@/components/IconfontIcon/IconfontIcon.vue";
|
||
// 企业卡片组件已内联到模板中
|
||
// 滚动状态管理
|
||
const shouldHideTop = ref(false);
|
||
const shouldStickyFilter = ref(false);
|
||
const lastScrollTop = ref(0);
|
||
const scrollTop = ref(0);
|
||
// 当用户与筛选/导航交互时,临时锁定头部显示状态,避免因数据刷新导致回弹显示
|
||
const isInteractingWithFilter = ref(false);
|
||
// 滚动阈值配置
|
||
const HIDE_THRESHOLD = 50; // 隐藏顶部区域的滚动阈值(降低阈值,更容易触发)
|
||
const SHOW_THRESHOLD = 5; // 显示顶部区域的滚动阈值(接近顶部)
|
||
const STICKY_THRESHOLD = 80; // 筛选区域吸顶的滚动阈值
|
||
|
||
// 简化的滚动处理函数
|
||
function handleScroll(e) {
|
||
const currentScrollTop = e.detail.scrollTop || 0;
|
||
|
||
// 简单的滚动逻辑:向下滚动超过阈值就隐藏,滚动到顶部就显示
|
||
if (currentScrollTop > HIDE_THRESHOLD) {
|
||
if (!shouldHideTop.value) {
|
||
shouldHideTop.value = true;
|
||
}
|
||
} else if (currentScrollTop <= SHOW_THRESHOLD) {
|
||
// 仅在非交互期才允许自动显示顶部区域
|
||
if (shouldHideTop.value && !isInteractingWithFilter.value) {
|
||
shouldHideTop.value = false;
|
||
}
|
||
}
|
||
|
||
// 控制筛选区域吸顶
|
||
if (currentScrollTop > STICKY_THRESHOLD) {
|
||
if (!shouldStickyFilter.value) {
|
||
shouldStickyFilter.value = true;
|
||
}
|
||
} else {
|
||
if (shouldStickyFilter.value) {
|
||
shouldStickyFilter.value = false;
|
||
}
|
||
}
|
||
|
||
// 更新最后的滚动位置
|
||
lastScrollTop.value = currentScrollTop;
|
||
scrollTop.value = currentScrollTop;
|
||
}
|
||
const recommedIndexDb = useRecommedIndexedDBStore();
|
||
const emits = defineEmits(["onShowTabbar"]);
|
||
const waterfallsFlowRef = ref(null);
|
||
const loadmoreRef = ref(null);
|
||
const conditionSearch = ref({});
|
||
const waterfallcolumn = ref(2);
|
||
const maskFristEntry = ref(false);
|
||
const wxAuthLoginRef = ref(null);
|
||
const state = reactive({
|
||
tabIndex: "all",
|
||
});
|
||
const list = ref([]);
|
||
const pageState = reactive({
|
||
page: 0,
|
||
total: 0,
|
||
maxPage: 2,
|
||
pageSize: 10,
|
||
search: {
|
||
order: 0,
|
||
},
|
||
});
|
||
const inputText = ref("");
|
||
const showFilter = ref(false);
|
||
const selectFilterModel = ref(null);
|
||
const showModel = ref(false);
|
||
const rangeOptions = ref([
|
||
{ value: 0, text: "推荐" },
|
||
{ value: 1, text: "最热" },
|
||
{ value: 2, text: "最新发布" },
|
||
{ value: 3, text: "疆外" },
|
||
]);
|
||
const isLoaded = ref(false);
|
||
const isInitialized = ref(false); // 添加初始化标志
|
||
|
||
const { columnCount, columnSpace } = useColumnCount(() => {
|
||
pageState.pageSize = 10 * (columnCount.value - 1);
|
||
|
||
// 只在首次初始化时调用,避免重复调用
|
||
if (!isInitialized.value) {
|
||
isInitialized.value = true;
|
||
getJobRecommend("refresh");
|
||
}
|
||
|
||
nextTick(() => {
|
||
waterfallsFlowRef.value?.refresh?.();
|
||
useLocationStore().getLocation();
|
||
});
|
||
});
|
||
|
||
// 获取企业信息
|
||
const getCompanyInfo = () => {
|
||
try {
|
||
const cachedUserInfo = uni.getStorageSync("userInfo") || {};
|
||
// 重置企业信息
|
||
companyInfo.name = "";
|
||
companyInfo.avatar = "";
|
||
companyInfo.industry = "";
|
||
companyInfo.scale = "";
|
||
companyInfo.isVerified = false;
|
||
|
||
// 检查是否有company字段
|
||
if (cachedUserInfo.company) {
|
||
const company = cachedUserInfo.company;
|
||
|
||
// 基本信息
|
||
companyInfo.name = company.name || "";
|
||
companyInfo.avatar = company.avatar || "";
|
||
companyInfo.industry = company.industryType || "互联网";
|
||
companyInfo.scale = company.scale || "100-999人";
|
||
|
||
// 判断是否实名:legalIdCard字段有值则表示已实名
|
||
companyInfo.isVerified = !!(
|
||
company.legalIdCard && company.legalIdCard.trim()
|
||
);
|
||
|
||
console.log("企业信息已更新:", {
|
||
name: companyInfo.name,
|
||
industry: companyInfo.industry,
|
||
size: companyInfo.scale,
|
||
isVerified: companyInfo.isVerified,
|
||
});
|
||
} else {
|
||
console.log("缓存中没有company字段,企业信息已重置");
|
||
}
|
||
} catch (error) {
|
||
console.error("获取企业信息失败:", error);
|
||
// 重置为默认值
|
||
companyInfo.name = "";
|
||
companyInfo.avatar = "";
|
||
companyInfo.industry = "";
|
||
companyInfo.scale = "";
|
||
companyInfo.isVerified = false;
|
||
}
|
||
};
|
||
|
||
// 跳转到企业信息详情页面
|
||
const goToCompanyInfo = () => {
|
||
navTo("/pages/mine/company-info");
|
||
};
|
||
|
||
// 组件初始化时加载数据
|
||
onMounted(() => {
|
||
// 获取企业信息
|
||
getCompanyInfo();
|
||
|
||
// 监听退出登录事件,显示微信登录弹窗
|
||
uni.$on("showLoginModal", () => {
|
||
wxAuthLoginRef.value?.open();
|
||
});
|
||
});
|
||
|
||
onUnmounted(() => {
|
||
uni.$off("showLoginModal");
|
||
});
|
||
|
||
onShow(() => {
|
||
// 获取最新的企业信息
|
||
getCompanyInfo();
|
||
});
|
||
|
||
// 监听用户信息变化,当登录状态改变时重新获取企业信息
|
||
watch(
|
||
[hasLogin, userInfo],
|
||
() => {
|
||
if (hasLogin.value) {
|
||
getCompanyInfo();
|
||
}
|
||
},
|
||
{ deep: true }
|
||
);
|
||
|
||
// 登录检查函数
|
||
const checkLogin = () => {
|
||
const tokenValue = uni.getStorageSync("token") || "";
|
||
if (!tokenValue || !hasLogin.value) {
|
||
// 未登录,打开授权弹窗
|
||
wxAuthLoginRef.value?.open();
|
||
return false;
|
||
}
|
||
return true;
|
||
};
|
||
|
||
// 登录成功回调
|
||
const handleLoginSuccess = () => {
|
||
// 登录成功后刷新数据
|
||
getJobRecommend("refresh");
|
||
|
||
// 重新获取企业信息
|
||
getCompanyInfo();
|
||
};
|
||
|
||
// 处理附近工作点击
|
||
const handleNearbyClick = () => {
|
||
if (checkLogin()) {
|
||
navTo("/pages/nearby/nearby");
|
||
}
|
||
};
|
||
|
||
// 处理服务功能点击
|
||
const handleServiceClick = (serviceType) => {
|
||
if (checkLogin()) {
|
||
navToService(serviceType);
|
||
}
|
||
};
|
||
|
||
// 处理直播按钮点击 - 跳转微信视频号
|
||
const handleLiveClick = () => {
|
||
// #ifdef MP-WEIXIN
|
||
const feedId = "sphKH1AEeLfTJJE";
|
||
|
||
// 使用微信原生 API 打开视频号直播
|
||
if (typeof wx !== "undefined" && wx.openChannelsUserProfile) {
|
||
wx.openChannelsUserProfile({
|
||
// feedId: feedId,
|
||
finderUserName: feedId, // 视频号 finderUserName,如果feedId足够可以留空
|
||
success: (res) => {
|
||
console.log("打开视频号成功", res);
|
||
},
|
||
fail: (err) => {
|
||
console.error("打开视频号失败", err);
|
||
$api.msg(err.errMsg || "无法打开直播,请稍后重试");
|
||
},
|
||
});
|
||
} else {
|
||
// 如果 API 不存在,尝试使用 uni API
|
||
uni.openChannelsLive({
|
||
feedId: feedId,
|
||
success: (res) => {
|
||
console.log("打开视频号成功", res);
|
||
},
|
||
fail: (err) => {
|
||
console.error("打开视频号失败", err);
|
||
$api.msg("无法打开直播,请检查微信版本或稍后重试");
|
||
},
|
||
});
|
||
}
|
||
// #endif
|
||
|
||
// #ifndef MP-WEIXIN
|
||
// 非微信小程序环境提示
|
||
$api.msg("该功能仅在微信小程序中可用");
|
||
// #endif
|
||
};
|
||
|
||
// 跳转到测试页面
|
||
const navToTestPage = () => {
|
||
navTo("/pages/test/homepage-test");
|
||
};
|
||
|
||
async function loadData() {
|
||
try {
|
||
if (isLoaded.value) return;
|
||
isLoaded.value = true;
|
||
} catch (err) {
|
||
isLoaded.value = false; // 重置状态允许重试
|
||
throw err;
|
||
}
|
||
}
|
||
|
||
function scrollBottom() {
|
||
if (loadmoreRef.value && typeof loadmoreRef.value.change === "function") {
|
||
loadmoreRef.value.change("loading");
|
||
}
|
||
if (state.tabIndex === "all") {
|
||
getJobRecommend();
|
||
} else {
|
||
getJobList();
|
||
}
|
||
}
|
||
|
||
function findJob(job) {
|
||
if (job.isBut) {
|
||
$api.msg("已确认");
|
||
} else {
|
||
list.value = list.value.map((item) => {
|
||
if (item.recommend && item.jobCategory === job.jobCategory) {
|
||
return {
|
||
...item,
|
||
isBut: true,
|
||
};
|
||
}
|
||
return item;
|
||
});
|
||
const jobstr = job.jobCategory;
|
||
const jobsObj = {
|
||
地区: "area",
|
||
岗位: "jobTitle",
|
||
经验: "experience",
|
||
};
|
||
const [name, value] = jobstr.split(":");
|
||
const nameAttr = jobsObj[name];
|
||
if (name === "岗位") {
|
||
conditionSearch.value[nameAttr] = value;
|
||
} else {
|
||
const valueAttr = oneDictData(nameAttr).filter(
|
||
(item) => item.label === value
|
||
);
|
||
if (valueAttr.length) {
|
||
const val = valueAttr[0].value;
|
||
conditionSearch.value[nameAttr] = val;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
function clearfindJob(job) {
|
||
if (job.isBut) {
|
||
$api.msg("已确认");
|
||
} else {
|
||
list.value = list.value.map((item) => {
|
||
if (item.recommend && item.jobCategory === job.jobCategory) {
|
||
return {
|
||
...item,
|
||
isBut: true,
|
||
};
|
||
}
|
||
return item;
|
||
});
|
||
recommedIndexDb.deleteRecords(job);
|
||
}
|
||
}
|
||
|
||
function nextDetail(job) {
|
||
// 登录检查
|
||
if (checkLogin()) {
|
||
// 记录岗位类型,用作数据分析
|
||
if (job.jobCategory) {
|
||
const recordData = recommedIndexDb.JobParameter(job);
|
||
recommedIndexDb.addRecord(recordData);
|
||
}
|
||
navTo(`/packageA/pages/post/post?jobId=${encodeURIComponent(job.jobId)}`);
|
||
}
|
||
}
|
||
|
||
function navToService(serviceType) {
|
||
// 根据服务类型跳转到不同页面
|
||
const serviceRoutes = {
|
||
"service-guidance": "/pages/service/guidance",
|
||
"public-recruitment": "/pages/service/public-recruitment",
|
||
"resume-creation": "/packageA/pages/myResume/myResume",
|
||
"labor-policy": "/pages/service/labor-policy",
|
||
"skill-training": "/pages/service/skill-training",
|
||
// 'skill-evaluation': '/pages/service/skill-evaluation',
|
||
"question-bank": "/pages/service/question-bank",
|
||
"quality-assessment": "/pages/service/quality-assessment",
|
||
"ai-interview": "/pages/chat/chat",
|
||
"job-search": "/pages/search/search",
|
||
"career-planning": "/pages/service/career-planning",
|
||
"salary-query": "/pages/service/salary-query",
|
||
"company-info": "/pages/service/company-info",
|
||
"interview-tips": "/pages/service/interview-tips",
|
||
"employment-news": "/pages/service/employment-news",
|
||
"more-services": "/pages/service/more-services",
|
||
"skill-evaluation": "/packageB/train/index",
|
||
};
|
||
|
||
const route = serviceRoutes[serviceType];
|
||
if (route) {
|
||
navTo(route);
|
||
} else {
|
||
$api.msg("功能开发中,敬请期待");
|
||
}
|
||
}
|
||
|
||
function openFilter() {
|
||
isInteractingWithFilter.value = true;
|
||
showFilter.value = true;
|
||
emits("onShowTabbar", false);
|
||
selectFilterModel.value?.open({
|
||
title: "筛选",
|
||
maskClick: true,
|
||
success: (values) => {
|
||
pageState.search = {
|
||
...pageState.search,
|
||
};
|
||
for (const [key, value] of Object.entries(values)) {
|
||
// 特殊处理岗位类型,直接传递数字值
|
||
if (key === "jobType") {
|
||
pageState.search.type = value.join(",");
|
||
} else {
|
||
pageState.search[key] = value.join(",");
|
||
}
|
||
}
|
||
showFilter.value = false;
|
||
getJobList("refresh");
|
||
// 短暂延迟后解除交互锁,避免数据刷新导致顶部区域回弹
|
||
setTimeout(() => {
|
||
isInteractingWithFilter.value = false;
|
||
}, 400);
|
||
},
|
||
cancel: () => {
|
||
showFilter.value = false;
|
||
emits("onShowTabbar", true);
|
||
setTimeout(() => {
|
||
isInteractingWithFilter.value = false;
|
||
}, 200);
|
||
},
|
||
});
|
||
}
|
||
|
||
function handleFilterConfirm(e) {
|
||
// 处理筛选确认
|
||
}
|
||
|
||
function choosePosition(index) {
|
||
isInteractingWithFilter.value = true;
|
||
state.tabIndex = index;
|
||
list.value = [];
|
||
if (index === "all") {
|
||
pageState.search = {
|
||
order: pageState.search.order,
|
||
};
|
||
inputText.value = "";
|
||
getJobRecommend("refresh");
|
||
} else {
|
||
// const id = useUserStore().userInfo.jobTitleId.split(',')[index];
|
||
pageState.search.jobTitle = userInfo.value.jobTitle[index];
|
||
inputText.value = "";
|
||
getJobList("refresh");
|
||
}
|
||
nextTick(() => {
|
||
setTimeout(() => {
|
||
isInteractingWithFilter.value = false;
|
||
}, 300);
|
||
});
|
||
}
|
||
const isShowJw = ref(0);
|
||
function handelHostestSearch(val) {
|
||
isInteractingWithFilter.value = true;
|
||
isShowJw.value = val.value;
|
||
pageState.search.order = val.value;
|
||
pageState.search.jobType = val.value === 3 ? 1 : 0;
|
||
if (state.tabIndex === "all") {
|
||
getJobRecommend("refresh");
|
||
} else {
|
||
getJobList("refresh");
|
||
}
|
||
nextTick(() => {
|
||
setTimeout(() => {
|
||
isInteractingWithFilter.value = false;
|
||
}, 300);
|
||
});
|
||
}
|
||
|
||
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,
|
||
...conditionSearch.value,
|
||
isPublish: 1,
|
||
};
|
||
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 {
|
||
const reslist = dataToImg(data);
|
||
list.value = reslist;
|
||
}
|
||
// 切换状态
|
||
if (loadmoreRef.value && typeof loadmoreRef.value.change === "function") {
|
||
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();
|
||
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
|
||
}
|
||
let params = {
|
||
current: pageState.page,
|
||
pageSize: pageState.pageSize,
|
||
...pageState.search,
|
||
// ...conditionSearch.value,
|
||
};
|
||
|
||
$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 (loadmoreRef.value && typeof loadmoreRef.value.change === "function") {
|
||
if (rows.length < pageState.pageSize) {
|
||
loadmoreRef.value?.change("noMore");
|
||
} else {
|
||
loadmoreRef.value?.change("more");
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
function dataToImg(data) {
|
||
const result = data.map((item) => ({
|
||
...item,
|
||
image: img,
|
||
hide: true,
|
||
}));
|
||
return result;
|
||
}
|
||
|
||
// import { loginRc } from '@/apiRc/login/login.js';
|
||
import storeRc from "@/utilsRc/store/index.js";
|
||
import { getToken } from "@/utilsRc/auth.js";
|
||
// 跳转到高校毕业页面
|
||
function goRc() {
|
||
if (checkLogin()) {
|
||
navTo("/packageRc/pages/index/index");
|
||
let token = getToken();
|
||
if (token != null && token != "" && token != undefined) {
|
||
if (storeRc.state.user.type == "person") {
|
||
navTo("/packageRc/pages/index/index");
|
||
} else {
|
||
navTo("/packageRc/pages/daiban/daiban");
|
||
}
|
||
} else {
|
||
let userInfo = uni.getStorageSync("userInfo");
|
||
storeRc.dispatch("LoginByUserInfo", userInfo).then((res) => {
|
||
// console.log(res, "'res");
|
||
storeRc.dispatch("GetInfo").then((res) => {
|
||
if (res.data.user.userType == "person") {
|
||
navTo("/packageRc/pages/index/index");
|
||
} else {
|
||
navTo("/packageRc/pages/daiban/daiban");
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
}
|
||
// 跳转素质测评页面(在线测评,职业库,职业生涯规划)
|
||
function goCa() {
|
||
if (checkLogin()) {
|
||
const userInfo = uni.getStorageSync("userInfo");
|
||
navTo(
|
||
`/packageCa/search/search?userId=${userInfo.userId}&name=${userInfo.name}`
|
||
);
|
||
}
|
||
}
|
||
|
||
defineExpose({ loadData });
|
||
</script>
|
||
|
||
<style lang="stylus" scoped>
|
||
// .maskFristEntry
|
||
// position: fixed;
|
||
// // right: 20rpx;
|
||
// // bottom: calc(50% - 200rpx);
|
||
// height: 100vh
|
||
// width: 100vw
|
||
// background: rgba(0,0,0,0.3)
|
||
// .entry-content
|
||
// display: flex;
|
||
// align-items: center
|
||
// position: absolute
|
||
// left: 50%
|
||
// top: 40%
|
||
// transform: translate(-50%, -50%)
|
||
// flex-direction: column
|
||
// background: url('@/static/imgs/fristEntry.png') 0 0 no-repeat;
|
||
// background-size: 100% 100%;
|
||
// width: 480rpx
|
||
// height: 584rpx
|
||
// // padding-left: 80rpx
|
||
// .text1
|
||
// margin-top: 370rpx
|
||
// font-size: 36rpx
|
||
// background: linear-gradient(273.34deg, #356CFA 3.58%, #A47FFD 85.84%);
|
||
// -webkit-background-clip: text;
|
||
// -webkit-text-fill-color: transparent;
|
||
// background-clip: text; /* 有些浏览器兼容用 */
|
||
// text-fill-color: transparent;
|
||
// padding-left: 28rpx
|
||
// .text2
|
||
// padding-left: 28rpx
|
||
// margin-top: 8rpx
|
||
// font-size: 20rpx;
|
||
// color: #666666;
|
||
// text-align: center;
|
||
// .indicateArrow
|
||
// height: 76rpx
|
||
// width: 68rpx
|
||
// .indicatefristEntry
|
||
// width: 244rpx
|
||
// height: 244rpx
|
||
// .goExperience
|
||
// margin-left: 28rpx
|
||
// margin-top: 28rpx
|
||
// width: 160rpx;
|
||
// height: 60rpx;
|
||
// background: linear-gradient( 180deg, #9974FD 0%, #286BFA 100%);
|
||
// border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||
// font-size: 28rpx;
|
||
// color: #FFFFFF;
|
||
// text-align: center;
|
||
// line-height: 60rpx
|
||
// .maskFristEntry-Close
|
||
// position: absolute;
|
||
// left: calc(50% - 10rpx);
|
||
// bottom: -130rpx
|
||
// width: 42rpx
|
||
// height: 42rpx
|
||
// background: linear-gradient(273.34deg, #356CFA 3.58%, #A47FFD 85.84%);
|
||
// border-radius: 50%;
|
||
// .maskFristEntry-Close::before
|
||
// position: absolute;
|
||
// left: calc( 50% - 2rpx)
|
||
// top: calc( 50% - 10rpx)
|
||
// transform: rotate(45deg);
|
||
// content: ''
|
||
// background: #FFFFFF
|
||
// width: 4rpx
|
||
// height: 20rpx
|
||
// .maskFristEntry-Close::after
|
||
// position: absolute;
|
||
// left: calc( 50% - 2rpx)
|
||
// top: calc( 50% - 10rpx)
|
||
// transform: rotate(-45deg);
|
||
// content: ''
|
||
// background: #FFFFFF
|
||
// width: 4rpx
|
||
// height: 20rpx
|
||
|
||
|
||
.app-container
|
||
width: 100%;
|
||
height: 100vh;
|
||
/* #ifdef H5 */
|
||
height: calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));
|
||
background: url('@/static/icon/background2.png') 0 0 no-repeat;
|
||
background-size: 100% 728rpx;
|
||
/* #endif */
|
||
/* #ifdef MP-WEIXIN */
|
||
/* 小程序不支持CSS中的本地图片,使用image标签替代 */
|
||
position: relative;
|
||
/* #endif */
|
||
background-color: #FFFFFF;
|
||
display: flex;
|
||
flex-direction: column;
|
||
overflow: hidden;
|
||
|
||
/* #ifdef MP-WEIXIN */
|
||
.mp-background
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 728rpx;
|
||
z-index: 0;
|
||
/* #endif */
|
||
.hidden-animation
|
||
transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
|
||
overflow: hidden;
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
will-change: transform, opacity;
|
||
|
||
.hidden-height
|
||
opacity: 0 !important;
|
||
transform: translateY(-100%) !important;
|
||
pointer-events: none !important;
|
||
max-height: 0 !important;
|
||
padding-top: 0 !important;
|
||
padding-bottom: 0 !important;
|
||
margin-top: 0 !important;
|
||
margin-bottom: 0 !important;
|
||
|
||
.container-search
|
||
padding: 16rpx 24rpx
|
||
display: flex
|
||
justify-content: space-between
|
||
align-items: center
|
||
.search-input
|
||
display: flex
|
||
align-items: center;
|
||
flex: 1
|
||
height: 80rpx;
|
||
line-height: 80rpx
|
||
margin-right: 16rpx
|
||
background: #FFFFFF;
|
||
border-radius: 75rpx 75rpx 75rpx 75rpx;
|
||
.iconsearch
|
||
padding-left: 36rpx
|
||
.inpute
|
||
margin-left: 20rpx
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #B5B5B5;
|
||
width: 100%
|
||
.live-button
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
width: 90rpx
|
||
height: 42rpx
|
||
background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%)
|
||
border-radius: 40rpx
|
||
box-shadow: 0 3rpx 8rpx rgba(255, 107, 107, 0.2)
|
||
transition: all 0.2s ease
|
||
flex-shrink: 0
|
||
|
||
&:active
|
||
transform: scale(0.96)
|
||
box-shadow: 0 2rpx 6rpx rgba(255, 107, 107, 0.25)
|
||
|
||
.live-icon
|
||
margin-right: 8rpx
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
|
||
.live-text
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif
|
||
font-weight: 500
|
||
font-size: 24rpx
|
||
color: #FFFFFF
|
||
text-align: center
|
||
white-space: nowrap
|
||
.chart
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
||
width: 170rpx;
|
||
background: radial-gradient( 0% 56% at 87% 61%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.47) 100%);
|
||
box-shadow: 0rpx 8rpx 40rpx 0rpx rgba(210,210,210,0.14);
|
||
border-radius: 80rpx 80rpx 80rpx 80rpx;
|
||
border: 2rpx solid #FFFFFF;
|
||
text-align: center
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
height: 36rpx;
|
||
color: #000000;
|
||
padding: 20rpx 30rpx
|
||
.cards
|
||
padding: 10rpx 28rpx
|
||
display: grid
|
||
grid-gap: 38rpx;
|
||
grid-template-columns: 1fr;
|
||
.card
|
||
height: calc(158rpx - 40rpx);
|
||
padding: 22rpx 26rpx
|
||
box-shadow: 0rpx 8rpx 40rpx 0rpx rgba(210,210,210,0.14);
|
||
border-radius: 16rpx 16rpx 16rpx 16rpx;
|
||
border: 2rpx solid #FFFFFF;
|
||
.card-title
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
||
font-weight: 600;
|
||
font-size: 32rpx;
|
||
color: #000000;
|
||
.card-text
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #9E9E9E;
|
||
margin-top: 4rpx
|
||
.card:first-child
|
||
background: radial-gradient( 0% 56% at 87% 61%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.47) 100%),
|
||
url('@/static/icon/fujin.png');
|
||
background-size: 100%, 100%
|
||
.card:last-child
|
||
background: radial-gradient( 0% 56% at 87% 61%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.47) 100%),
|
||
url('@/static/icon/jinxuan.png');
|
||
background-size: 100%, 100%
|
||
background-size: cover;
|
||
background-position: center;
|
||
|
||
// 服务功能网格样式
|
||
.service-grid
|
||
padding: 20rpx 28rpx
|
||
display: grid
|
||
grid-template-columns: 1fr 1fr 1fr 1fr
|
||
grid-gap: 20rpx
|
||
.service-item
|
||
display: flex
|
||
flex-direction: column
|
||
align-items: center
|
||
justify-content: center
|
||
height: 120rpx
|
||
background: transparent
|
||
padding: 10px 0px
|
||
.service-icon
|
||
width: 88rpx
|
||
height: 88rpx
|
||
border-radius: 12rpx
|
||
margin-bottom: 8rpx
|
||
flex-shrink: 0
|
||
.service-icon-1
|
||
background: linear-gradient(180deg, #FF8E8E 0%, #E53E3E 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-2
|
||
background: linear-gradient(180deg, #6ED5CE 0%, #38B2AC 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-3
|
||
background: linear-gradient(180deg, #6BC5D8 0%, #3182CE 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-4
|
||
background: linear-gradient(180deg, #FFB74D 0%, #ED8936 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-5
|
||
background: linear-gradient(180deg, #F06292 0%, #C2185B 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-6
|
||
background: linear-gradient(180deg, #FFB74D 0%, #ED8936 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-7
|
||
background: linear-gradient(180deg, #6BC5D8 0%, #3182CE 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-8
|
||
background: linear-gradient(180deg, #81C784 0%, #4CAF50 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-9
|
||
background: linear-gradient(180deg, #6BC5D8 0%, #3182CE 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-10
|
||
background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%)
|
||
position: relative
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
.service-icon-11
|
||
background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%)
|
||
position: relative
|
||
&::before
|
||
content: '📈'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-icon-12
|
||
background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%)
|
||
position: relative
|
||
&::before
|
||
content: '💰'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-icon-13
|
||
background: linear-gradient(135deg, #607D8B 0%, #90A4AE 100%)
|
||
position: relative
|
||
&::before
|
||
content: '🏢'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-icon-14
|
||
background: linear-gradient(135deg, #E91E63 0%, #F06292 100%)
|
||
position: relative
|
||
&::before
|
||
content: '💡'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-icon-15
|
||
background: linear-gradient(135deg, #795548 0%, #A1887F 100%)
|
||
position: relative
|
||
&::before
|
||
content: '📰'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-icon-16
|
||
background: linear-gradient(135deg, #424242 0%, #757575 100%)
|
||
position: relative
|
||
&::before
|
||
content: '⚙️'
|
||
position: absolute
|
||
top: 50%
|
||
left: 50%
|
||
transform: translate(-50%, -50%)
|
||
font-size: 32rpx
|
||
.service-title
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif
|
||
font-weight: 500
|
||
font-size: 24rpx
|
||
color: #333333
|
||
text-align: center
|
||
line-height: 1.2
|
||
white-space: nowrap
|
||
overflow: hidden
|
||
text-overflow: ellipsis
|
||
width: 100%
|
||
max-width: 100%
|
||
.service-title-special
|
||
overflow: none;
|
||
|
||
// 吸顶筛选区域占位
|
||
.filter-placeholder
|
||
height: 140rpx; // 根据筛选区域的实际高度调整(包含padding)
|
||
width: 100%;
|
||
/* #ifdef H5 */
|
||
height: 0; // H5使用sticky,不需要占位
|
||
/* #endif */
|
||
/* #ifdef MP-WEIXIN */
|
||
height: 140rpx; // 小程序需要占位
|
||
/* #endif */
|
||
|
||
.nav-filter
|
||
padding: 16rpx 28rpx
|
||
box-sizing: border-box;
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
||
transition: box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
|
||
transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
|
||
background: #FFFFFF;
|
||
z-index: 10;
|
||
|
||
&.sticky-filter
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
width: 100%;
|
||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
|
||
z-index: 100;
|
||
will-change: transform;
|
||
transform: translateZ(0);
|
||
-webkit-transform: translateZ(0);
|
||
/* #ifdef H5 */
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 100;
|
||
/* #endif */
|
||
/* #ifdef MP-WEIXIN */
|
||
position: fixed;
|
||
top: 0;
|
||
padding: 16rpx 28rpx;
|
||
padding-top: calc(16rpx + env(safe-area-inset-top));
|
||
padding-left: calc(28rpx + env(safe-area-inset-left));
|
||
padding-right: calc(28rpx + env(safe-area-inset-right));
|
||
/* #endif */
|
||
.filter-top
|
||
display: flex
|
||
justify-content: space-between;
|
||
.tab-scroll
|
||
flex: 1;
|
||
overflow: hidden;
|
||
margin-right: 20rpx;
|
||
/* #ifdef MP-WEIXIN */
|
||
margin-right: 0;
|
||
/* #endif */
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: clip;
|
||
-webkit-mask-image: linear-gradient(to right, black 60%, transparent);
|
||
mask-image: linear-gradient(to right, black 60%, transparent);
|
||
.jobs-left
|
||
display: flex
|
||
flex-wrap: nowrap
|
||
.job
|
||
font-weight: 400;
|
||
font-size: 36rpx;
|
||
color: #666D7F;
|
||
margin-right: 32rpx;
|
||
white-space: nowrap
|
||
.active
|
||
font-weight: 500;
|
||
font-size: 36rpx;
|
||
color: #000000;
|
||
.jobs-add
|
||
font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
display: flex
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-weight: 400;
|
||
font-size: 32rpx;
|
||
color: #666D7F;
|
||
line-height: 38rpx;
|
||
min-width: 80rpx;
|
||
padding: 8rpx 12rpx;
|
||
white-space: nowrap;
|
||
.filter-bottom
|
||
display: flex
|
||
justify-content: space-between
|
||
padding: 24rpx 0
|
||
.btm-left
|
||
display: flex
|
||
font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
.filterbtm
|
||
font-weight: 400;
|
||
font-size: 32rpx;
|
||
color: #666D7F;
|
||
margin-right: 24rpx
|
||
padding: 0rpx 16rpx
|
||
.active
|
||
font-weight: 500;
|
||
font-size: 32rpx;
|
||
color: #256BFA;
|
||
.btm-right
|
||
font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
font-weight: 400;
|
||
font-size: 32rpx;
|
||
color: #6C7282;
|
||
.right-sx
|
||
width: 26rpx;
|
||
height: 26rpx;
|
||
.active
|
||
transform: rotate(180deg)
|
||
.table-list
|
||
background: #F4F4F4
|
||
flex: 1
|
||
overflow: hidden
|
||
height: 0; // 确保flex容器正确计算高度
|
||
.falls-scroll
|
||
width: 100%
|
||
height: 100%
|
||
// 确保滚动容器可以正常滚动
|
||
-webkit-overflow-scrolling: touch;
|
||
.falls
|
||
padding: 28rpx 28rpx;
|
||
.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
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
||
color: #606060;
|
||
text-align: left;
|
||
word-break:break-all
|
||
font-weight: 500;
|
||
font-size: 32rpx;
|
||
color: #333333;
|
||
margin-top: 10rpx
|
||
.falls-card-pay
|
||
// height: 50rpx;
|
||
word-break:break-all
|
||
color: #002979;
|
||
text-align: left;
|
||
display: flex;
|
||
align-items: end;
|
||
position: relative
|
||
.pay-text
|
||
font-family: DIN-Medium;
|
||
color: #4C6EFB;
|
||
padding-right: 10rpx
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #4C6EFB;
|
||
line-height: 45rpx;
|
||
text-align: left;
|
||
.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: #F4F4F4;
|
||
border-radius: 4rpx;
|
||
padding: 6rpx 20rpx;
|
||
line-height: 30rpx;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #6C7282;
|
||
text-align: center;
|
||
margin-top: 20rpx;
|
||
white-space: nowrap
|
||
|
||
.falls-card-company,.falls-card-pepleNumber
|
||
margin-top: 20rpx;
|
||
font-size: 24rpx;
|
||
color: #999999;
|
||
line-height: 25rpx;
|
||
text-align: left;
|
||
.falls-card-pepleNumber
|
||
display: flex;
|
||
justify-content: space-between;
|
||
flex-wrap: wrap
|
||
margin-top: 10rpx;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #999999;
|
||
line-height: 46rpx
|
||
view
|
||
display:flex
|
||
align-items: center
|
||
white-space: nowrap;
|
||
.point2
|
||
margin: 0rpx 6rpx 0 2rpx
|
||
height: 22rpx
|
||
width: 22rpx
|
||
.point3
|
||
margin: 0rpx 4rpx 0 0
|
||
height: 28rpx
|
||
width: 28rpx
|
||
.falls-card-matchingrate
|
||
margin-top: 10rpx;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
font-size: 21rpx;
|
||
color: #4778EC;
|
||
text-align: left;
|
||
.falls-card-company2
|
||
margin-top: 4rpx;
|
||
font-size: 24rpx;
|
||
color: #999999;
|
||
text-align: left;
|
||
display: flex
|
||
.point3
|
||
margin: 4rpx 4rpx 0 0
|
||
height: 26rpx
|
||
width: 26rpx
|
||
// 推荐卡片
|
||
.recommend-card::before
|
||
position: absolute
|
||
left: 0
|
||
top: 0
|
||
content: ''
|
||
height: 60rpx
|
||
width: 100%
|
||
height: 8rpx;
|
||
background: linear-gradient( to left, #9E74FD 0%, #256BFA 100%);
|
||
box-shadow: 0rpx 8rpx 40rpx 0rpx rgba(0,54,170,0.15);
|
||
.recommend-card::after
|
||
content ''
|
||
position absolute
|
||
z-index 0
|
||
left 50%
|
||
top 40%
|
||
transform: translate(-50%, -50%)
|
||
width 250rpx
|
||
height 250rpx
|
||
background url('@/static/icon/backAI.png') no-repeat center center
|
||
opacity 0.6
|
||
background-size contain
|
||
pointer-events none
|
||
filter: blur(3rpx)
|
||
// 企业用户内容样式
|
||
.company-content
|
||
padding: 40rpx 30rpx
|
||
background: #ffffff
|
||
margin: 20rpx 30rpx
|
||
border-radius: 20rpx
|
||
box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(0, 0, 0, 0.1)
|
||
|
||
.company-header
|
||
text-align: center
|
||
margin-bottom: 40rpx
|
||
|
||
.company-title
|
||
font-size: 36rpx
|
||
font-weight: bold
|
||
color: #333333
|
||
display: block
|
||
margin-bottom: 10rpx
|
||
|
||
.company-subtitle
|
||
font-size: 24rpx
|
||
color: #666666
|
||
display: block
|
||
|
||
.company-grid
|
||
display: grid
|
||
grid-template-columns: 1fr 1fr
|
||
gap: 30rpx
|
||
|
||
.company-item
|
||
display: flex
|
||
flex-direction: column
|
||
align-items: center
|
||
padding: 30rpx 20rpx
|
||
background: #f8f9fa
|
||
border-radius: 15rpx
|
||
transition: all 0.3s ease
|
||
|
||
&:active
|
||
transform: scale(0.95)
|
||
background: #e9ecef
|
||
|
||
.company-icon
|
||
width: 60rpx
|
||
height: 60rpx
|
||
border-radius: 50%
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
margin-bottom: 15rpx
|
||
|
||
&.company-icon-1
|
||
background: #256BFA
|
||
&.company-icon-2
|
||
background: #52c41a
|
||
&.company-icon-3
|
||
background: #fa8c16
|
||
&.company-icon-4
|
||
background: #eb2f96
|
||
|
||
.company-title
|
||
font-size: 24rpx
|
||
color: #333333
|
||
font-weight: 500
|
||
|
||
.recommend-card
|
||
padding 36rpx 24rpx
|
||
background: linear-gradient( 360deg, #DFE9FF 0%, #FFFFFF 52%, #FFFFFF 100%);
|
||
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
||
position relative
|
||
box-shadow 0rpx 4rpx 8rpx 0rpx rgba(72, 89, 123, 0.3)
|
||
.card-content
|
||
position: relative;
|
||
z-index: 2;
|
||
.recommend-card-title
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
.recommend-card-tip
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #6C7282;
|
||
margin-top: 28rpx
|
||
.recommend-card-line
|
||
width: calc(100%);
|
||
height: 0rpx;
|
||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||
border: 2rpx dashed rgba(0,0,0,0.14);
|
||
margin-top: 50rpx
|
||
position: relative
|
||
// .recommend-card-line::before
|
||
// position: absolute
|
||
// content: ''
|
||
// left: 0
|
||
// top: 0
|
||
// transform: translate(-50% - 90rpx, -50%)
|
||
// width: 28rpx;
|
||
// height: 28rpx;
|
||
// background: #F4F4F4;
|
||
// border-radius: 50%;
|
||
// .recommend-card-line::after
|
||
// position: absolute
|
||
// content: ''
|
||
// right: 0
|
||
// top: 0
|
||
// transform: translate(50% + 90rpx, -50%)
|
||
// width: 28rpx;
|
||
// height: 28rpx;
|
||
// background: #F4F4F4;
|
||
// border-radius: 50%;
|
||
.recommend-card-controll
|
||
display: flex
|
||
align-items: center
|
||
justify-content: space-between
|
||
margin-top: 40rpx
|
||
padding: 0 6rpx;
|
||
.controll-yes
|
||
width: 124rpx;
|
||
height: 60rpx;
|
||
background: rgba(37,107,250,0.1);
|
||
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||
text-align: center;
|
||
line-height: 60rpx
|
||
color: #256BFA
|
||
.controll-no
|
||
width: 124rpx;
|
||
height: 56rpx;
|
||
line-height: 56rpx
|
||
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||
border: 2rpx solid #DEDEDE;
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
text-align: center;
|
||
.controll-yes:active, .controll-no:active
|
||
width: 120rpx;
|
||
height: 66rpx;
|
||
line-height: 66rpx
|
||
background: #e8e8e8
|
||
border: 2rpx solid #e8e8e8
|
||
.isBut{
|
||
filter: grayscale(100%);
|
||
}
|
||
|
||
// 企业账号显示卡片样式
|
||
.enterprise-card
|
||
margin: 20rpx 28rpx
|
||
padding: 28rpx
|
||
background: rgba(255, 255, 255, 0.9)
|
||
backdrop-filter: blur(20rpx)
|
||
-webkit-backdrop-filter: blur(20rpx)
|
||
border-radius: 24rpx
|
||
border: 1rpx solid rgba(255, 255, 255, 0.4)
|
||
box-shadow: 0 8rpx 40rpx rgba(0, 0, 0, 0.08), 0 2rpx 8rpx rgba(0, 0, 0, 0.04)
|
||
position: relative
|
||
overflow: hidden
|
||
cursor: pointer
|
||
transition: all 0.3s ease
|
||
|
||
&:active
|
||
transform: scale(0.98)
|
||
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.12), 0 1rpx 4rpx rgba(0, 0, 0, 0.08)
|
||
|
||
// 玻璃态效果 - 更强烈的渐变
|
||
&::before
|
||
content: ''
|
||
position: absolute
|
||
top: 0
|
||
left: 0
|
||
right: 0
|
||
bottom: 0
|
||
background: linear-gradient(135deg,
|
||
rgba(255, 255, 255, 0.2) 0%,
|
||
rgba(255, 255, 255, 0.1) 50%,
|
||
rgba(255, 255, 255, 0.05) 100%)
|
||
border-radius: 24rpx
|
||
pointer-events: none
|
||
z-index: 0
|
||
|
||
// 添加微妙的边框高光
|
||
&::after
|
||
content: ''
|
||
position: absolute
|
||
top: 0
|
||
left: 0
|
||
right: 0
|
||
bottom: 0
|
||
border-radius: 24rpx
|
||
padding: 1rpx
|
||
background: linear-gradient(135deg,
|
||
rgba(255, 255, 255, 0.6) 0%,
|
||
rgba(255, 255, 255, 0.2) 100%)
|
||
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)
|
||
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)
|
||
mask-composite: xor
|
||
-webkit-mask-composite: xor
|
||
pointer-events: none
|
||
z-index: 1
|
||
|
||
.card-content
|
||
display: flex
|
||
align-items: center
|
||
position: relative
|
||
z-index: 2
|
||
|
||
.company-icon
|
||
width: 88rpx
|
||
height: 88rpx
|
||
border-radius: 18rpx
|
||
background: linear-gradient(135deg, #256BFA 0%, #4A90E2 100%)
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
margin-right: 28rpx
|
||
flex-shrink: 0
|
||
box-shadow: 0 6rpx 16rpx rgba(37, 107, 250, 0.25)
|
||
position: relative
|
||
|
||
// 添加图标内部高光
|
||
&::before
|
||
content: ''
|
||
position: absolute
|
||
top: 4rpx
|
||
left: 4rpx
|
||
right: 4rpx
|
||
height: 20rpx
|
||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%)
|
||
border-radius: 18rpx 18rpx 0 0
|
||
pointer-events: none
|
||
|
||
.default-logo
|
||
display: flex
|
||
align-items: center
|
||
justify-content: center
|
||
color: #ffffff
|
||
|
||
.company-info
|
||
flex: 1
|
||
min-width: 0
|
||
z-index: 2
|
||
position: relative
|
||
|
||
.company-name
|
||
font-size: 34rpx
|
||
font-weight: 600
|
||
color: #000000
|
||
line-height: 1.3
|
||
margin-bottom: 10rpx
|
||
overflow: hidden
|
||
text-overflow: ellipsis
|
||
white-space: nowrap
|
||
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif
|
||
|
||
.company-details
|
||
display: flex
|
||
align-items: center
|
||
font-size: 26rpx
|
||
color: #666666
|
||
line-height: 1.2
|
||
|
||
.industry
|
||
color: #666666
|
||
font-weight: 400
|
||
|
||
.separator
|
||
margin: 0 10rpx
|
||
color: #CCCCCC
|
||
font-weight: 300
|
||
|
||
.size
|
||
color: #666666
|
||
font-weight: 400
|
||
</style>
|