| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058 |
- <template>
- <view style="display: flex;flex-direction: column;height: 100vh;">
- <!-- 固定顶部导航栏 -->
- <view class="navbar-content" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
- <view class="nav-left" @click="goBack">
- <u-icon name="arrow-leftward" color="#000" size="32"></u-icon>
- </view>
- <view class="nav-title">职位详情</view>
- <view class="nav-right"></view>
- </view>
- <!-- 审核失败 -->
- <view v-if="info.status === 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
- <!-- 审核状态提示 -->
- <view class="status-section">
- <view class="status-icon">
- <image src="../../static/images/index/redGantan.svg" class="status-icon-img"></image>
- </view>
- <view class="status-title">职位审核失败</view>
- </view>
- <!-- 职位信息卡片 -->
- <view class="job-info-card">
- <view class="job-header">
- <view class="job-title-section">
- <text class="job-title">{{ info.ruleClassifyName }}</text>
- </view>
- <view class="job-status">
- <text class="status-text">审核未通过</text>
- </view>
- </view>
- <view class="job-info">
- <text class="job-details">{{ info.county }} {{ info.education }} {{ info.experience }}
- {{ info.salaryRange }} {{ info.postType }}</text>
- </view>
- </view>
- <!-- 失败原因 -->
- <view class="failure-reason-section">
- <view class="section-title">失败原因</view>
- <view class="reason-list">
- <view class="reason-item">
- <text class="reason-text">{{ info.auditContent || '暂无数据' }}</text>
- </view>
- </view>
- </view>
- </view>
- <!-- 其他状态 -->
- <view v-if="info.status !== 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
- <view class="remarks flex justify-center">
- <view class="remarks-box flex justify-between align-center">
- <text style="color: rgba(1, 107, 246, 1);font-weight: bold;">{{ info.status == 1 ? '待审核' :
- (info.status == 2 ? '进行中' : (info.status == 3 ? '已拒绝' : (info.status == 4 ? '已取消' : info.status
- == 5 ? '已关闭' : '暂存')))
- }}</text>
- <text style="color: rgba(156, 164, 171, 1);font-size: 24rpx;">{{ info.createTime }}</text>
- </view>
- </view>
- <view class="remarks flex justify-center" v-if="info.isOverdue == 1">
- <view class="remarks-box flex justify-between align-center">
- <text style="color: #000000;font-weight: bold;">已到期</text>
- <text style="color: #000000;font-size: 24rpx;">{{ info.overdueTime }}</text>
- </view>
- </view>
- <!-- 岗位要求 -->
- <view class="job flex justify-center">
- <view class="job-info flex justify-center">
- <view class="job-info-c">
- <view class="job-info-c-header">
- <view class="job-info-c-title">
- {{ info.ruleClassifyName }}
- </view>
- <view class="job-info-c-price">
- {{ info.salaryRange }}
- </view>
- </view>
- <!-- 地址 -->
- <view class="job-info-c-address">
- <u-icon name="map" color="rgba(58, 57, 67, 1)" style="margin-right: 10rpx;"
- size="24"></u-icon>
- {{ info.city }} {{ info.county }} {{ info.address }}
- </view>
- <view class="job-info-c-label flex align-center flex-wrap">
- <view class="job-info-c-label-item">
- {{ info.experience }}
- </view>
- <view class="job-info-c-label-item">
- {{ info.education }}
- </view>
- <view class="job-info-c-label-item">
- {{ info.industry }}
- </view>
- </view>
- <view class="warning-box">
- <image src="@/static/images/index/tishi.png" />
- <view class="warning-txt">请注意辨认信息真伪,拒绝交纳报名费、线下交易等要求,谨防上当受骗</view>
- </view>
- </view>
- </view>
- </view>
- <!-- 急聘 -->
- <view class="urgent-banner" v-if="info.isDue == 1">
- <view class="urgent-left-section flex align-center">
- <view class="urgent-star-icon-wrapper flex align-center justify-center">
- <u-icon name="star-fill" color="rgba(251, 231, 185, 1)" size="40rpx"></u-icon>
- </view>
- <view class="urgent-text-content">
- <view class="urgent-main-title">急聘职位 | 2天后到期</view>
- <view class="urgent-sub-description">急聘免费体验中,升级正式版享受更多权益</view>
- <view class="urgent-benefits flex align-center">今日剩余权益:5次沟通,0次查看 <u-icon name="arrow-right"
- color="#FFFFFF" size="20rpx" style="margin-left: 10rpx;"></u-icon></view>
- </view>
- </view>
- <view class="urgent-upgrade-button">
- 升级正式版
- </view>
- </view>
- <!-- 岗位介绍 -->
- <view class="jobRemarks flex justify-center">
- <view class="jobRemarks-box flex justify-center">
- <view class="jobRemarks-box-c">
- <view class="jobRemarks-box-c-title flex align-center">
- <image src="/static/images/index/ins.png" class="title-icon"></image>
- <text>职位说明</text>
- </view>
- <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.tag">
- <view class="jobRemarks-box-c-label-item" v-for="(item, index) in info.tag.split(',')"
- :key="index">
- {{ item }}
- </view>
- </view>
- <!--
- <view class="job-description">
- <view class="description-item">1.负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;</view>
- <view class="description-item">2.做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售策略;</view>
- <view class="description-item">3.熟悉Amazon店铺操作,负责店铺产品编辑上传,精准把握关键词选择,负责标题,详情页面的优化;</view>
- <view class="description-item">4.熟悉Amazon平台规则,熟悉Amazon站内广告投放和促销式,站外促销,找红人营销等提高曝光率和转化率的引流方;</view>
- <view class="description-item">5.控制产品风险,合理规划FBA库存,及时合理处理滞销FBA库存;</view>
- <view class="description-item">6.对产品销售进行跟踪,分析,及时汇报销售中存在的问题,并给出可行性意见;</view>
- <view class="description-item">7.及时处理客户留言及回评,解答客户相关咨询与投诉,并进行问题整理统计分析,提高店铺的好评率,确保账号安全;</view>
- <view class="description-item">8.每月定期整理分析运营各项数据,并提出相应的合理化建议。</view>
- </view> -->
- <view class="jobRemarks-box-c-con" v-if="info.positionDetails">
- <view class="jobRemarks-box-c-con-item" v-html="info.positionDetails">
- </view>
- </view>
- <view class="jobRemarks-box-c-line"></view>
- <view class="jobRemarks-box-c-title flex align-center" style="margin-top: 25rpx;">
- <image src="/static/images/index/welfare.png" class="title-icon"></image>
- <text>岗位福利</text>
- </view>
- <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.welfareTag">
- <view class="jobRemarks-box-c-label-item"
- v-for="(item, index) in info.welfareTag ? info.welfareTag.split(';') : []" :key="index">
- {{ item }}
- </view>
- </view>
- <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-else>
- <view class="jobRemarks-box-c-label-item">
- 暂无
- </view>
- </view>
- <!-- <view class="job-description">
- <view class="description-item">1.完整的晋升机制,每年2次调薪机会;</view>
- <view class="description-item">2.满一年五天带薪年假;</view>
- <view class="description-item">3.每月员工下午茶;</view>
- <view class="description-item">4.各类大促活动有对应的激励方案;</view>
- <view class="description-item">5.丰厚的提成和年终奖励;</view>
- <view class="description-item">6.开设员工俱乐部:羽毛球、篮球、舞蹈、瑜伽等等。</view>
- </view> -->
- </view>
- </view>
- </view>
- <!-- 企业简介 -->
- <view class="enterprise">
- <!-- 公司介绍卡片 -->
- <view class="company-intro-card" @click="goInfo(info.company.companyId)">
- <!-- @click="goInfo(info.company.companyId)" -->
- <view class="company-avatar">
- <image
- :src="info.company && info.company.companyLogo ? info.company.companyLogo : '../../static/logo.png'"
- style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode="aspectFill"></image>
- </view>
- <view class="company-info">
- <view class="company-name">{{ info.company ? info.company.companyAllName : '' }}</view>
- <view class="company-details">{{ info.company ? info.company.companyPeople : '' }} ·
- {{ info.company ? info.company.companyScope : '' }}
- </view>
- </view>
- <view class="company-arrow">
- <u-icon name="arrow-right" color="rgba(51, 51, 51, 1)" size="32"></u-icon>
- </view>
- </view>
- <!-- 地图区域 -->
- <view class="enterprise-box flex justify-center">
- <view class="enterprise-box-c">
- <view class="enterprise-box-c-bto flex align-center justify-between" @click.stop="gotoMap()">
- <view class="enterprise-box-c-bto-l flex align-center">
- <u-icon name="map" color="#016BF6" style="margin-left: 20rpx;margin-right: 10rpx;"
- size="28"></u-icon>
- <!-- {{info.province}}{{info.city}}{{info.county}} -->{{ info.address }}
- </view>
- <view class="enterprise-box-c-bto-r">
- <u-icon name="arrow-right" color="#016BF6" style="margin-right: 20rpx;"
- size="28"></u-icon>
- </view>
- </view>
- <!-- #ifndef APP -->
- <view class="enterprise-box-c-map">
- <map v-if="info && info.lat" style="width: 100%; height: 100%;margin-top: 30rpx;" scale="14"
- @tap.stop="gotoMap()" :latitude="info && info.lat ? info.lat : 0"
- :longitude="info && info.lng ? info.lng : 0" :markers="covers">
- </map>
- </view>
- <!-- #endif -->
- </view>
- </view>
- <!-- 职位招聘数据 -->
- <view class="postNum">
- <view style="font-size: 16px;font-weight: 600;">职位招聘数据</view>
- <view class="postNum-ul flex justify-around align-center">
- <view class="postNum-li">
- <view class="postNum-li-num align-center">{{ postData.chatCount || 0 }}</view>
- <view class="postNum-li-txt">沟通过</view>
- </view>
- <view class="postNum-li ">
- <view class="postNum-li-num">{{ postData.viewCount || 0 }}</view>
- <view class="postNum-li-txt">查看过</view>
- </view>
- <!-- <view class="postNum-li">
- <view class="postNum-li-num">34</view>
- <view class="postNum-li-txt">分享</view>
- </view> -->
- <view class="postNum-li">
- <view class="postNum-li-num">{{ postData.collectCount || 0 }}</view>
- <view class="postNum-li-txt">收藏</view>
- </view>
- </view>
- <view style="font-size: 22rpx;color: rgba(102, 102, 102, 1);">职位发布时间:{{ info.createTime }}</view>
- </view>
- </view>
- </view>
- <!-- 底部操作 -->
- <view>
- <!-- <view class="btn flex justify-center" v-if="info.status == 1">
- <view class="btn-box bgBox flex justify-center align-center" @click="cancelProject">
- 取消招聘
- </view>
- </view> -->
- <view class="btn flex justify-center"
- v-if="info.status == 1 || info.status == 3 || info.status == 4 || info.status == 6"
- @click="updataServeType(info.postPushId, 'save')">
- <view class="btn-box bgBox flex justify-center align-center"
- style="background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);">
- 重新发布
- </view>
- </view>
- <view class="btn flex justify-center" v-if="info.status == 1 || info.status == 6">
- <view class="btn-box bgBox flex justify-center align-center"
- @click="updataServeType(info.postPushId, 'update')"
- style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
- 编辑
- </view>
- </view>
- <view class="btn flex justify-center" v-if="info.status == 2">
- <view class="btn-box bgBox flex justify-center align-center" @click="closeOpenJob('close')">
- 关闭岗位
- </view>
- <!-- <view class="btn-box flex justify-between">
- <view class="btn-box bgBox btn-boxs flex justify-center align-center"
- @click="updataServeType(info.postPushId, 'update')"
- style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
- 编辑
- </view>
- </view> -->
- </view>
- <view class="btn flex justify-center" v-if="info.status == 5">
- <view class="btn-box bgBox flex justify-center align-center" @click="closeOpenJob('open')">
- 开启岗位
- </view>
- <!-- <view class="btn-box flex justify-between">
- <view class="btn-box bgBox btn-boxs flex justify-center align-center"
- @click="updataServeType(info.postPushId, 'update')"
- style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
- 编辑
- </view>
- </view> -->
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- statusBarHeight: 0, // 状态栏高度
- postPushId: '',
- info: {}, //岗位详情
- postData: {
- chatCount: 0,
- collectCount: 0,
- viewCount: 0,
- },//岗位招聘数据
- covers: [{
- id: 1,
- latitude: '',
- longitude: '',
- width: 20,
- height: 20,
- iconPath: '../../static/images/mapMarker.png',
- callout: {
- content: '',
- color: '#000', //文字颜色
- fontSize: 10, //文本大小
- padding: 10, //附近留白
- borderRadius: 24, //边框圆角
- bgColor: '#FFFFFF', //背景颜色
- display: 'ALWAYS', //常显
- }
- }],
- };
- },
- onLoad(option) {
- // 获取状态栏高度
- let systemInfo = uni.getSystemInfoSync();
- this.statusBarHeight = systemInfo.statusBarHeight || 0;
- this.postPushId = option.postPushId;
- // 使用 this.$nextTick
- this.$nextTick(() => {
- this.getInfo();
- });
- this.getPostData();
- },
- methods: {
- //返回上一页
- goBack() {
- // 检查页面栈,如果没有可返回的页面,则跳转到职位管理
- const pages = getCurrentPages()
- if (pages.length > 1) {
- uni.navigateBack()
- } else {
- // 如果没有可返回的页面,跳转到职位管理页面
- uni.navigateTo({
- url: '/pages/jobManagement/jobManagement'
- })
- }
- },
- //跳转企业详情
- goInfo(companyId) {
- uni.navigateTo({
- url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + companyId
- })
- },
- //修改岗位
- updataServeType(postPushId, type) {
- let companyStatus = uni.getStorageSync('companyStatus')
- if (companyStatus == 1) {
- uni.showToast({
- title: '企业认证审核中,请审核通过后操作!',
- icon: 'none'
- })
- return
- }
- if (companyStatus == 3) {
- uni.showToast({
- title: '企业认证审核未通过,请重新认证!',
- icon: 'none'
- })
- return
- }
- uni.navigateTo({
- url: '/pages/my/jobPosting?postPushId=' + postPushId + '&type=' + type
- })
- },
- //取消招聘
- cancelProject() {
- let that = this
- uni.showModal({
- content: '确认取消该招聘?',
- title: '提示',
- confirmColor: '#016BF6',
- success(iet) {
- if (iet.confirm) {
- let data = {
- postPushId: that.postPushId
- }
- that.$Request.postT('/app/postPush/cancelPostPush', data).then(res => {
- if (res.code == 0) {
- uni.showToast({
- title: '取消成功',
- duration: 1500,
- complete() {
- that.getInfo()
- }
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- uni.hideLoading()
- })
- }
- }
- })
- },
- //关闭/开启岗位
- closeOpenJob(type) {
- let that = this
- uni.showModal({
- title: '提示',
- content: type == 'close' ? '关闭岗位后,该岗位不会再推荐给用户,是否关闭?' : '开启岗位后,该岗位会重新推荐给用户,是否开启?',
- complete(ret) {
- if (ret.confirm) {
- that.$Request.getT('/app/postPush/closeOrOpen', {
- postPushId: that.postPushId
- }).then(res => {
- if (res.code == 0) {
- uni.showToast({
- title: type == 'close' ? '已关闭' : '已开启',
- duration: 1500,
- complete() {
- that.getInfo()
- }
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- })
- }
- }
- })
- },
- //拉起地图导航
- gotoMap() {
- let that = this
- uni.openLocation({
- latitude: that.info.lat,
- longitude: that.info.lng,
- address: that.info.province + '' + that.info.city + '' + that.info.county + '' + that.info
- .address,
- name: that.info.address,
- // complete(ret) {
- // }
- })
- },
- /**
- * 获取岗位详情
- */
- getInfo() {
- this.$Request.getT("/app/postPush/selectPostPushDetails", {
- // userId:uni.getStorageSync('userId'),
- postPushId: this.postPushId
- }).then(res => {
- if (res.code == 0) {
- this.info = res.data;
- console.log(this.info, '我是地图')
- this.covers = [{
- id: 1,
- latitude: this.info.lat,
- longitude: this.info.lng,
- width: 20,
- height: 20,
- iconPath: '../../static/images/mapMarker.png',
- callout: {
- // content: this.info.city + '' + this.info.county + '' + this.info.address,
- content: this.info.address,
- color: '#000', //文字颜色
- fontSize: 10, //文本大小
- padding: 10, //附近留白
- borderRadius: 24, //边框圆角
- bgColor: '#FFFFFF', //背景颜色
- display: 'ALWAYS', //常显
- }
- }]
- }
- })
- },
- // 获取岗位招聘数据
- getPostData() {
- this.$Request.get('/app/postPush/postPushData', {
- postPushId: this.postPushId
- }).then(res => {
- if (res.code == 0) {
- this.postData = {
- ...this.postData, ...res.data
- }
- } else {
- this.$queue.showToast(res.msg);
- }
- });
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- // background-color: #F2F2F7;
- // padding-top: 160rpx;
- }
- .warning-box {
- background: rgba(255, 251, 232, 1);
- color: rgba(237, 106, 12, 1);
- font-family: Microsoft YaHei UI;
- font-size: 22rpx;
- font-weight: 400;
- letter-spacing: 0px;
- padding: 20rpx 32rpx;
- box-sizing: border-box;
- text-align: left;
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- .warning-txt {
- flex: 1;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- image {
- width: 32rpx;
- height: 32rpx;
- flex-shrink: 0;
- margin-right: 20rpx;
- }
- }
- .navbar-content {
- width: 100%;
- padding: 24rpx 32rpx 20rpx 32rpx;
- box-sizing: border-box;
- color: #000;
- font-family: DM Sans;
- font-size: 30rpx;
- font-weight: 700;
- line-height: 26px;
- display: flex;
- // justify-content: center;
- align-items: center;
- position: relative;
- z-index: 9999;
- .nav-left,
- .nav-right {
- width: 32.61px;
- height: 26px;
- }
- .nav-title {
- flex: 1;
- text-align: center;
- }
- }
- .status-section {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 40rpx 0rpx 40rpx 0rpx;
- .status-icon {
- margin-right: 20rpx;
- display: flex;
- align-items: center;
- .status-icon-img {
- width: 48rpx;
- height: 48rpx;
- }
- }
- .status-title {
- color: rgba(29, 33, 41, 1);
- font-family: DM Sans;
- font-size: 36rpx;
- font-weight: 500;
- line-height: 48rpx;
- letter-spacing: 0%;
- text-align: left;
- display: flex;
- align-items: center;
- }
- }
- .job-info-card {
- background: #ffffff;
- border-radius: 12rpx;
- margin: 0 40rpx 40rpx 40rpx;
- padding: 32rpx;
- border: 0.5px solid rgba(227, 231, 236, 1);
- .job-header {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- margin-bottom: 16rpx;
- .job-title-section {
- flex: 1;
- .job-title {
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 44rpx;
- letter-spacing: 0.5%;
- text-align: left;
- }
- }
- .job-status {
- .status-text {
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 18rpx;
- font-weight: 400;
- line-height: 20rpx;
- letter-spacing: -0.5px;
- text-align: right;
- }
- }
- }
- .job-info {
- .job-details {
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 36rpx;
- letter-spacing: 0.5%;
- text-align: left;
- }
- }
- }
- .failure-reason-section {
- margin: 0 40rpx;
- .section-title {
- color: rgba(31, 44, 55, 1);
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 500;
- line-height: 44rpx;
- letter-spacing: 0.5%;
- text-align: left;
- margin-bottom: 20rpx;
- }
- .reason-list {
- .reason-item {
- margin-bottom: 16rpx;
- .reason-text {
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 500;
- line-height: 48rpx;
- letter-spacing: 0.5%;
- text-align: left;
- }
- }
- }
- }
- .remarks {
- width: 100%;
- margin-top: 30rpx;
- .remarks-box {
- width: 686rpx;
- border-radius: 24rpx;
- background-color: #ffffff;
- padding: 0rpx 20rpx;
- color: red;
- }
- }
- .job {
- width: 100%;
- margin-top: 30rpx;
- .job-info {
- width: 686rpx;
- height: 100%;
- border-radius: 24rpx;
- background-color: #ffffff;
- .job-info-c {
- // width: 626rpx;
- width: 100%;
- height: 100%;
- padding: 30rpx 20rpx;
- }
- .job-info-c-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .job-info-c-address {
- color: rgba(156, 164, 171, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 26rpx;
- letter-spacing: 0.5%;
- text-align: left;
- padding: 20rpx 0;
- }
- .job-info-c-title {
- color: rgba(58, 57, 67, 1);
- font-family: DM Sans;
- font-size: 48rpx;
- font-weight: 700;
- line-height: 60rpx;
- letter-spacing: 0px;
- text-align: left;
- }
- .job-info-c-label {
- // margin-top: 30rpx;
- .job-info-c-label-item {
- color: rgba(153, 153, 153, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 20rpx;
- letter-spacing: 0.5%;
- padding: 12rpx;
- text-align: left;
- margin-right: 30rpx;
- border-radius: 12rpx;
- background: rgba(198, 198, 198, 0.1);
- }
- }
- .job-info-c-price {
- color: rgba(1, 107, 246, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 700;
- line-height: 40rpx;
- letter-spacing: 0.5%;
- text-align: right;
- }
- }
- }
- .jobRemarks {
- width: 100%;
- padding: 0 20rpx;
- .jobRemarks-box {
- width: 100%;
- height: 100%;
- background-color: #ffffff;
- border-radius: 24rpx;
- .jobRemarks-box-c {
- width: 100%;
- height: 100%;
- padding: 30rpx 20rpx;
- }
- .jobRemarks-box-c-title {
- color: rgba(1, 107, 246, 1);
- font-size: 32rpx;
- padding: 8px 12px;
- border-radius: 36px;
- font-weight: 500;
- background: rgba(246, 246, 246, 1);
- .title-icon {
- width: 32rpx;
- height: 32rpx;
- }
- }
- .job-description {
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- .description-item {
- color: rgba(97, 110, 124, 1);
- font-family: DM Sans;
- font-size: 26rpx;
- font-weight: 400;
- line-height: 16px;
- letter-spacing: 0px;
- text-align: left;
- margin-bottom: 8rpx;
- }
- }
- .jobRemarks-box-c-label {
- width: 100%;
- margin-top: 25rpx;
- .jobRemarks-box-c-label-item {
- color: rgba(1, 107, 246, 1);
- font-size: 20rpx;
- padding: 10rpx 15rpx;
- background-color: #F6F6F6;
- border-radius: 10rpx;
- margin-right: 20rpx;
- margin-bottom: 10rpx;
- background: rgba(252, 233, 220, 1);
- }
- }
- .jobRemarks-box-c-con {
- width: 100%;
- margin-top: 25rpx;
- .jobRemarks-box-c-con-item {
- margin-bottom: 10rpx;
- color: #141414;
- font-size: 28rpx;
- font-weight: 500;
- }
- }
- .jobRemarks-box-c-line {
- width: 100%;
- border: 1rpx solid #E6E6E6;
- margin-top: 25rpx;
- }
- }
- }
- .enterprise {
- width: 100%;
- margin-top: 25rpx;
- padding: 0 20rpx;
- .company-intro-card {
- width: 100%;
- background-color: #ffffff;
- border-radius: 24rpx;
- padding: 12rpx 24rpx;
- margin-bottom: 20rpx;
- display: flex;
- align-items: center;
- border: 0.5px solid rgba(227, 231, 236, 1);
- .company-avatar {
- flex-shrink: 0;
- margin-right: 24rpx;
- }
- .company-info {
- flex: 1;
- .company-name {
- color: rgba(51, 51, 51, 1);
- font-size: 26rpx;
- font-weight: 600;
- line-height: 1.4;
- margin-bottom: 8rpx;
- }
- .company-details {
- color: rgba(153, 153, 153, 1);
- font-size: 24rpx;
- font-weight: 400;
- line-height: 1.4;
- }
- }
- .company-arrow {
- flex-shrink: 0;
- margin-left: 48rpx;
- }
- }
- .enterprise-box {
- width: 100%;
- background-color: #ffffff;
- // height: 100%;
- padding-bottom: 25rpx;
- border-radius: 24rpx;
- .enterprise-box-c {
- width: 100%;
- // height: 100%;
- }
- .enterprise-box-c-bto {
- width: 100%;
- padding-top: 15rpx;
- padding-bottom: 15rpx;
- background-color: #EDFFFB;
- border-radius: 30rpx;
- margin-top: 20rpx;
- color: #016BF6;
- font-size: 24rpx;
- font-weight: 500;
- }
- }
- }
- .postNum {
- padding: 12rpx;
- }
- .postNum-ul {
- margin: 22px auto;
- font-family: DM Sans;
- }
- .postNum-li-num {
- font-size: 32rpx;
- font-weight: 600;
- line-height: 48rpx;
- text-align: center;
- }
- .postNum-li-txt {
- font-size: 26rpx;
- font-weight: 600;
- line-height: 48rpx;
- text-align: center;
- }
- .urgent-banner {
- width: 686rpx;
- height: 150rpx;
- background: linear-gradient(180deg, rgba(255, 181, 60, 1) 100%, rgba(251, 231, 185, 1) 50%);
- border-radius: 16rpx;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- margin: 0 auto 20rpx auto;
- .urgent-left-section {
- flex: 1;
- display: flex;
- align-items: center;
- .urgent-star-icon-wrapper {
- width: 72rpx;
- height: 72rpx;
- border-radius: 50%;
- background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
- margin-right: 24rpx;
- flex-shrink: 0;
- }
- .urgent-text-content {
- flex: 1;
- .urgent-main-title {
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 500;
- line-height: 32rpx;
- letter-spacing: 0%;
- text-align: left;
- margin-bottom: 8rpx;
- }
- .urgent-sub-description {
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 20rpx;
- font-weight: 400;
- line-height: 26rpx;
- letter-spacing: 0%;
- text-align: left;
- margin-bottom: 6rpx;
- }
- .urgent-benefits {
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 20rpx;
- font-weight: 400;
- line-height: 26rpx;
- letter-spacing: 0%;
- text-align: left;
- }
- }
- }
- .urgent-upgrade-button {
- background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
- padding: 8rpx;
- border-radius: 8rpx;
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 16rpx;
- font-weight: 400;
- line-height: 20rpx;
- letter-spacing: -0.5px;
- text-align: right;
- margin-left: 20rpx;
- }
- }
- .bgBox {
- color: #ffffff;
- background-color: rgba(1, 107, 246, 1);
- font-weight: bold;
- border-radius: 50rpx;
- }
- .btn {
- width: 100%;
- height: 88rpx;
- margin: 30rpx 0rpx;
- border-radius: 40rpx;
- .btn-boxs {
- width: 49% !important;
- }
- .btn-box {
- width: 686rpx;
- height: 100%;
- }
- }
- </style>
|