start_interview.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <div class="container">
  3. <skillCertHeader title="技术等级认证"></skillCertHeader>
  4. <flow :dataList="flowList"></flow>
  5. <img class="icon" src="@/assets/img/skill_cert/icon_coffee.png" alt=""/>
  6. <p class="status">已对接面试官,注意查看通知</p>
  7. <p class="tips">如已面试,面试结果将在1-3个工作日通知给您</p>
  8. </div>
  9. </template>
  10. <script>
  11. import flow from "@/components/flow/flow";
  12. import skillCertHeader from "@/components/skill_cert_header/skill_cert_header";
  13. export default {
  14. name: "start_interview",
  15. components: {
  16. flow, skillCertHeader
  17. },
  18. data() {
  19. return {
  20. flowList: [
  21. {
  22. active: true,
  23. label: '基础信息'
  24. }, {
  25. active: true,
  26. label: '完善简历'
  27. }, {
  28. active: true,
  29. label: '对接面试官'
  30. }, {
  31. active: true,
  32. label: '开始面试'
  33. }, {
  34. active: false,
  35. label: '结束认证'
  36. },
  37. ],
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .container {
  44. display: flex;
  45. flex-direction: column;
  46. width: 100%;
  47. max-width: 1000px;
  48. margin: 10px auto;
  49. background: #ffffff;
  50. border-radius: 10px;
  51. padding: 0 85px;
  52. @media(max-width: 768px) {
  53. padding: 0 15px;
  54. }
  55. box-sizing: border-box;
  56. .icon {
  57. width: 86px;
  58. height: 78px;
  59. margin-top: 54px;
  60. }
  61. .status{
  62. margin-top: 36px;
  63. margin-bottom: 7px;
  64. font-size: 18px;
  65. font-family: PingFangSC, PingFangSC-Semibold,sans-serif;
  66. font-weight: 600;
  67. text-align: right;
  68. color: #222222;
  69. line-height: 25px;
  70. }
  71. .tips{
  72. font-size: 14px;
  73. font-family: PingFangSC, PingFangSC-Regular,sans-serif;
  74. font-weight: 400;
  75. text-align: left;
  76. color: #999999;
  77. line-height: 20px;
  78. }
  79. }
  80. </style>