works.vue 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <section class="cert-index">
  3. <h1 style="display:flex;justify-content:space-between;align-items: center">
  4. 工作经历认证
  5. <a style="font-size: 14px" href="/sign/new">去编辑简历</a>
  6. </h1>
  7. <div class="hr"></div>
  8. <experience_rz></experience_rz>
  9. </section>
  10. </template>
  11. <script>
  12. import experience_rz from "@/components/sign/experience_rz";
  13. export default {
  14. data() {
  15. return {
  16. title: "工作经历认证- 程序员客栈",
  17. };
  18. },
  19. components: {
  20. experience_rz,
  21. },
  22. mounted() {
  23. this.needLogin();
  24. },
  25. methods: {
  26. }
  27. };
  28. </script>
  29. <style scoped>
  30. @import "@/assets/css/h1_line.css";
  31. .cert-index {
  32. width: 100%;
  33. max-width: 1000px;
  34. min-height: 591px;
  35. background: white;
  36. border-radius: 4px;
  37. margin: 20px 0 0;
  38. padding: 20px;
  39. overflow-x: hidden;
  40. }
  41. .hr{
  42. width: 100%;
  43. }
  44. @media screen and (max-width: 960px) {
  45. .cert-index {
  46. padding: 20px;
  47. }
  48. }
  49. </style>