pay.vue 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
  1. <template>
  2. <view style="display: flex;flex-direction: column;height: 100vh;">
  3. <!-- 固定顶部导航栏 -->
  4. <view class="navbar-content" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="nav-left" @click="goBack">
  6. <u-icon name="arrow-leftward" color="#000" size="32"></u-icon>
  7. </view>
  8. <view class="nav-title">职位详情</view>
  9. <view class="nav-right"></view>
  10. </view>
  11. <!-- 审核失败 -->
  12. <view v-if="info.status === 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
  13. <!-- 审核状态提示 -->
  14. <view class="status-section">
  15. <view class="status-icon">
  16. <image src="../../static/images/index/redGantan.svg" class="status-icon-img"></image>
  17. </view>
  18. <view class="status-title">职位审核失败</view>
  19. </view>
  20. <!-- 职位信息卡片 -->
  21. <view class="job-info-card">
  22. <view class="job-header">
  23. <view class="job-title-section">
  24. <text class="job-title">{{ info.ruleClassifyName }}</text>
  25. </view>
  26. <view class="job-status">
  27. <text class="status-text">审核未通过</text>
  28. </view>
  29. </view>
  30. <view class="job-info">
  31. <text class="job-details">{{ info.county }} {{ info.education }} {{ info.experience }}
  32. {{ info.salaryRange }} {{ info.postType }}</text>
  33. </view>
  34. </view>
  35. <!-- 失败原因 -->
  36. <view class="failure-reason-section">
  37. <view class="section-title">失败原因</view>
  38. <view class="reason-list">
  39. <view class="reason-item">
  40. <text class="reason-text">{{ info.auditContent || '暂无数据' }}</text>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 其他状态 -->
  46. <view v-if="info.status !== 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
  47. <view class="remarks flex justify-center">
  48. <view class="remarks-box flex justify-between align-center">
  49. <text style="color: rgba(1, 107, 246, 1);font-weight: bold;">{{ info.status == 1 ? '待审核' :
  50. (info.status == 2 ? '进行中' : (info.status == 3 ? '已拒绝' : (info.status == 4 ? '已取消' : info.status
  51. == 5 ? '已关闭' : '暂存')))
  52. }}</text>
  53. <text style="color: rgba(156, 164, 171, 1);font-size: 24rpx;">{{ info.createTime }}</text>
  54. </view>
  55. </view>
  56. <view class="remarks flex justify-center" v-if="info.isOverdue == 1">
  57. <view class="remarks-box flex justify-between align-center">
  58. <text style="color: #000000;font-weight: bold;">已到期</text>
  59. <text style="color: #000000;font-size: 24rpx;">{{ info.overdueTime }}</text>
  60. </view>
  61. </view>
  62. <!-- 岗位要求 -->
  63. <view class="job flex justify-center">
  64. <view class="job-info flex justify-center">
  65. <view class="job-info-c">
  66. <view class="job-info-c-header">
  67. <view class="job-info-c-title">
  68. {{ info.ruleClassifyName }}
  69. </view>
  70. <view class="job-info-c-price">
  71. {{ info.salaryRange }}
  72. </view>
  73. </view>
  74. <!-- 地址 -->
  75. <view class="job-info-c-address">
  76. <u-icon name="map" color="rgba(58, 57, 67, 1)" style="margin-right: 10rpx;"
  77. size="24"></u-icon>
  78. {{ info.city }} {{ info.county }} {{ info.address }}
  79. </view>
  80. <view class="job-info-c-label flex align-center flex-wrap">
  81. <view class="job-info-c-label-item">
  82. {{ info.experience }}
  83. </view>
  84. <view class="job-info-c-label-item">
  85. {{ info.education }}
  86. </view>
  87. <view class="job-info-c-label-item">
  88. {{ info.industry }}
  89. </view>
  90. </view>
  91. <view class="warning-box">
  92. <image src="@/static/images/index/tishi.png" />
  93. <view class="warning-txt">请注意辨认信息真伪,拒绝交纳报名费、线下交易等要求,谨防上当受骗</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <!-- 急聘 -->
  99. <view class="urgent-banner" v-if="info.isDue == 1">
  100. <view class="urgent-left-section flex align-center">
  101. <view class="urgent-star-icon-wrapper flex align-center justify-center">
  102. <u-icon name="star-fill" color="rgba(251, 231, 185, 1)" size="40rpx"></u-icon>
  103. </view>
  104. <view class="urgent-text-content">
  105. <view class="urgent-main-title">急聘职位 | 2天后到期</view>
  106. <view class="urgent-sub-description">急聘免费体验中,升级正式版享受更多权益</view>
  107. <view class="urgent-benefits flex align-center">今日剩余权益:5次沟通,0次查看 <u-icon name="arrow-right"
  108. color="#FFFFFF" size="20rpx" style="margin-left: 10rpx;"></u-icon></view>
  109. </view>
  110. </view>
  111. <view class="urgent-upgrade-button">
  112. 升级正式版
  113. </view>
  114. </view>
  115. <!-- 岗位介绍 -->
  116. <view class="jobRemarks flex justify-center">
  117. <view class="jobRemarks-box flex justify-center">
  118. <view class="jobRemarks-box-c">
  119. <view class="jobRemarks-box-c-title flex align-center">
  120. <image src="/static/images/index/ins.png" class="title-icon"></image>
  121. <text>职位说明</text>
  122. </view>
  123. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.tag">
  124. <view class="jobRemarks-box-c-label-item" v-for="(item, index) in info.tag.split(',')"
  125. :key="index">
  126. {{ item }}
  127. </view>
  128. </view>
  129. <!--
  130. <view class="job-description">
  131. <view class="description-item">1.负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;</view>
  132. <view class="description-item">2.做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售策略;</view>
  133. <view class="description-item">3.熟悉Amazon店铺操作,负责店铺产品编辑上传,精准把握关键词选择,负责标题,详情页面的优化;</view>
  134. <view class="description-item">4.熟悉Amazon平台规则,熟悉Amazon站内广告投放和促销式,站外促销,找红人营销等提高曝光率和转化率的引流方;</view>
  135. <view class="description-item">5.控制产品风险,合理规划FBA库存,及时合理处理滞销FBA库存;</view>
  136. <view class="description-item">6.对产品销售进行跟踪,分析,及时汇报销售中存在的问题,并给出可行性意见;</view>
  137. <view class="description-item">7.及时处理客户留言及回评,解答客户相关咨询与投诉,并进行问题整理统计分析,提高店铺的好评率,确保账号安全;</view>
  138. <view class="description-item">8.每月定期整理分析运营各项数据,并提出相应的合理化建议。</view>
  139. </view> -->
  140. <view class="jobRemarks-box-c-con" v-if="info.positionDetails">
  141. <view class="jobRemarks-box-c-con-item" v-html="info.positionDetails">
  142. </view>
  143. </view>
  144. <view class="jobRemarks-box-c-line"></view>
  145. <view class="jobRemarks-box-c-title flex align-center" style="margin-top: 25rpx;">
  146. <image src="/static/images/index/welfare.png" class="title-icon"></image>
  147. <text>岗位福利</text>
  148. </view>
  149. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.welfareTag">
  150. <view class="jobRemarks-box-c-label-item"
  151. v-for="(item, index) in info.welfareTag ? info.welfareTag.split(';') : []" :key="index">
  152. {{ item }}
  153. </view>
  154. </view>
  155. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-else>
  156. <view class="jobRemarks-box-c-label-item">
  157. 暂无
  158. </view>
  159. </view>
  160. <!-- <view class="job-description">
  161. <view class="description-item">1.完整的晋升机制,每年2次调薪机会;</view>
  162. <view class="description-item">2.满一年五天带薪年假;</view>
  163. <view class="description-item">3.每月员工下午茶;</view>
  164. <view class="description-item">4.各类大促活动有对应的激励方案;</view>
  165. <view class="description-item">5.丰厚的提成和年终奖励;</view>
  166. <view class="description-item">6.开设员工俱乐部:羽毛球、篮球、舞蹈、瑜伽等等。</view>
  167. </view> -->
  168. </view>
  169. </view>
  170. </view>
  171. <!-- 企业简介 -->
  172. <view class="enterprise">
  173. <!-- 公司介绍卡片 -->
  174. <view class="company-intro-card" @click="goInfo(info.company.companyId)">
  175. <!-- @click="goInfo(info.company.companyId)" -->
  176. <view class="company-avatar">
  177. <image
  178. :src="info.company && info.company.companyLogo ? info.company.companyLogo : '../../static/logo.png'"
  179. style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode="aspectFill"></image>
  180. </view>
  181. <view class="company-info">
  182. <view class="company-name">{{ info.company ? info.company.companyAllName : '' }}</view>
  183. <view class="company-details">{{ info.company ? info.company.companyPeople : '' }} ·
  184. {{ info.company ? info.company.companyScope : '' }}
  185. </view>
  186. </view>
  187. <view class="company-arrow">
  188. <u-icon name="arrow-right" color="rgba(51, 51, 51, 1)" size="32"></u-icon>
  189. </view>
  190. </view>
  191. <!-- 地图区域 -->
  192. <view class="enterprise-box flex justify-center">
  193. <view class="enterprise-box-c">
  194. <view class="enterprise-box-c-bto flex align-center justify-between" @click.stop="gotoMap()">
  195. <view class="enterprise-box-c-bto-l flex align-center">
  196. <u-icon name="map" color="#016BF6" style="margin-left: 20rpx;margin-right: 10rpx;"
  197. size="28"></u-icon>
  198. <!-- {{info.province}}{{info.city}}{{info.county}} -->{{ info.address }}
  199. </view>
  200. <view class="enterprise-box-c-bto-r">
  201. <u-icon name="arrow-right" color="#016BF6" style="margin-right: 20rpx;"
  202. size="28"></u-icon>
  203. </view>
  204. </view>
  205. <!-- #ifndef APP -->
  206. <view class="enterprise-box-c-map">
  207. <map v-if="info && info.lat" style="width: 100%; height: 100%;margin-top: 30rpx;" scale="14"
  208. @tap.stop="gotoMap()" :latitude="info && info.lat ? info.lat : 0"
  209. :longitude="info && info.lng ? info.lng : 0" :markers="covers">
  210. </map>
  211. </view>
  212. <!-- #endif -->
  213. </view>
  214. </view>
  215. <!-- 职位招聘数据 -->
  216. <view class="postNum">
  217. <view style="font-size: 16px;font-weight: 600;">职位招聘数据</view>
  218. <view class="postNum-ul flex justify-around align-center">
  219. <view class="postNum-li">
  220. <view class="postNum-li-num align-center">{{ postData.chatCount || 0 }}</view>
  221. <view class="postNum-li-txt">沟通过</view>
  222. </view>
  223. <view class="postNum-li ">
  224. <view class="postNum-li-num">{{ postData.viewCount || 0 }}</view>
  225. <view class="postNum-li-txt">查看过</view>
  226. </view>
  227. <!-- <view class="postNum-li">
  228. <view class="postNum-li-num">34</view>
  229. <view class="postNum-li-txt">分享</view>
  230. </view> -->
  231. <view class="postNum-li">
  232. <view class="postNum-li-num">{{ postData.collectCount || 0 }}</view>
  233. <view class="postNum-li-txt">收藏</view>
  234. </view>
  235. </view>
  236. <view style="font-size: 22rpx;color: rgba(102, 102, 102, 1);">职位发布时间:{{ info.createTime }}</view>
  237. </view>
  238. </view>
  239. </view>
  240. <!-- 底部操作 -->
  241. <view>
  242. <!-- <view class="btn flex justify-center" v-if="info.status == 1">
  243. <view class="btn-box bgBox flex justify-center align-center" @click="cancelProject">
  244. 取消招聘
  245. </view>
  246. </view> -->
  247. <view class="btn flex justify-center"
  248. v-if="info.status == 1 || info.status == 3 || info.status == 4 || info.status == 6"
  249. @click="updataServeType(info.postPushId, 'save')">
  250. <view class="btn-box bgBox flex justify-center align-center"
  251. style="background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);">
  252. 重新发布
  253. </view>
  254. </view>
  255. <view class="btn flex justify-center" v-if="info.status == 1 || info.status == 6">
  256. <view class="btn-box bgBox flex justify-center align-center"
  257. @click="updataServeType(info.postPushId, 'update')"
  258. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  259. 编辑
  260. </view>
  261. </view>
  262. <view class="btn flex justify-center" v-if="info.status == 2">
  263. <view class="btn-box bgBox flex justify-center align-center" @click="closeOpenJob('close')">
  264. 关闭岗位
  265. </view>
  266. <!-- <view class="btn-box flex justify-between">
  267. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  268. @click="updataServeType(info.postPushId, 'update')"
  269. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  270. 编辑
  271. </view>
  272. </view> -->
  273. </view>
  274. <view class="btn flex justify-center" v-if="info.status == 5">
  275. <view class="btn-box bgBox flex justify-center align-center" @click="closeOpenJob('open')">
  276. 开启岗位
  277. </view>
  278. <!-- <view class="btn-box flex justify-between">
  279. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  280. @click="updataServeType(info.postPushId, 'update')"
  281. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  282. 编辑
  283. </view>
  284. </view> -->
  285. </view>
  286. </view>
  287. </view>
  288. </template>
  289. <script>
  290. export default {
  291. data() {
  292. return {
  293. statusBarHeight: 0, // 状态栏高度
  294. postPushId: '',
  295. info: {}, //岗位详情
  296. postData: {
  297. chatCount: 0,
  298. collectCount: 0,
  299. viewCount: 0,
  300. },//岗位招聘数据
  301. covers: [{
  302. id: 1,
  303. latitude: '',
  304. longitude: '',
  305. width: 20,
  306. height: 20,
  307. iconPath: '../../static/images/mapMarker.png',
  308. callout: {
  309. content: '',
  310. color: '#000', //文字颜色
  311. fontSize: 10, //文本大小
  312. padding: 10, //附近留白
  313. borderRadius: 24, //边框圆角
  314. bgColor: '#FFFFFF', //背景颜色
  315. display: 'ALWAYS', //常显
  316. }
  317. }],
  318. };
  319. },
  320. onLoad(option) {
  321. // 获取状态栏高度
  322. let systemInfo = uni.getSystemInfoSync();
  323. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  324. this.postPushId = option.postPushId;
  325. // 使用 this.$nextTick
  326. this.$nextTick(() => {
  327. this.getInfo();
  328. });
  329. this.getPostData();
  330. },
  331. methods: {
  332. //返回上一页
  333. goBack() {
  334. // 检查页面栈,如果没有可返回的页面,则跳转到职位管理
  335. const pages = getCurrentPages()
  336. if (pages.length > 1) {
  337. uni.navigateBack()
  338. } else {
  339. // 如果没有可返回的页面,跳转到职位管理页面
  340. uni.navigateTo({
  341. url: '/pages/jobManagement/jobManagement'
  342. })
  343. }
  344. },
  345. //跳转企业详情
  346. goInfo(companyId) {
  347. uni.navigateTo({
  348. url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + companyId
  349. })
  350. },
  351. //修改岗位
  352. updataServeType(postPushId, type) {
  353. let companyStatus = uni.getStorageSync('companyStatus')
  354. if (companyStatus == 1) {
  355. uni.showToast({
  356. title: '企业认证审核中,请审核通过后操作!',
  357. icon: 'none'
  358. })
  359. return
  360. }
  361. if (companyStatus == 3) {
  362. uni.showToast({
  363. title: '企业认证审核未通过,请重新认证!',
  364. icon: 'none'
  365. })
  366. return
  367. }
  368. uni.navigateTo({
  369. url: '/pages/my/jobPosting?postPushId=' + postPushId + '&type=' + type
  370. })
  371. },
  372. //取消招聘
  373. cancelProject() {
  374. let that = this
  375. uni.showModal({
  376. content: '确认取消该招聘?',
  377. title: '提示',
  378. confirmColor: '#016BF6',
  379. success(iet) {
  380. if (iet.confirm) {
  381. let data = {
  382. postPushId: that.postPushId
  383. }
  384. that.$Request.postT('/app/postPush/cancelPostPush', data).then(res => {
  385. if (res.code == 0) {
  386. uni.showToast({
  387. title: '取消成功',
  388. duration: 1500,
  389. complete() {
  390. that.getInfo()
  391. }
  392. })
  393. } else {
  394. uni.showToast({
  395. title: res.msg,
  396. icon: 'none'
  397. })
  398. }
  399. uni.hideLoading()
  400. })
  401. }
  402. }
  403. })
  404. },
  405. //关闭/开启岗位
  406. closeOpenJob(type) {
  407. let that = this
  408. uni.showModal({
  409. title: '提示',
  410. content: type == 'close' ? '关闭岗位后,该岗位不会再推荐给用户,是否关闭?' : '开启岗位后,该岗位会重新推荐给用户,是否开启?',
  411. complete(ret) {
  412. if (ret.confirm) {
  413. that.$Request.getT('/app/postPush/closeOrOpen', {
  414. postPushId: that.postPushId
  415. }).then(res => {
  416. if (res.code == 0) {
  417. uni.showToast({
  418. title: type == 'close' ? '已关闭' : '已开启',
  419. duration: 1500,
  420. complete() {
  421. that.getInfo()
  422. }
  423. })
  424. } else {
  425. uni.showToast({
  426. title: res.msg,
  427. icon: 'none'
  428. })
  429. }
  430. })
  431. }
  432. }
  433. })
  434. },
  435. //拉起地图导航
  436. gotoMap() {
  437. let that = this
  438. uni.openLocation({
  439. latitude: that.info.lat,
  440. longitude: that.info.lng,
  441. address: that.info.province + '' + that.info.city + '' + that.info.county + '' + that.info
  442. .address,
  443. name: that.info.address,
  444. // complete(ret) {
  445. // }
  446. })
  447. },
  448. /**
  449. * 获取岗位详情
  450. */
  451. getInfo() {
  452. this.$Request.getT("/app/postPush/selectPostPushDetails", {
  453. // userId:uni.getStorageSync('userId'),
  454. postPushId: this.postPushId
  455. }).then(res => {
  456. if (res.code == 0) {
  457. this.info = res.data;
  458. console.log(this.info, '我是地图')
  459. this.covers = [{
  460. id: 1,
  461. latitude: this.info.lat,
  462. longitude: this.info.lng,
  463. width: 20,
  464. height: 20,
  465. iconPath: '../../static/images/mapMarker.png',
  466. callout: {
  467. // content: this.info.city + '' + this.info.county + '' + this.info.address,
  468. content: this.info.address,
  469. color: '#000', //文字颜色
  470. fontSize: 10, //文本大小
  471. padding: 10, //附近留白
  472. borderRadius: 24, //边框圆角
  473. bgColor: '#FFFFFF', //背景颜色
  474. display: 'ALWAYS', //常显
  475. }
  476. }]
  477. }
  478. })
  479. },
  480. // 获取岗位招聘数据
  481. getPostData() {
  482. this.$Request.get('/app/postPush/postPushData', {
  483. postPushId: this.postPushId
  484. }).then(res => {
  485. if (res.code == 0) {
  486. this.postData = {
  487. ...this.postData, ...res.data
  488. }
  489. } else {
  490. this.$queue.showToast(res.msg);
  491. }
  492. });
  493. }
  494. }
  495. }
  496. </script>
  497. <style lang="scss">
  498. page {
  499. // background-color: #F2F2F7;
  500. // padding-top: 160rpx;
  501. }
  502. .warning-box {
  503. background: rgba(255, 251, 232, 1);
  504. color: rgba(237, 106, 12, 1);
  505. font-family: Microsoft YaHei UI;
  506. font-size: 22rpx;
  507. font-weight: 400;
  508. letter-spacing: 0px;
  509. padding: 20rpx 32rpx;
  510. box-sizing: border-box;
  511. text-align: left;
  512. margin-top: 20rpx;
  513. display: flex;
  514. align-items: center;
  515. .warning-txt {
  516. flex: 1;
  517. overflow: hidden;
  518. white-space: nowrap;
  519. text-overflow: ellipsis;
  520. }
  521. image {
  522. width: 32rpx;
  523. height: 32rpx;
  524. flex-shrink: 0;
  525. margin-right: 20rpx;
  526. }
  527. }
  528. .navbar-content {
  529. width: 100%;
  530. padding: 24rpx 32rpx 20rpx 32rpx;
  531. box-sizing: border-box;
  532. color: #000;
  533. font-family: DM Sans;
  534. font-size: 30rpx;
  535. font-weight: 700;
  536. line-height: 26px;
  537. display: flex;
  538. // justify-content: center;
  539. align-items: center;
  540. position: relative;
  541. z-index: 9999;
  542. .nav-left,
  543. .nav-right {
  544. width: 32.61px;
  545. height: 26px;
  546. }
  547. .nav-title {
  548. flex: 1;
  549. text-align: center;
  550. }
  551. }
  552. .status-section {
  553. display: flex;
  554. justify-content: center;
  555. align-items: center;
  556. margin: 40rpx 0rpx 40rpx 0rpx;
  557. .status-icon {
  558. margin-right: 20rpx;
  559. display: flex;
  560. align-items: center;
  561. .status-icon-img {
  562. width: 48rpx;
  563. height: 48rpx;
  564. }
  565. }
  566. .status-title {
  567. color: rgba(29, 33, 41, 1);
  568. font-family: DM Sans;
  569. font-size: 36rpx;
  570. font-weight: 500;
  571. line-height: 48rpx;
  572. letter-spacing: 0%;
  573. text-align: left;
  574. display: flex;
  575. align-items: center;
  576. }
  577. }
  578. .job-info-card {
  579. background: #ffffff;
  580. border-radius: 12rpx;
  581. margin: 0 40rpx 40rpx 40rpx;
  582. padding: 32rpx;
  583. border: 0.5px solid rgba(227, 231, 236, 1);
  584. .job-header {
  585. display: flex;
  586. justify-content: space-between;
  587. align-items: flex-start;
  588. margin-bottom: 16rpx;
  589. .job-title-section {
  590. flex: 1;
  591. .job-title {
  592. color: rgba(153, 153, 153, 1);
  593. font-family: DM Sans;
  594. font-size: 28rpx;
  595. font-weight: 400;
  596. line-height: 44rpx;
  597. letter-spacing: 0.5%;
  598. text-align: left;
  599. }
  600. }
  601. .job-status {
  602. .status-text {
  603. color: rgba(153, 153, 153, 1);
  604. font-family: DM Sans;
  605. font-size: 18rpx;
  606. font-weight: 400;
  607. line-height: 20rpx;
  608. letter-spacing: -0.5px;
  609. text-align: right;
  610. }
  611. }
  612. }
  613. .job-info {
  614. .job-details {
  615. color: rgba(153, 153, 153, 1);
  616. font-family: DM Sans;
  617. font-size: 28rpx;
  618. font-weight: 400;
  619. line-height: 36rpx;
  620. letter-spacing: 0.5%;
  621. text-align: left;
  622. }
  623. }
  624. }
  625. .failure-reason-section {
  626. margin: 0 40rpx;
  627. .section-title {
  628. color: rgba(31, 44, 55, 1);
  629. font-family: DM Sans;
  630. font-size: 28rpx;
  631. font-weight: 500;
  632. line-height: 44rpx;
  633. letter-spacing: 0.5%;
  634. text-align: left;
  635. margin-bottom: 20rpx;
  636. }
  637. .reason-list {
  638. .reason-item {
  639. margin-bottom: 16rpx;
  640. .reason-text {
  641. color: rgba(153, 153, 153, 1);
  642. font-family: DM Sans;
  643. font-size: 24rpx;
  644. font-weight: 500;
  645. line-height: 48rpx;
  646. letter-spacing: 0.5%;
  647. text-align: left;
  648. }
  649. }
  650. }
  651. }
  652. .remarks {
  653. width: 100%;
  654. margin-top: 30rpx;
  655. .remarks-box {
  656. width: 686rpx;
  657. border-radius: 24rpx;
  658. background-color: #ffffff;
  659. padding: 0rpx 20rpx;
  660. color: red;
  661. }
  662. }
  663. .job {
  664. width: 100%;
  665. margin-top: 30rpx;
  666. .job-info {
  667. width: 686rpx;
  668. height: 100%;
  669. border-radius: 24rpx;
  670. background-color: #ffffff;
  671. .job-info-c {
  672. // width: 626rpx;
  673. width: 100%;
  674. height: 100%;
  675. padding: 30rpx 20rpx;
  676. }
  677. .job-info-c-header {
  678. display: flex;
  679. justify-content: space-between;
  680. align-items: center;
  681. }
  682. .job-info-c-address {
  683. color: rgba(156, 164, 171, 1);
  684. font-family: DM Sans;
  685. font-size: 24rpx;
  686. font-weight: 400;
  687. line-height: 26rpx;
  688. letter-spacing: 0.5%;
  689. text-align: left;
  690. padding: 20rpx 0;
  691. }
  692. .job-info-c-title {
  693. color: rgba(58, 57, 67, 1);
  694. font-family: DM Sans;
  695. font-size: 48rpx;
  696. font-weight: 700;
  697. line-height: 60rpx;
  698. letter-spacing: 0px;
  699. text-align: left;
  700. }
  701. .job-info-c-label {
  702. // margin-top: 30rpx;
  703. .job-info-c-label-item {
  704. color: rgba(153, 153, 153, 1);
  705. font-family: DM Sans;
  706. font-size: 24rpx;
  707. font-weight: 400;
  708. line-height: 20rpx;
  709. letter-spacing: 0.5%;
  710. padding: 12rpx;
  711. text-align: left;
  712. margin-right: 30rpx;
  713. border-radius: 12rpx;
  714. background: rgba(198, 198, 198, 0.1);
  715. }
  716. }
  717. .job-info-c-price {
  718. color: rgba(1, 107, 246, 1);
  719. font-family: DM Sans;
  720. font-size: 32rpx;
  721. font-weight: 700;
  722. line-height: 40rpx;
  723. letter-spacing: 0.5%;
  724. text-align: right;
  725. }
  726. }
  727. }
  728. .jobRemarks {
  729. width: 100%;
  730. padding: 0 20rpx;
  731. .jobRemarks-box {
  732. width: 100%;
  733. height: 100%;
  734. background-color: #ffffff;
  735. border-radius: 24rpx;
  736. .jobRemarks-box-c {
  737. width: 100%;
  738. height: 100%;
  739. padding: 30rpx 20rpx;
  740. }
  741. .jobRemarks-box-c-title {
  742. color: rgba(1, 107, 246, 1);
  743. font-size: 32rpx;
  744. padding: 8px 12px;
  745. border-radius: 36px;
  746. font-weight: 500;
  747. background: rgba(246, 246, 246, 1);
  748. .title-icon {
  749. width: 32rpx;
  750. height: 32rpx;
  751. }
  752. }
  753. .job-description {
  754. margin-top: 20rpx;
  755. margin-bottom: 20rpx;
  756. .description-item {
  757. color: rgba(97, 110, 124, 1);
  758. font-family: DM Sans;
  759. font-size: 26rpx;
  760. font-weight: 400;
  761. line-height: 16px;
  762. letter-spacing: 0px;
  763. text-align: left;
  764. margin-bottom: 8rpx;
  765. }
  766. }
  767. .jobRemarks-box-c-label {
  768. width: 100%;
  769. margin-top: 25rpx;
  770. .jobRemarks-box-c-label-item {
  771. color: rgba(1, 107, 246, 1);
  772. font-size: 20rpx;
  773. padding: 10rpx 15rpx;
  774. background-color: #F6F6F6;
  775. border-radius: 10rpx;
  776. margin-right: 20rpx;
  777. margin-bottom: 10rpx;
  778. background: rgba(252, 233, 220, 1);
  779. }
  780. }
  781. .jobRemarks-box-c-con {
  782. width: 100%;
  783. margin-top: 25rpx;
  784. .jobRemarks-box-c-con-item {
  785. margin-bottom: 10rpx;
  786. color: #141414;
  787. font-size: 28rpx;
  788. font-weight: 500;
  789. }
  790. }
  791. .jobRemarks-box-c-line {
  792. width: 100%;
  793. border: 1rpx solid #E6E6E6;
  794. margin-top: 25rpx;
  795. }
  796. }
  797. }
  798. .enterprise {
  799. width: 100%;
  800. margin-top: 25rpx;
  801. padding: 0 20rpx;
  802. .company-intro-card {
  803. width: 100%;
  804. background-color: #ffffff;
  805. border-radius: 24rpx;
  806. padding: 12rpx 24rpx;
  807. margin-bottom: 20rpx;
  808. display: flex;
  809. align-items: center;
  810. border: 0.5px solid rgba(227, 231, 236, 1);
  811. .company-avatar {
  812. flex-shrink: 0;
  813. margin-right: 24rpx;
  814. }
  815. .company-info {
  816. flex: 1;
  817. .company-name {
  818. color: rgba(51, 51, 51, 1);
  819. font-size: 26rpx;
  820. font-weight: 600;
  821. line-height: 1.4;
  822. margin-bottom: 8rpx;
  823. }
  824. .company-details {
  825. color: rgba(153, 153, 153, 1);
  826. font-size: 24rpx;
  827. font-weight: 400;
  828. line-height: 1.4;
  829. }
  830. }
  831. .company-arrow {
  832. flex-shrink: 0;
  833. margin-left: 48rpx;
  834. }
  835. }
  836. .enterprise-box {
  837. width: 100%;
  838. background-color: #ffffff;
  839. // height: 100%;
  840. padding-bottom: 25rpx;
  841. border-radius: 24rpx;
  842. .enterprise-box-c {
  843. width: 100%;
  844. // height: 100%;
  845. }
  846. .enterprise-box-c-bto {
  847. width: 100%;
  848. padding-top: 15rpx;
  849. padding-bottom: 15rpx;
  850. background-color: #EDFFFB;
  851. border-radius: 30rpx;
  852. margin-top: 20rpx;
  853. color: #016BF6;
  854. font-size: 24rpx;
  855. font-weight: 500;
  856. }
  857. }
  858. }
  859. .postNum {
  860. padding: 12rpx;
  861. }
  862. .postNum-ul {
  863. margin: 22px auto;
  864. font-family: DM Sans;
  865. }
  866. .postNum-li-num {
  867. font-size: 32rpx;
  868. font-weight: 600;
  869. line-height: 48rpx;
  870. text-align: center;
  871. }
  872. .postNum-li-txt {
  873. font-size: 26rpx;
  874. font-weight: 600;
  875. line-height: 48rpx;
  876. text-align: center;
  877. }
  878. .urgent-banner {
  879. width: 686rpx;
  880. height: 150rpx;
  881. background: linear-gradient(180deg, rgba(255, 181, 60, 1) 100%, rgba(251, 231, 185, 1) 50%);
  882. border-radius: 16rpx;
  883. display: flex;
  884. align-items: flex-start;
  885. justify-content: space-between;
  886. padding: 20rpx 30rpx;
  887. margin: 0 auto 20rpx auto;
  888. .urgent-left-section {
  889. flex: 1;
  890. display: flex;
  891. align-items: center;
  892. .urgent-star-icon-wrapper {
  893. width: 72rpx;
  894. height: 72rpx;
  895. border-radius: 50%;
  896. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  897. margin-right: 24rpx;
  898. flex-shrink: 0;
  899. }
  900. .urgent-text-content {
  901. flex: 1;
  902. .urgent-main-title {
  903. color: rgba(255, 255, 255, 1);
  904. font-family: DM Sans;
  905. font-size: 24rpx;
  906. font-weight: 500;
  907. line-height: 32rpx;
  908. letter-spacing: 0%;
  909. text-align: left;
  910. margin-bottom: 8rpx;
  911. }
  912. .urgent-sub-description {
  913. color: rgba(255, 255, 255, 1);
  914. font-family: DM Sans;
  915. font-size: 20rpx;
  916. font-weight: 400;
  917. line-height: 26rpx;
  918. letter-spacing: 0%;
  919. text-align: left;
  920. margin-bottom: 6rpx;
  921. }
  922. .urgent-benefits {
  923. color: rgba(255, 255, 255, 1);
  924. font-family: DM Sans;
  925. font-size: 20rpx;
  926. font-weight: 400;
  927. line-height: 26rpx;
  928. letter-spacing: 0%;
  929. text-align: left;
  930. }
  931. }
  932. }
  933. .urgent-upgrade-button {
  934. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  935. padding: 8rpx;
  936. border-radius: 8rpx;
  937. color: rgba(255, 255, 255, 1);
  938. font-family: DM Sans;
  939. font-size: 16rpx;
  940. font-weight: 400;
  941. line-height: 20rpx;
  942. letter-spacing: -0.5px;
  943. text-align: right;
  944. margin-left: 20rpx;
  945. }
  946. }
  947. .bgBox {
  948. color: #ffffff;
  949. background-color: rgba(1, 107, 246, 1);
  950. font-weight: bold;
  951. border-radius: 50rpx;
  952. }
  953. .btn {
  954. width: 100%;
  955. height: 88rpx;
  956. margin: 30rpx 0rpx;
  957. border-radius: 40rpx;
  958. .btn-boxs {
  959. width: 49% !important;
  960. }
  961. .btn-box {
  962. width: 686rpx;
  963. height: 100%;
  964. }
  965. }
  966. </style>