Ver Fonte

求职意向

Xiao_123 há 1 ano atrás
pai
commit
33bcb4f225

+ 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

@@ -1,13 +1,18 @@
 <template>
   <div>
     <selfEvaluation></selfEvaluation>
+    <jobIntention class="mt"></jobIntention>
   </div>
 </template>
 
 <script setup>
 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>