浏览代码

Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev

lifanagju_citu 1 年之前
父节点
当前提交
316f042295
共有 2 个文件被更改,包括 27 次插入0 次删除
  1. 22 0
      src/views/resume/components/jobIntention.vue
  2. 5 0
      src/views/resume/dynamic/right.vue

+ 22 - 0
src/views/resume/components/jobIntention.vue

@@ -0,0 +1,22 @@
+<template>
+  <div class="resume-box">
+    <div class="resume-header mb-3">
+      <div class="resume-title">求职意向</div>
+      <v-btn v-if="!isEdit" variant="text" color="primary" prepend-icon="mdi-square-edit-outline" @click="isEdit = true">编辑</v-btn>
+    </div>
+    <div v-if="isEdit"></div>
+    <div v-else>
+      <span></span>
+    </div>
+  </div>
+</template>
+
+<script setup name="jobIntention">
+import { ref } from 'vue'
+
+const isEdit = ref(false)
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 5 - 0
src/views/resume/dynamic/right.vue

@@ -2,6 +2,7 @@
   <div>
     <basicInfo class="mb-3"></basicInfo>
     <selfEvaluation></selfEvaluation>
+    <jobIntention class="mt"></jobIntention>
   </div>
 </template>
 
@@ -9,7 +10,11 @@
 import basicInfo from '../components/right/basicInfo.vue'
 defineOptions({ name: 'resume-right'})
 import selfEvaluation from '../components/selfEvaluation.vue'
+import jobIntention from '../components/jobIntention.vue'
 </script>
 
 <style scoped lang="scss">
+.mt {
+  margin-top: 12px;
+}
 </style>