plan_steps.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <div class="plan_steps">
  3. <head-component :headinfo=headinfo></head-component>
  4. <div class="page-content">
  5. <div class="page-box">
  6. <p class="text-info">生涯规划步骤包括“生涯唤醒”“认识自我”“环境探索”“确立目标”“规划行动”“评估修正”。 简要介绍如下:</p>
  7. <p class="title">
  8. 1.生涯唤醒(觉悟)——推荐使用“生涯唤醒学习系统”
  9. </p>
  10. <p class="answer">
  11. 关注未来发展方向,适应当下生活学业,思考要走哪条路、成为什么样的人。</p>
  12. <p class="title"> 2.自我认知(知己)——推荐使用“自我认知学习系统”</p>
  13. <p class="answer"> 探索与认识自己的兴趣、能力、性格、价值观,评估学业状况、健康状况等,清晰定位“我是怎样一个人?我要做什么?”</p>
  14. <p class="title">3.环境探索(知彼)——推荐使用“环境探索学习系统”</p>
  15. <p class="answer">外在世界给我的机会是什么?包括对升学路径、大学专业、未来职业发展与工作内容、产业结构变迁等的探索和体验,对家庭资源的探索,对社会环境状况的了解,分析自身与环境的关系。</p>
  16. <p class="title">4.确立目标(决策)——推荐使用“生涯决策学习系统”</p>
  17. <p class="answer">通过对自我认知与环境探索的组合分析,发展决策能力,做出生涯决策,确立自己的人生目标、职业目标、学业目标,同时根据长远目标,分解出中期目标和短期目标。</p>
  18. <p class="title">5.规划行动(实践)——推荐使用“规划管理学习系统”</p>
  19. <p class="answer">通过对自我认知与环境探索的组合分析,发展决策能力,做出生涯决策,确立自己的人生目标、职业目标、学业目标,同时根据长远目标,分解出中期目标和短期目标。</p>
  20. <p class="title">6.反思改进(评估)</p>
  21. <p class="answer">行动的结果如何?是否适合我?坚持省察与批判的态度,评估目标的达成度、计划的可行性等,根据环境和自身的发展,适当调整和修正目标,让生涯历程既有规划又有变通,即人和环境均衡协调。</p>
  22. <drag_component></drag_component>
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script setup>
  28. import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
  29. import {onMounted, reactive} from "vue";
  30. import Drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
  31. const headinfo = ref({})
  32. function setHeadinfo(){
  33. headinfo.value = {
  34. title: '生涯唤醒学习系统',
  35. user: {
  36. avatar: '头像路径',
  37. nickName: '张三'
  38. },
  39. backUrl : '/xjc-integratedmachine/wakeup/career_recognize/index'
  40. }
  41. }
  42. const position = reactive({ x: 10, y: 10 });
  43. let isDragging = false;
  44. let originX, originY;
  45. const startDrag = (e) => {
  46. console.log("e",e)
  47. isDragging = true;
  48. originX = e.clientX - position.x;
  49. originY = e.clientY - position.y;
  50. console.log("originX",originX,originY,"originY")
  51. document.addEventListener('mousemove', onMouseMove);
  52. document.addEventListener('mouseup', stopDrag);
  53. };
  54. const onMouseMove = (e) => {
  55. if (isDragging) {
  56. position.x = e.clientX - originX;
  57. position.y = e.clientY - originY;
  58. console.log("position.x",position.x,"position.y",position.y)
  59. }
  60. };
  61. const stopDrag = () => {
  62. isDragging = false;
  63. document.removeEventListener('mousemove', onMouseMove);
  64. document.removeEventListener('mouseup', stopDrag);
  65. };
  66. onMounted(() => {
  67. setHeadinfo()
  68. })
  69. </script>
  70. <style scoped lang="scss">
  71. p{
  72. margin: 0;
  73. padding: 0;
  74. }
  75. .plan_steps{
  76. background: url('@/assets/images/login/login-home-background.png') no-repeat;
  77. background-size: 1920px 1080px;
  78. z-index:10;
  79. width: 100%;
  80. height: 1080px;
  81. .page-content {
  82. width: 100%;
  83. height: 980px;
  84. position: absolute;
  85. top: 100px;
  86. bottom: 0;
  87. }
  88. .page-box{
  89. width: 1832px;
  90. height: 910px;
  91. background: #FFFFFF;
  92. border-radius: 35px 35px 35px 35px;
  93. margin: 13px auto 0;
  94. padding-top: 25px;
  95. position: relative;
  96. .text-info{
  97. font-weight: bold;
  98. font-size: 32px;
  99. color: #333333;
  100. line-height: 42px;
  101. padding: 0 150px;
  102. }
  103. .title{
  104. font-weight: bold;
  105. font-size: 30px;
  106. color: #333333;
  107. line-height: 52px;
  108. margin-top: 6px;
  109. padding: 0 150px;
  110. }
  111. .answer{
  112. font-size: 30px;
  113. color: #333333;
  114. line-height: 42px;
  115. text-indent: 2em;
  116. padding: 0 150px;
  117. }
  118. }
  119. }
  120. </style>