|
@@ -42,13 +42,13 @@
|
|
</template>
|
|
</template>
|
|
</list-tab>
|
|
</list-tab>
|
|
<el-dialog title="简历详情" center :visible.sync="resumeDialog" :fullscreen="true">
|
|
<el-dialog title="简历详情" center :visible.sync="resumeDialog" :fullscreen="true">
|
|
- <resumes :info="info"></resumes>
|
|
|
|
|
|
+ <resumeJob :info="info"></resumeJob>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import resumes from '@publics/src/views/resume.vue';
|
|
|
|
|
|
+import resumeJob from '@publics/src/views/resumeJob.vue';
|
|
import list from './list.vue';
|
|
import list from './list.vue';
|
|
import listTab from '@/layout/list-tab.vue';
|
|
import listTab from '@/layout/list-tab.vue';
|
|
import { mapActions, mapState } from 'vuex';
|
|
import { mapActions, mapState } from 'vuex';
|
|
@@ -58,7 +58,7 @@ export default {
|
|
components: {
|
|
components: {
|
|
listTab,
|
|
listTab,
|
|
list,
|
|
list,
|
|
- resumes,
|
|
|
|
|
|
+ resumeJob,
|
|
},
|
|
},
|
|
data: () => ({
|
|
data: () => ({
|
|
testList: [{ label: 'test', value: 1 }, { label: 'name', value: 2 }, { label: 'lock', value: 3 }, { label: 'not', value: 4 }],
|
|
testList: [{ label: 'test', value: 1 }, { label: 'name', value: 2 }, { label: 'lock', value: 3 }, { label: 'not', value: 4 }],
|
|
@@ -136,4 +136,14 @@ export default {
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="less" scoped></style>
|
|
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
+/deep/.el-dialog__headerbtn {
|
|
|
|
+ top: 20px;
|
|
|
|
+ right: 20%;
|
|
|
|
+}
|
|
|
|
+/deep/.el-dialog__headerbtn .el-dialog__close {
|
|
|
|
+ color: #333;
|
|
|
|
+ font-size: 30px;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+}
|
|
|
|
+</style>
|