ready_interview.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <div class="container">
  3. <skillCertHeader title="技术等级认证"></skillCertHeader>
  4. <flow :dataList="flowList"></flow>
  5. <p class="status">工作人员正在审核, 审核通过后将为您对接面试官</p>
  6. <p class="time">时间: 1-3个工作日</p>
  7. <img class="qr-code" src="@/assets/img/skill_cert/icon_service_wechat.png" alt=""/>
  8. <p class="label">微信客服</p>
  9. </div>
  10. </template>
  11. <script>
  12. import flow from "@/components/flow/flow";
  13. import skillCertHeader from "@/components/skill_cert_header/skill_cert_header";
  14. export default {
  15. name: "ready_interview",
  16. components: {
  17. flow, skillCertHeader
  18. },
  19. data() {
  20. return {
  21. flowList: [
  22. {
  23. active: true,
  24. label: '基础信息'
  25. }, {
  26. active: true,
  27. label: '完善简历'
  28. }, {
  29. active: true,
  30. label: '对接面试官'
  31. }, {
  32. active: false,
  33. label: '开始面试'
  34. }, {
  35. active: false,
  36. label: '结束认证'
  37. },
  38. ],
  39. }
  40. },
  41. async mounted() {
  42. this.cnzz("技术认证","第三步","");
  43. }
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .container {
  48. display: flex;
  49. flex-direction: column;
  50. width: 100%;
  51. max-width: 1000px;
  52. margin: 10px auto;
  53. background: #ffffff;
  54. border-radius: 10px;
  55. padding: 0 85px;
  56. @media(max-width: 768px) {
  57. padding: 0 15px;
  58. }
  59. box-sizing: border-box;
  60. .status {
  61. margin-top: 43px;
  62. margin-bottom: 11px;
  63. font-size: 18px;
  64. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  65. font-weight: 400;
  66. text-align: center;
  67. color: #222222;
  68. line-height: 25px;
  69. }
  70. .time {
  71. font-size: 18px;
  72. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  73. font-weight: 400;
  74. text-align: center;
  75. color: #308eff;
  76. line-height: 25px;
  77. }
  78. .qr-code {
  79. width: 286px;
  80. height: 286px;
  81. margin-top: 6px;
  82. margin-bottom: -9px;
  83. }
  84. .label {
  85. margin-bottom: 43px;
  86. font-size: 14px;
  87. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  88. font-weight: 400;
  89. text-align: right;
  90. color: #666666;
  91. line-height: 14px;
  92. }
  93. }
  94. </style>