ready_interview.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .container {
  45. display: flex;
  46. flex-direction: column;
  47. width: 100%;
  48. max-width: 1000px;
  49. margin: 10px auto;
  50. background: #ffffff;
  51. border-radius: 10px;
  52. padding: 0 85px;
  53. @media(max-width: 768px) {
  54. padding: 0 15px;
  55. }
  56. box-sizing: border-box;
  57. .status {
  58. margin-top: 43px;
  59. margin-bottom: 11px;
  60. font-size: 18px;
  61. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  62. font-weight: 400;
  63. text-align: center;
  64. color: #222222;
  65. line-height: 25px;
  66. }
  67. .time {
  68. font-size: 18px;
  69. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  70. font-weight: 400;
  71. text-align: center;
  72. color: #308eff;
  73. line-height: 25px;
  74. }
  75. .qr-code {
  76. width: 286px;
  77. height: 286px;
  78. margin-top: 6px;
  79. margin-bottom: -9px;
  80. }
  81. .label {
  82. margin-bottom: 43px;
  83. font-size: 14px;
  84. font-family: PingFangSC, PingFangSC-Regular, sans-serif;
  85. font-weight: 400;
  86. text-align: right;
  87. color: #666666;
  88. line-height: 14px;
  89. }
  90. }
  91. </style>