start_interview.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. async mounted() {
  41. this.cnzz("技术认证","第四步","");
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .container {
  47. display: flex;
  48. flex-direction: column;
  49. width: 100%;
  50. max-width: 1000px;
  51. margin: 10px auto;
  52. background: #ffffff;
  53. border-radius: 10px;
  54. padding: 0 85px;
  55. @media(max-width: 768px) {
  56. padding: 0 15px;
  57. }
  58. box-sizing: border-box;
  59. .icon {
  60. width: 86px;
  61. height: 78px;
  62. margin-top: 54px;
  63. }
  64. .status{
  65. margin-top: 36px;
  66. margin-bottom: 7px;
  67. font-size: 18px;
  68. font-family: PingFangSC, PingFangSC-Semibold,sans-serif;
  69. font-weight: 600;
  70. text-align: right;
  71. color: #222222;
  72. line-height: 25px;
  73. }
  74. .tips{
  75. font-size: 14px;
  76. font-family: PingFangSC, PingFangSC-Regular,sans-serif;
  77. font-weight: 400;
  78. text-align: left;
  79. color: #999999;
  80. line-height: 20px;
  81. }
  82. }
  83. </style>