pay.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101
  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 == 3">
  256. <view class="btn-box bgBox flex justify-center align-center"
  257. @click="deletePosition(info.postPushId)"
  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 == 1 || info.status == 6">
  263. <view class="btn-box bgBox flex justify-center align-center"
  264. @click="updataServeType(info.postPushId, 'update')"
  265. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  266. 编辑
  267. </view>
  268. </view>
  269. <view class="btn flex justify-center" v-if="info.status == 2">
  270. <view class="btn-box bgBox flex justify-center align-center" @click="closeOpenJob('close')">
  271. 关闭岗位
  272. </view>
  273. <!-- <view class="btn-box flex justify-between">
  274. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  275. @click="updataServeType(info.postPushId, 'update')"
  276. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  277. 编辑
  278. </view>
  279. </view> -->
  280. </view>
  281. <view v-if="info.status == 5" style="margin: 0 20rpx;">
  282. <view class="btn flex justify-center" style="gap: 20rpx;">
  283. <view class="bgBox btn-boxs flex justify-center align-center" @click="closeOpenJob('open')">
  284. 开启岗位
  285. </view>
  286. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  287. @click="updataServeType(info.postPushId, 'update')"
  288. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  289. 编辑
  290. </view>
  291. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  292. @click="deletePosition(info.postPushId)"
  293. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  294. 删除
  295. </view>
  296. </view>
  297. </view>
  298. </view>
  299. </view>
  300. </template>
  301. <script>
  302. export default {
  303. data() {
  304. return {
  305. statusBarHeight: 0, // 状态栏高度
  306. postPushId: '',
  307. info: {}, //岗位详情
  308. postData: {
  309. chatCount: 0,
  310. collectCount: 0,
  311. viewCount: 0,
  312. },//岗位招聘数据
  313. covers: [{
  314. id: 1,
  315. latitude: '',
  316. longitude: '',
  317. width: 20,
  318. height: 20,
  319. iconPath: '../../static/images/mapMarker.png',
  320. callout: {
  321. content: '',
  322. color: '#000', //文字颜色
  323. fontSize: 10, //文本大小
  324. padding: 10, //附近留白
  325. borderRadius: 24, //边框圆角
  326. bgColor: '#FFFFFF', //背景颜色
  327. display: 'ALWAYS', //常显
  328. }
  329. }],
  330. };
  331. },
  332. onLoad(option) {
  333. // 获取状态栏高度
  334. let systemInfo = uni.getSystemInfoSync();
  335. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  336. this.postPushId = option.postPushId;
  337. // 使用 this.$nextTick
  338. this.$nextTick(() => {
  339. this.getInfo();
  340. });
  341. this.getPostData();
  342. },
  343. methods: {
  344. //返回上一页
  345. goBack() {
  346. // 检查页面栈,如果没有可返回的页面,则跳转到职位管理
  347. const pages = getCurrentPages()
  348. if (pages.length > 1) {
  349. uni.navigateBack()
  350. } else {
  351. // 如果没有可返回的页面,跳转到职位管理页面
  352. uni.navigateTo({
  353. url: '/pages/jobManagement/jobManagement'
  354. })
  355. }
  356. },
  357. //跳转企业详情
  358. goInfo(companyId) {
  359. uni.navigateTo({
  360. url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + companyId
  361. })
  362. },
  363. //修改岗位
  364. updataServeType(postPushId, type) {
  365. let companyStatus = uni.getStorageSync('companyStatus')
  366. if (companyStatus == 1) {
  367. uni.showToast({
  368. title: '企业认证审核中,请审核通过后操作!',
  369. icon: 'none'
  370. })
  371. return
  372. }
  373. if (companyStatus == 3) {
  374. uni.showToast({
  375. title: '企业认证审核未通过,请重新认证!',
  376. icon: 'none'
  377. })
  378. return
  379. }
  380. uni.navigateTo({
  381. url: '/pages/my/jobPosting?postPushId=' + postPushId + '&type=' + type
  382. })
  383. },
  384. //取消招聘
  385. cancelProject() {
  386. let that = this
  387. uni.showModal({
  388. content: '确认取消该招聘?',
  389. title: '提示',
  390. confirmColor: '#016BF6',
  391. success(iet) {
  392. if (iet.confirm) {
  393. let data = {
  394. postPushId: that.postPushId
  395. }
  396. that.$Request.postT('/app/postPush/cancelPostPush', data).then(res => {
  397. if (res.code == 0) {
  398. uni.showToast({
  399. title: '取消成功',
  400. duration: 1500,
  401. complete() {
  402. that.getInfo()
  403. }
  404. })
  405. } else {
  406. uni.showToast({
  407. title: res.msg,
  408. icon: 'none'
  409. })
  410. }
  411. uni.hideLoading()
  412. })
  413. }
  414. }
  415. })
  416. },
  417. //关闭/开启岗位
  418. closeOpenJob(type) {
  419. let that = this
  420. uni.showModal({
  421. title: '提示',
  422. content: type == 'close' ? '关闭岗位后,该岗位不会再推荐给用户,是否关闭?' : '开启岗位后,该岗位会重新推荐给用户,是否开启?',
  423. complete(ret) {
  424. if (ret.confirm) {
  425. that.$Request.getT('/app/postPush/closeOrOpen', {
  426. postPushId: that.postPushId
  427. }).then(res => {
  428. if (res.code == 0) {
  429. uni.showToast({
  430. title: type == 'close' ? '已关闭' : '已开启',
  431. duration: 1500,
  432. complete() {
  433. that.getInfo()
  434. }
  435. })
  436. } else {
  437. uni.showToast({
  438. title: res.msg,
  439. icon: 'none'
  440. })
  441. }
  442. })
  443. }
  444. }
  445. })
  446. },
  447. //拉起地图导航
  448. gotoMap() {
  449. let that = this
  450. uni.openLocation({
  451. latitude: that.info.lat,
  452. longitude: that.info.lng,
  453. address: that.info.province + '' + that.info.city + '' + that.info.county + '' + that.info
  454. .address,
  455. name: that.info.address,
  456. // complete(ret) {
  457. // }
  458. })
  459. },
  460. /**
  461. * 获取岗位详情
  462. */
  463. getInfo() {
  464. this.$Request.getT("/app/postPush/selectPostPushDetails", {
  465. // userId:uni.getStorageSync('userId'),
  466. postPushId: this.postPushId
  467. }).then(res => {
  468. if (res.code == 0) {
  469. this.info = res.data;
  470. console.log(this.info, '我是地图')
  471. this.covers = [{
  472. id: 1,
  473. latitude: this.info.lat,
  474. longitude: this.info.lng,
  475. width: 20,
  476. height: 20,
  477. iconPath: '../../static/images/mapMarker.png',
  478. callout: {
  479. // content: this.info.city + '' + this.info.county + '' + this.info.address,
  480. content: this.info.address,
  481. color: '#000', //文字颜色
  482. fontSize: 10, //文本大小
  483. padding: 10, //附近留白
  484. borderRadius: 24, //边框圆角
  485. bgColor: '#FFFFFF', //背景颜色
  486. display: 'ALWAYS', //常显
  487. }
  488. }]
  489. }
  490. })
  491. },
  492. // 获取岗位招聘数据
  493. getPostData() {
  494. this.$Request.get('/app/postPush/postPushData', {
  495. postPushId: this.postPushId
  496. }).then(res => {
  497. if (res.code == 0) {
  498. this.postData = {
  499. ...this.postData, ...res.data
  500. }
  501. } else {
  502. this.$queue.showToast(res.msg);
  503. }
  504. });
  505. },
  506. deletePosition(id){
  507. let that = this;
  508. uni.showModal({
  509. content: '确认删除该岗位吗?',
  510. title: '提示',
  511. confirmColor: '#016BF6',
  512. success(iet) {
  513. if (iet.confirm) {
  514. that.$Request.post('/app/postPush/deletePostPush', {postPushId: id}).then(res => {
  515. if (res.code == 0) {
  516. uni.showToast({
  517. title: '删除成功',
  518. duration: 1500
  519. })
  520. setTimeout(()=>{
  521. uni.switchTab({
  522. url: '/pages/my/index'
  523. })
  524. },500)
  525. } else {
  526. uni.showToast({
  527. title: res.msg,
  528. icon: 'none'
  529. })
  530. }
  531. })
  532. }
  533. }
  534. })
  535. }
  536. }
  537. }
  538. </script>
  539. <style lang="scss">
  540. page {
  541. // background-color: #F2F2F7;
  542. // padding-top: 160rpx;
  543. }
  544. .warning-box {
  545. background: rgba(255, 251, 232, 1);
  546. color: rgba(237, 106, 12, 1);
  547. font-family: Microsoft YaHei UI;
  548. font-size: 22rpx;
  549. font-weight: 400;
  550. letter-spacing: 0px;
  551. padding: 20rpx 32rpx;
  552. box-sizing: border-box;
  553. text-align: left;
  554. margin-top: 20rpx;
  555. display: flex;
  556. align-items: center;
  557. .warning-txt {
  558. flex: 1;
  559. overflow: hidden;
  560. white-space: nowrap;
  561. text-overflow: ellipsis;
  562. }
  563. image {
  564. width: 32rpx;
  565. height: 32rpx;
  566. flex-shrink: 0;
  567. margin-right: 20rpx;
  568. }
  569. }
  570. .navbar-content {
  571. width: 100%;
  572. padding: 24rpx 32rpx 20rpx 32rpx;
  573. box-sizing: border-box;
  574. color: #000;
  575. font-family: DM Sans;
  576. font-size: 30rpx;
  577. font-weight: 700;
  578. line-height: 26px;
  579. display: flex;
  580. // justify-content: center;
  581. align-items: center;
  582. position: relative;
  583. z-index: 9999;
  584. .nav-left,
  585. .nav-right {
  586. width: 32.61px;
  587. height: 26px;
  588. }
  589. .nav-title {
  590. flex: 1;
  591. text-align: center;
  592. }
  593. }
  594. .status-section {
  595. display: flex;
  596. justify-content: center;
  597. align-items: center;
  598. margin: 40rpx 0rpx 40rpx 0rpx;
  599. .status-icon {
  600. margin-right: 20rpx;
  601. display: flex;
  602. align-items: center;
  603. .status-icon-img {
  604. width: 48rpx;
  605. height: 48rpx;
  606. }
  607. }
  608. .status-title {
  609. color: rgba(29, 33, 41, 1);
  610. font-family: DM Sans;
  611. font-size: 36rpx;
  612. font-weight: 500;
  613. line-height: 48rpx;
  614. letter-spacing: 0%;
  615. text-align: left;
  616. display: flex;
  617. align-items: center;
  618. }
  619. }
  620. .job-info-card {
  621. background: #ffffff;
  622. border-radius: 12rpx;
  623. margin: 0 40rpx 40rpx 40rpx;
  624. padding: 32rpx;
  625. border: 0.5px solid rgba(227, 231, 236, 1);
  626. .job-header {
  627. display: flex;
  628. justify-content: space-between;
  629. align-items: flex-start;
  630. margin-bottom: 16rpx;
  631. .job-title-section {
  632. flex: 1;
  633. .job-title {
  634. color: rgba(153, 153, 153, 1);
  635. font-family: DM Sans;
  636. font-size: 28rpx;
  637. font-weight: 400;
  638. line-height: 44rpx;
  639. letter-spacing: 0.5%;
  640. text-align: left;
  641. }
  642. }
  643. .job-status {
  644. .status-text {
  645. color: rgba(153, 153, 153, 1);
  646. font-family: DM Sans;
  647. font-size: 18rpx;
  648. font-weight: 400;
  649. line-height: 20rpx;
  650. letter-spacing: -0.5px;
  651. text-align: right;
  652. }
  653. }
  654. }
  655. .job-info {
  656. .job-details {
  657. color: rgba(153, 153, 153, 1);
  658. font-family: DM Sans;
  659. font-size: 28rpx;
  660. font-weight: 400;
  661. line-height: 36rpx;
  662. letter-spacing: 0.5%;
  663. text-align: left;
  664. }
  665. }
  666. }
  667. .failure-reason-section {
  668. margin: 0 40rpx;
  669. .section-title {
  670. color: rgba(31, 44, 55, 1);
  671. font-family: DM Sans;
  672. font-size: 28rpx;
  673. font-weight: 500;
  674. line-height: 44rpx;
  675. letter-spacing: 0.5%;
  676. text-align: left;
  677. margin-bottom: 20rpx;
  678. }
  679. .reason-list {
  680. .reason-item {
  681. margin-bottom: 16rpx;
  682. .reason-text {
  683. color: rgba(153, 153, 153, 1);
  684. font-family: DM Sans;
  685. font-size: 24rpx;
  686. font-weight: 500;
  687. line-height: 48rpx;
  688. letter-spacing: 0.5%;
  689. text-align: left;
  690. }
  691. }
  692. }
  693. }
  694. .remarks {
  695. width: 100%;
  696. margin-top: 30rpx;
  697. .remarks-box {
  698. width: 686rpx;
  699. border-radius: 24rpx;
  700. background-color: #ffffff;
  701. padding: 0rpx 20rpx;
  702. color: red;
  703. }
  704. }
  705. .job {
  706. width: 100%;
  707. margin-top: 30rpx;
  708. .job-info {
  709. width: 686rpx;
  710. height: 100%;
  711. border-radius: 24rpx;
  712. background-color: #ffffff;
  713. .job-info-c {
  714. // width: 626rpx;
  715. width: 100%;
  716. height: 100%;
  717. padding: 30rpx 20rpx;
  718. }
  719. .job-info-c-header {
  720. display: flex;
  721. justify-content: space-between;
  722. align-items: center;
  723. }
  724. .job-info-c-address {
  725. color: rgba(156, 164, 171, 1);
  726. font-family: DM Sans;
  727. font-size: 24rpx;
  728. font-weight: 400;
  729. line-height: 26rpx;
  730. letter-spacing: 0.5%;
  731. text-align: left;
  732. padding: 20rpx 0;
  733. }
  734. .job-info-c-title {
  735. color: rgba(58, 57, 67, 1);
  736. font-family: DM Sans;
  737. font-size: 48rpx;
  738. font-weight: 700;
  739. line-height: 60rpx;
  740. letter-spacing: 0px;
  741. text-align: left;
  742. }
  743. .job-info-c-label {
  744. // margin-top: 30rpx;
  745. .job-info-c-label-item {
  746. color: rgba(153, 153, 153, 1);
  747. font-family: DM Sans;
  748. font-size: 24rpx;
  749. font-weight: 400;
  750. line-height: 20rpx;
  751. letter-spacing: 0.5%;
  752. padding: 12rpx;
  753. text-align: left;
  754. margin-right: 30rpx;
  755. border-radius: 12rpx;
  756. background: rgba(198, 198, 198, 0.1);
  757. }
  758. }
  759. .job-info-c-price {
  760. color: rgba(1, 107, 246, 1);
  761. font-family: DM Sans;
  762. font-size: 32rpx;
  763. font-weight: 700;
  764. line-height: 40rpx;
  765. letter-spacing: 0.5%;
  766. text-align: right;
  767. }
  768. }
  769. }
  770. .jobRemarks {
  771. width: 100%;
  772. padding: 0 20rpx;
  773. .jobRemarks-box {
  774. width: 100%;
  775. height: 100%;
  776. background-color: #ffffff;
  777. border-radius: 24rpx;
  778. .jobRemarks-box-c {
  779. width: 100%;
  780. height: 100%;
  781. padding: 30rpx 20rpx;
  782. }
  783. .jobRemarks-box-c-title {
  784. color: rgba(1, 107, 246, 1);
  785. font-size: 32rpx;
  786. padding: 8px 12px;
  787. border-radius: 36px;
  788. font-weight: 500;
  789. background: rgba(246, 246, 246, 1);
  790. .title-icon {
  791. width: 32rpx;
  792. height: 32rpx;
  793. }
  794. }
  795. .job-description {
  796. margin-top: 20rpx;
  797. margin-bottom: 20rpx;
  798. .description-item {
  799. color: rgba(97, 110, 124, 1);
  800. font-family: DM Sans;
  801. font-size: 26rpx;
  802. font-weight: 400;
  803. line-height: 16px;
  804. letter-spacing: 0px;
  805. text-align: left;
  806. margin-bottom: 8rpx;
  807. }
  808. }
  809. .jobRemarks-box-c-label {
  810. width: 100%;
  811. margin-top: 25rpx;
  812. .jobRemarks-box-c-label-item {
  813. color: rgba(1, 107, 246, 1);
  814. font-size: 20rpx;
  815. padding: 10rpx 15rpx;
  816. background-color: #F6F6F6;
  817. border-radius: 10rpx;
  818. margin-right: 20rpx;
  819. margin-bottom: 10rpx;
  820. background: rgba(252, 233, 220, 1);
  821. }
  822. }
  823. .jobRemarks-box-c-con {
  824. width: 100%;
  825. margin-top: 25rpx;
  826. .jobRemarks-box-c-con-item {
  827. margin-bottom: 10rpx;
  828. color: #141414;
  829. font-size: 28rpx;
  830. font-weight: 500;
  831. white-space: pre-wrap;
  832. }
  833. }
  834. .jobRemarks-box-c-line {
  835. width: 100%;
  836. border: 1rpx solid #E6E6E6;
  837. margin-top: 25rpx;
  838. }
  839. }
  840. }
  841. .enterprise {
  842. width: 100%;
  843. margin-top: 25rpx;
  844. padding: 0 20rpx;
  845. .company-intro-card {
  846. width: 100%;
  847. background-color: #ffffff;
  848. border-radius: 24rpx;
  849. padding: 12rpx 24rpx;
  850. margin-bottom: 20rpx;
  851. display: flex;
  852. align-items: center;
  853. border: 0.5px solid rgba(227, 231, 236, 1);
  854. .company-avatar {
  855. flex-shrink: 0;
  856. margin-right: 24rpx;
  857. }
  858. .company-info {
  859. flex: 1;
  860. .company-name {
  861. color: rgba(51, 51, 51, 1);
  862. font-size: 26rpx;
  863. font-weight: 600;
  864. line-height: 1.4;
  865. margin-bottom: 8rpx;
  866. }
  867. .company-details {
  868. color: rgba(153, 153, 153, 1);
  869. font-size: 24rpx;
  870. font-weight: 400;
  871. line-height: 1.4;
  872. }
  873. }
  874. .company-arrow {
  875. flex-shrink: 0;
  876. margin-left: 48rpx;
  877. }
  878. }
  879. .enterprise-box {
  880. width: 100%;
  881. background-color: #ffffff;
  882. // height: 100%;
  883. padding-bottom: 25rpx;
  884. border-radius: 24rpx;
  885. .enterprise-box-c {
  886. width: 100%;
  887. // height: 100%;
  888. }
  889. .enterprise-box-c-bto {
  890. width: 100%;
  891. padding-top: 15rpx;
  892. padding-bottom: 15rpx;
  893. background-color: #EDFFFB;
  894. border-radius: 30rpx;
  895. margin-top: 20rpx;
  896. color: #016BF6;
  897. font-size: 24rpx;
  898. font-weight: 500;
  899. }
  900. }
  901. }
  902. .postNum {
  903. padding: 12rpx;
  904. }
  905. .postNum-ul {
  906. margin: 22px auto;
  907. font-family: DM Sans;
  908. }
  909. .postNum-li-num {
  910. font-size: 32rpx;
  911. font-weight: 600;
  912. line-height: 48rpx;
  913. text-align: center;
  914. }
  915. .postNum-li-txt {
  916. font-size: 26rpx;
  917. font-weight: 600;
  918. line-height: 48rpx;
  919. text-align: center;
  920. }
  921. .urgent-banner {
  922. width: 686rpx;
  923. height: 150rpx;
  924. background: linear-gradient(180deg, rgba(255, 181, 60, 1) 100%, rgba(251, 231, 185, 1) 50%);
  925. border-radius: 16rpx;
  926. display: flex;
  927. align-items: flex-start;
  928. justify-content: space-between;
  929. padding: 20rpx 30rpx;
  930. margin: 0 auto 20rpx auto;
  931. .urgent-left-section {
  932. flex: 1;
  933. display: flex;
  934. align-items: center;
  935. .urgent-star-icon-wrapper {
  936. width: 72rpx;
  937. height: 72rpx;
  938. border-radius: 50%;
  939. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  940. margin-right: 24rpx;
  941. flex-shrink: 0;
  942. }
  943. .urgent-text-content {
  944. flex: 1;
  945. .urgent-main-title {
  946. color: rgba(255, 255, 255, 1);
  947. font-family: DM Sans;
  948. font-size: 24rpx;
  949. font-weight: 500;
  950. line-height: 32rpx;
  951. letter-spacing: 0%;
  952. text-align: left;
  953. margin-bottom: 8rpx;
  954. }
  955. .urgent-sub-description {
  956. color: rgba(255, 255, 255, 1);
  957. font-family: DM Sans;
  958. font-size: 20rpx;
  959. font-weight: 400;
  960. line-height: 26rpx;
  961. letter-spacing: 0%;
  962. text-align: left;
  963. margin-bottom: 6rpx;
  964. }
  965. .urgent-benefits {
  966. color: rgba(255, 255, 255, 1);
  967. font-family: DM Sans;
  968. font-size: 20rpx;
  969. font-weight: 400;
  970. line-height: 26rpx;
  971. letter-spacing: 0%;
  972. text-align: left;
  973. }
  974. }
  975. }
  976. .urgent-upgrade-button {
  977. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  978. padding: 8rpx;
  979. border-radius: 8rpx;
  980. color: rgba(255, 255, 255, 1);
  981. font-family: DM Sans;
  982. font-size: 16rpx;
  983. font-weight: 400;
  984. line-height: 20rpx;
  985. letter-spacing: -0.5px;
  986. text-align: right;
  987. margin-left: 20rpx;
  988. }
  989. }
  990. .bgBox {
  991. color: #ffffff;
  992. background-color: rgba(1, 107, 246, 1);
  993. font-weight: bold;
  994. border-radius: 50rpx;
  995. }
  996. .btn {
  997. width: 100%;
  998. height: 88rpx;
  999. margin: 30rpx 0rpx;
  1000. border-radius: 40rpx;
  1001. .btn-boxs {
  1002. width: 49% !important;
  1003. }
  1004. .btn-box {
  1005. width: 686rpx;
  1006. height: 100%;
  1007. }
  1008. }
  1009. </style>