resume.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. <template>
  2. <view>
  3. <view class="resumepage">
  4. <view class="u-flex u-row-between">
  5. <view class="">
  6. <view class="u-flex">
  7. <text style="margin-right: 20rpx;font-size: 52rpx;">{{from.name}}</text>
  8. <u-icon @click="onchange" name="edit-pen-fill" color="#777" size="22"></u-icon>
  9. </view>
  10. <view class="top-font" style="margin-top: 20rpx;">
  11. <text style="margin-right: 12rpx;">{{from.birthday_text}}岁</text>|
  12. <text style="margin-left: 12rpx;margin-right: 12rpx;">{{from.experience}}年工作经验</text>|
  13. <text style="margin-left: 12rpx;margin-right: 12rpx;">{{from.education_name}}</text>|
  14. <text style="margin-left: 12rpx;">{{from.domicile_city.slice(0,-1)}}</text>
  15. </view>
  16. </view>
  17. <image style="width: 136rpx;height: 136rpx;border-radius:50%;" :src="from.avatar" mode=""></image>
  18. </view>
  19. <view class="" style="margin-top: 30rpx;">
  20. <view class="u-flex u-row-between">
  21. <text class="title">个人优势</text>
  22. <view class="title"><u-icon name="edit-pen-fill" color="#777" size="22"
  23. @click="toadvantage"></u-icon></view>
  24. </view>
  25. <view class="mar">
  26. <view type="text" placeholder="编辑优势亮点,展示我的独特态度" v-model="from.personal_advantage">
  27. {{from.personal_advantage||''}}
  28. </view>
  29. </view>
  30. </view>
  31. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  32. <view class="u-flex ">
  33. <text class="title">求职状态</text>
  34. </view>
  35. <view class="u-flex u-row-between" style="margin-top: 20rpx;" @click="show =true">
  36. <input :disabled="true" type="text" placeholder="请选择你的求职状态" v-model="from.job_status_name">
  37. <u-icon name="arrow-right" size="12" class="address"></u-icon>
  38. </view>
  39. </view>
  40. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  41. <view class="u-flex u-row-between">
  42. <text class="title">求职意向</text>
  43. <view class="" style="margin-top: 34rpx;">
  44. <u-icon @click="toapply(1)" name="plus-circle" size="20"></u-icon>
  45. </view>
  46. </view>
  47. <view class="" style="margin-top: 40rpx;margin-bottom: 20rpx;" v-for="(item,index) in job_intention1"
  48. :key="item.id" @click="toapply(2,item.id)">
  49. <!-- <image src="static/images/fufei.png" mode=""></image> -->
  50. <view class="u-flex u-row-between">
  51. <view class="">
  52. <text>{{item.category_job_name}}</text>
  53. <text style="margin-left: 28rpx;">{{item.salary || 0}}k</text>
  54. <text>·{{item.salary_month || 0}}薪</text>
  55. </view>
  56. <u-icon name="arrow-right" size="12"></u-icon>
  57. </view>
  58. <text
  59. style="margin-top: 20rpx;font-size: 28rpx;font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: #777777;">{{item.city}}·{{item.category_industry_name}}</text>
  60. </view>
  61. </view>
  62. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  63. <view class="u-flex u-row-between">
  64. <text class="title">工作经历</text>
  65. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="towork(1)"></u-icon>
  66. </view>
  67. </view>
  68. <view class="" v-for="(item,index) in job_experience1" :key="item.id" @click="towork(2,item.id)">
  69. <view class="u-flex u-row-between" style="margin-top:40rpx ;">
  70. <text>{{item.company_name||''}}</text>
  71. <view class="u-flex">
  72. <text class="time">{{item.start_time}}-{{item.end_time}}</text>
  73. <u-icon name="arrow-right" size="12"></u-icon>
  74. </view>
  75. </view>
  76. <view class="" style="margin-top: 20rpx;font-size: 28rpx;
  77. font-family: PingFangSC-Regular, PingFang SC;
  78. font-weight: 400;
  79. color: #333333;">
  80. <text>{{item.job_name}}|</text>
  81. <text>{{item.department||''}}</text>
  82. </view>
  83. <view class="concent">
  84. {{item.work_content||''}}
  85. </view>
  86. </view>
  87. </view>
  88. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  89. <view class="u-flex u-row-between">
  90. <text class="title">项目经历</text>
  91. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="toproject(1)"></u-icon>
  92. </view>
  93. </view>
  94. <view class="" style="margin-top: 40rpx;" v-for="(item,index) in project_experience1" :key="item.id"
  95. @click="toproject(2,item.id)">
  96. <view class="u-flex u-row-between">
  97. <text>{{item.company_name||''}}</text>
  98. <view class="u-flex">
  99. <text class="time">{{item.start_time}}-{{item.end_time||''}}</text>
  100. <u-icon name="arrow-right" size="12"></u-icon>
  101. </view>
  102. </view>
  103. <view class="mar">
  104. <text>{{item.role}}</text>
  105. </view>
  106. <view class="concent">
  107. {{item.description}}
  108. </view>
  109. </view>
  110. <view class=""></view>
  111. </view>
  112. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  113. <view class="u-flex u-row-between">
  114. <text class="title">教育经历</text>
  115. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="toteach(1)"></u-icon>
  116. </view>
  117. </view>
  118. <view class="" style="margin-top: 40rpx;" v-for="(item,index) in education_experience1" :key="index"
  119. @click="toteach(2,item.id)">
  120. <view class="u-flex u-row-between">
  121. <text>{{item.name}}</text>
  122. <view class="u-flex">
  123. <text class="time">{{item.start_time}}-{{item.end_time}}</text>
  124. <u-icon name="arrow-right" size="12"></u-icon>
  125. </view>
  126. </view>
  127. <view class="">
  128. <text>{{item.major}}</text>
  129. </view>
  130. </view>
  131. </view>
  132. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  133. <view class="u-flex u-row-between">
  134. <text class="title">语言能力</text>
  135. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="tolanguage(1)"></u-icon>
  136. </view>
  137. </view>
  138. <view class="mar" v-for="(item,index) in language1" @click="tolanguage(2,item.id)">
  139. <view class="u-flex u-row-between">
  140. <text>{{item.language_name}}</text>
  141. <view class="u-flex">
  142. <text>{{item.level_name}}</text>
  143. <u-icon name="arrow-right" size="12"></u-icon>
  144. </view>
  145. </view>
  146. </view>
  147. </view>
  148. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  149. <view class="u-flex u-row-between">
  150. <text class="title">专业技能与证书</text>
  151. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20"
  152. @click="tocertificate()"></u-icon></view>
  153. </view>
  154. <view class="mar u-flex">
  155. <!-- <view style="flex: 1;" class="item">{{certificate.professional_skill}}</view> -->
  156. <view class="texta item" v-for="(item,index) in professional_skill" :key="index">
  157. {{item}}
  158. </view>
  159. </view>
  160. <view style="margin-top: 32rpx;" class="u-flex u-row-between" v-for="(item,index) in certificate1"
  161. :key="index">
  162. <text>{{item.certificate}}</text>
  163. <text class="time">{{item.certificate_date}}</text>
  164. </view>
  165. </view>
  166. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;margin-bottom:118rpx ;">
  167. <view class="u-flex u-row-between">
  168. <text class="title">附加信息</text>
  169. <!-- <u-icon name="plus-circle" size="20"></u-icon> -->
  170. </view>
  171. <view class="mar">
  172. <input @confirm="touptate" v-model="from.additional_info" type="text" placeholder="请输入附加消息">
  173. </view>
  174. </view>
  175. <view class="" style="height: 60rpx;"></view>
  176. </view>
  177. <view class="back u-flex" style="margin-top: 118rpx;">
  178. <view class="left" @click="jianlishow = true">
  179. 简历导入
  180. </view>
  181. <view class="right" @click="preview">
  182. <text style="opacity: 1;color: #0C66C2;">预览</text>
  183. </view>
  184. <view class="safe-area-inset-bottom"></view>
  185. </view>
  186. <view class="safe-area-inset-bottom"></view>
  187. <!-- <u-picker :show="jobshow" :columns="joblist"></u-picker> -->
  188. <u-picker @cancel="show = false" :show="show" :columns="columns" keyName="name" @confirm="enter"></u-picker>
  189. <u-popup customStyle="padding:32rpx 32rpx 6rpx" :show="jianlishow" mode="bottom" @close="close" @open="open"
  190. :closeable="true">
  191. <view class="">
  192. <view class="u-flex u-row-center">
  193. <text class="one">已有简历直接导入</text>
  194. </view>
  195. <view class="u-flex u-row-center">
  196. <text class="two">智能解析、快捷导入,提升在线简历完整度</text>
  197. </view>
  198. <view class="" style="margin-top: 72rpx;">
  199. <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
  200. <view class="u-flex u-row-between" v-if="file_show==1" @click="preview1">
  201. <view class="u-flex">
  202. <image style="width: 80rpx;height: 80rpx;" src="/static/images/pdf.png" mode=""></image>
  203. <view class="">
  204. <text class="three">{{file1.title}}.pdf</text>
  205. <view class="fore">{{file1.updatetime}}上传</view>
  206. </view>
  207. </view>
  208. <view class="">
  209. <u-radio :name="item.name">
  210. </u-radio>
  211. </view>
  212. </view>
  213. <view class="updata u-flex u-row-center" @click="toupload">
  214. 上传新简历
  215. </view>
  216. <view @click="queren = true" class="enter u-flex u-row-center">
  217. 确定
  218. </view>
  219. </u-radio-group>
  220. </view>
  221. </view>
  222. </u-popup>
  223. <u-modal :closeOnClickOverlay='true' :showCancelButton='true' :show="queren" :title="title1" :content='content1'
  224. @confirm='daoru' @cancel='queren=false'></u-modal>
  225. </view>
  226. </template>
  227. <script setup>
  228. import {
  229. resumeDetail,
  230. get_job_status,
  231. update,
  232. ocr,
  233. upload,
  234. create
  235. } from "@/units/inquire.js"
  236. // import { log } from "console";
  237. export default {
  238. data() {
  239. return {
  240. title1: '提示',
  241. content1: '是否使用此简历',
  242. path: '',
  243. queren: false,
  244. file_show: 0,
  245. i: 0,
  246. jianlishow: false,
  247. jlid: '',
  248. show: false,
  249. columns: [
  250. []
  251. ],
  252. certificate1: [],
  253. professional_skill: [],
  254. from: {
  255. avatar: "",
  256. name: "",
  257. birthday_text: "",
  258. personal_advantage: "", //个人优势
  259. additional_info: "", //附加信息
  260. experience: "",
  261. job_status_id: "", //string 求职状态ID
  262. job_status_name: "", //求职状态名称
  263. education_name: '',
  264. domicile_city: ""
  265. },
  266. //求职意向
  267. job_intention: {
  268. job_date: "", //date 求职时间(求职意向
  269. province_id: "", //string 期望省份ID(求职意向
  270. city_id: "", //string 期望城市ID(求职意向
  271. province: "", //string 期望省份名称(求职意向
  272. city: "", //string 期望城市名称(求职意向
  273. salary_type: "", //string 薪资类型: year=年薪;month=月薪(求职意向
  274. salary: "", //string 薪水(求职意向
  275. salary_month: "", //string 一年多少薪(求职意向
  276. category_field_id: "", //string 领域ID(求职意向
  277. category_field_name: "", //string 领域名称(求职意向
  278. category_industry_first: "", //string 行业一级ID(求职意向
  279. category_industry_id: "", //string 行业ID(求职意向
  280. category_industry_first_name: "", //string 行业一级名称(求职意向
  281. category_industry_name: "", //string 行业名称(求职意向
  282. category_job_first: "", //string 职业分类一级ID(求职意向
  283. category_job_second: "", //string 职业分类二级ID(求职意向
  284. category_job_id: "", //string 职位分类ID(求职意向
  285. category_job_first_name: "", //string 职业分类一级名称(求职意向
  286. category_job_second_name: "", //string 职业分类二级名称(求职意向
  287. category_job_name: "", //string 职位分类名称(求职意向)
  288. is_pay: "",
  289. },
  290. //工作经历
  291. job_experience: {
  292. company_name: "", // string 公司名称(工作经历
  293. industry_id: "", //string 公司行业ID(工作经历
  294. department: "", //tring 所属部门(工作经历
  295. job_name: "", //ing 职位名称(工作经历
  296. underling_count: "", //unt string 下属数量(工作经历
  297. report_to: "", //ring 汇报对象(工作经历
  298. start_time: "", //ate 在职开始时间: 如 2019-01-01(工作经历
  299. end_time: "", //e 在职结束时间: 如 2019-01-01(工作经历
  300. level_reason: "", // string 离职原因(工作经历
  301. work_content: "", // string 工作内容(工作经历
  302. },
  303. //项目经历
  304. project_experience: {
  305. name: "", //string 项目名称(项目经历
  306. company_name: "", //string 公司名称(项目经历
  307. role: "", // string 项目角色(项目经历
  308. start_time: "", //tring 开始时间(项目经历
  309. end_time: "", //string 结束时间(项目经历
  310. description: "", // string 项目描述(项目经
  311. },
  312. //教育经历
  313. education_experience: {
  314. name: "", //string 学校名称(教育经历
  315. is_recruit: "", //string 是否统招: 1.是, 0.不是(教育经历
  316. education_id: "", //string 学历ID(教育经历
  317. education_name: "", //string 学历名称(教育经历
  318. major: "", //string 专业(教育经历
  319. start_time: "", //string 开始时间 如 2019-01-01(教育经历
  320. end_time: "", //string 结束时间 如 2019-01-01(教育经历
  321. },
  322. //语言能力
  323. language: {
  324. language_id: "", // tring 语言ID(语言能力
  325. level_id: "", // ng 水平ID(语言能力
  326. language_name: "", // string 语言名称(语言能力
  327. level_name: "", // ring 水平名称(语言能力
  328. },
  329. certificate: {
  330. certificate: "",
  331. certificate_date: ""
  332. },
  333. file1: {
  334. createtime: "",
  335. file: "",
  336. id: '',
  337. resume_id: '',
  338. title: "",
  339. updatetime: "",
  340. user_id: '',
  341. },
  342. //附件简历
  343. file: {
  344. file: "", //string 附件(附件简历
  345. title: "", //string 附件名称(附件简历
  346. },
  347. education_experience1: [], //教育经历
  348. job_experience1: [], //工作经历
  349. job_intention1: [], //求职意向
  350. project_experience1: [], //项目经历
  351. language1: [], //语言能力
  352. joblist: [],
  353. path1: ''
  354. }
  355. },
  356. onLoad(options) {
  357. this.get_job_status()
  358. this.i = options.i
  359. // this.resumeDetail()
  360. if (uni.getStorageSync('path1')) {
  361. this.path1 = uni.getStorageSync('path1')
  362. }
  363. },
  364. onShow() {
  365. this.resumeDetail()
  366. },
  367. methods: {
  368. preview1() {
  369. uni.openDocument({
  370. filePath: this.path1,
  371. showMenu: true,
  372. success: function(res) {
  373. console.log('打开文档成功');
  374. },
  375. fail: () => {
  376. console.log(this.path1);
  377. console.log('文件打开失败');
  378. }
  379. });
  380. },
  381. daoru() {
  382. this.queren = false
  383. if (this.file_show == 0) {
  384. this.$u.toast('请先上传简历')
  385. } else {
  386. uni.uploadFile({
  387. url: 'https://hire.hdlkeji.com/api/common/upload', //仅为示例,非真实的接口地址
  388. filePath: this.path1,
  389. name: 'file',
  390. formData: {
  391. 'user': 'test'
  392. },
  393. success: (res) => {
  394. console.log('uploadImage success, res is:', res)
  395. uni.hideLoading();
  396. uni.showToast({
  397. title: '上传成功',
  398. icon: 'success',
  399. duration: 1000
  400. })
  401. var obj = JSON.parse(res.data)
  402. this.path = obj.data.fullurl
  403. this.ocr()
  404. this.jianlishow = false
  405. },
  406. fail: (err) => {
  407. this.$u.toast('简历已过期,请重新上传')
  408. uni.hideLoading();
  409. uni.showModal({
  410. content: err.errMsg,
  411. showCancel: false
  412. });
  413. },
  414. });
  415. }
  416. },
  417. ocr() {
  418. uni.showLoading({
  419. mask: true,
  420. title: "解析中请稍后"
  421. })
  422. ocr({
  423. path: this.path
  424. }).then(res => {
  425. this.from.birthday_text = res.data.data.resume.birthday
  426. this.from.personal_advantage = res.data.data.resume.personal_advantage
  427. // this.from.personal_advantage = res.data.data.resume.personal_advantage
  428. this.from.education_name = res.data.data.resume.education_name
  429. this.from.experience = res.data.data.resume.experience
  430. this.from.name = res.data.data.resume.name
  431. this.education_experience1 = res.data.data.education_experience //教育经历
  432. this.job_experience1 = res.data.data.job_experience //工作经历
  433. this.project_experience1 = res.data.data.project_experience //项目经历
  434. uni.hideLoading();
  435. this.create()
  436. })
  437. },
  438. create() {
  439. create({
  440. ...this.from,
  441. education_experience: this.education_experience1,
  442. job_experience: this.job_experience1,
  443. project_experience: this.project_experience1,
  444. // job_intention: this.job_intention1
  445. }).then(res => {
  446. // this.resumeDetail()
  447. })
  448. },
  449. touptate() {
  450. update({
  451. additional_info: this.from.additional_info,
  452. source_type: "resume",
  453. source_id: this.jlid
  454. }).then(res => {
  455. this.resumeDetail()
  456. })
  457. },
  458. toupload() {
  459. uni.navigateTo({
  460. url: "/pagesD/upload",
  461. events: {
  462. up: res => {
  463. this.path1 = res
  464. this.resumeDetail()
  465. }
  466. }
  467. })
  468. },
  469. open() {
  470. // console.log('open');
  471. },
  472. close() {
  473. this.jianlishow = false
  474. // console.log('close');
  475. },
  476. preview() {
  477. uni.navigateTo({
  478. url: "/pagesD/preview"
  479. })
  480. },
  481. tocertificate() {
  482. uni.navigateTo({
  483. url: "/pagesD/certificate"
  484. })
  485. },
  486. tolanguage(type, id) {
  487. uni.navigateTo({
  488. url: "/pagesD/language?type=" + type + "&id=" + id
  489. })
  490. },
  491. toteach(type, id) {
  492. uni.navigateTo({
  493. url: "/pagesD/teach?type=" + type + "&id=" + id
  494. })
  495. },
  496. toproject(type, id) {
  497. console.log(id, 'lllllllllll');
  498. uni.navigateTo({
  499. url: "/pagesD/project?type=" + type + "&id=" + id
  500. })
  501. },
  502. enter(e) {
  503. this.from.job_status_name = e.value[0].name
  504. this.from.job_status_id = e.value[0].id
  505. this.show = false
  506. update({
  507. job_status_id: this.from.job_status_id,
  508. source_type: "resume",
  509. source_id: this.jlid
  510. }).then(res => {
  511. this.resumeDetail()
  512. })
  513. },
  514. get_job_status() {
  515. get_job_status().then(res => {
  516. this.columns[0] = res.data
  517. })
  518. },
  519. toadvantage() {
  520. uni.navigateTo({
  521. url: "/pagesD/advantage",
  522. events: {
  523. todcp: (res) => {
  524. this.from.personal_advantage = res
  525. update({
  526. personal_advantage: this.from.personal_advantage,
  527. source_type: "resume",
  528. source_id: this.jlid
  529. }).then(res => {
  530. this.resumeDetail()
  531. })
  532. }
  533. }
  534. })
  535. },
  536. // get_job_status() {
  537. // get_job_status().then(res => {
  538. // this.joblist = res.data
  539. // })
  540. // },
  541. toapply(type, id) {
  542. uni.navigateTo({
  543. url: "/pagesD/apply?type=" + type + "&id=" + id,
  544. events: {
  545. refresh: (res) => {
  546. // this.
  547. }
  548. }
  549. })
  550. },
  551. towork(type, id) {
  552. uni.navigateTo({
  553. url: "/pagesD/work?key=" + type + "&id=" + id,
  554. events: {
  555. work: (res) => {
  556. console.log(res);
  557. }
  558. }
  559. })
  560. },
  561. resumeDetail() {
  562. resumeDetail().then(res => {
  563. this.from.avatar = res.data.avatar
  564. this.from.additional_info = res.data.additional_info
  565. this.from.personal_advantage = res.data.personal_advantage
  566. this.jlid = res.data.id
  567. this.from.name = res.data.name
  568. this.from.birthday_text = res.data.birthday_text
  569. // this.job_intention.province = res.data.job_intention[0].province,
  570. this.from.experience = res.data.experience
  571. this.from.education_name = res.data.education_name
  572. this.from.domicile_city = res.data.domicile_city
  573. this.education_experience1 = res.data.education_experience
  574. this.job_experience1 = res.data.job_experience
  575. this.job_intention1 = res.data.job_intention
  576. this.language1 = res.data.language
  577. this.project_experience1 = res.data.project_experience
  578. this.from.job_status_name = res.data.job_status_name
  579. this.from.job_status_id = res.data.job_status_id
  580. this.certificate.certificate = res.data.certificate.certificate
  581. this.certificate.certificate_date = res.data.certificate.certificate_date
  582. this.certificate1 = res.data.certificate
  583. if (res.data.certificate.length != 0) {
  584. this.professional_skill = res.data.certificate[0].professional_skill.split("、")
  585. }
  586. if (res.data.file == null) {
  587. this.file_show = 0
  588. } else {
  589. this.file_show = 1
  590. this.file1 = res.data.file
  591. this.file.id = res.data.file.id
  592. this.file.title = res.data.file.title
  593. }
  594. })
  595. },
  596. onchange() {
  597. uni.navigateTo({
  598. url: "/pagesD/userinfo?id=" + this.jlid
  599. })
  600. }
  601. }
  602. }
  603. </script>
  604. <style lang="scss">
  605. .time {
  606. font-size: 24rpx;
  607. font-family: SFPro, SFPro;
  608. font-weight: 400;
  609. color: #888888;
  610. }
  611. .top-font {
  612. font-size: 26rpx;
  613. font-family: SFPro, SFPro;
  614. font-weight: 400;
  615. color: #555555;
  616. }
  617. .enter {
  618. background: #0C66C2;
  619. border-radius: 12rpx;
  620. margin-top: 68rpx;
  621. font-size: 32rpx;
  622. font-family: PingFangSC-Medium, PingFang SC;
  623. font-weight: 500;
  624. color: #FFFFFF;
  625. height: 84rpx;
  626. }
  627. .updata {
  628. height: 88rpx;
  629. font-size: 32rpx;
  630. font-family: PingFangSC-Medium, PingFang SC;
  631. font-weight: 500;
  632. color: #0C66C2;
  633. background: rgba(12, 102, 194, 0.1);
  634. border-radius: 8rpx;
  635. margin-top: 60rpx;
  636. }
  637. .texta {
  638. margin-right: 20rpx;
  639. }
  640. .three {
  641. font-size: 32rpx;
  642. font-family: PingFangSC-Regular, PingFang SC;
  643. font-weight: 400;
  644. color: #222222;
  645. }
  646. .fore {
  647. font-size: 24rpx;
  648. font-family: SFPro-Regular, SFPro;
  649. font-weight: 400;
  650. color: #777777;
  651. }
  652. .one {
  653. font-size: 36rpx;
  654. font-family: PingFangSC-Medium, PingFang SC;
  655. font-weight: 500;
  656. color: #222222;
  657. }
  658. .two {
  659. font-size: 26rpx;
  660. font-family: PingFangSC-Regular, PingFang SC;
  661. font-weight: 400;
  662. color: #555555;
  663. margin-top: 24rpx;
  664. }
  665. .concent {
  666. font-size: 28rpx;
  667. font-family: PingFangSC-Regular, PingFang SC;
  668. font-weight: 400;
  669. color: #555555;
  670. margin-top: 20rpx;
  671. }
  672. .mar {
  673. margin-top: 20rpx;
  674. }
  675. .title {
  676. font-size: 32rpx;
  677. font-family: PingFangSC-Medium, PingFang SC;
  678. font-weight: 500;
  679. color: #222222;
  680. margin-top: 34rpx;
  681. }
  682. .item {
  683. height: 48rpx;
  684. background: #F4F4F4;
  685. border-radius: 6rpx;
  686. padding: 5rpx 14rpx;
  687. box-sizing: border-box;
  688. line-height: 48rpx;
  689. }
  690. .resumepage {
  691. padding: 0 32rpx;
  692. background-color: #fff;
  693. }
  694. .back {
  695. padding: 16rpx 32rpx;
  696. background: #FFFFFF;
  697. height: 166rpx;
  698. box-sizing: border-box;
  699. position: fixed;
  700. bottom: 0;
  701. left: 0;
  702. .left {
  703. width: 356rpx;
  704. background: #0C66C2;
  705. border-radius: 12rpx;
  706. font-size: 32rpx;
  707. font-family: PingFangSC-Medium, PingFang SC;
  708. font-weight: 500;
  709. color: #FFFFFF;
  710. height: 88rpx;
  711. line-height: 88rpx;
  712. margin-right: 24rpx;
  713. text-align: center;
  714. }
  715. .right {
  716. width: 304rpx;
  717. // opacity: 0.1;
  718. // background: #0C66C2;
  719. border-radius: 12rpx;
  720. font-size: 32rpx;
  721. font-family: PingFangSC-Medium, PingFang SC;
  722. font-weight: 500;
  723. color: #0C66C2;
  724. height: 88rpx;
  725. line-height: 88rpx;
  726. text-align: center;
  727. background-color: rgba(12, 102, 194, 0.1);
  728. }
  729. }
  730. ::v-deep .u-popup__content {
  731. border: 1rpx solid #888 !important;
  732. }
  733. </style>