|
@@ -1,11 +1,26 @@
|
|
|
<template>
|
|
|
规划管理首页
|
|
|
+
|
|
|
+ <el-button @click="jumpTo('/xjc-integratedmachine/plan/develop_career_plan1')">制定生涯规划书</el-button>
|
|
|
+ <el-button>目标管理</el-button>
|
|
|
+ <el-button>时间管理</el-button>
|
|
|
+ <el-button>自控测评力</el-button>
|
|
|
+ <el-button>生涯成熟度复测</el-button>
|
|
|
+
|
|
|
+
|
|
|
</template>
|
|
|
|
|
|
-<script>
|
|
|
- export default {
|
|
|
- name: "index"
|
|
|
+<script setup>
|
|
|
+ const router = useRouter()
|
|
|
+ function jumpTo(path) {
|
|
|
+ router.push({
|
|
|
+ path: path,
|
|
|
+ })
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|