| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <section class="cert-index">
- <h1 style="display:flex;justify-content:space-between;align-items: center">
- 工作经历认证
- <a style="font-size: 14px" href="/sign/new">去编辑简历</a>
- </h1>
- <div class="hr"></div>
- <experience_rz></experience_rz>
- </section>
- </template>
- <script>
- import experience_rz from "@/components/sign/experience_rz";
- export default {
- data() {
- return {
- title: "工作经历认证- 程序员客栈",
- };
- },
- components: {
- experience_rz,
- },
- mounted() {
- this.needLogin();
- },
- methods: {
- }
- };
- </script>
- <style scoped>
- @import "@/assets/css/h1_line.css";
- .cert-index {
- width: 100%;
- max-width: 1000px;
- min-height: 591px;
- background: white;
- border-radius: 4px;
- margin: 20px 0 0;
- padding: 20px;
- overflow-x: hidden;
- }
- .hr{
- width: 100%;
- }
- @media screen and (max-width: 960px) {
- .cert-index {
- padding: 20px;
- }
- }
- </style>
|