decision_balance_sheet_explanation.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <div class="plan_significance">
  3. <head-component :headinfo=headinfo></head-component>
  4. <div class="page-content">
  5. <div class="page-box">
  6. <p class="text-info">
  7. <span class="center-text">选科决策平衡单</span>是辅助新高考选科的重要工具,帮助我们通过赋值方式对影响选科决策的内在和外在考虑因素进行量化处理,让我们在各科目选择上多角度权衡利弊,最后获得更具有综合优势的选科结论。
  8. </p>
  9. <p class="text-info">
  10. 选科决策平衡单的具体使用方法如下:
  11. </p>
  12. <p class="text-info">
  13. <span class="center-text">第一步:</span>罗列可选的选考科目。如:物理、化学、生物、历史、政治、地理等。
  14. </p>
  15. <p class="text-info">
  16. <span class="center-text">第二步:</span>梳理并罗列对选科有影响的考虑因素。如:人生目标与职业目标、学科基础与学科成绩、学科优势、专业倾向与限考要求、父母等家人建议、教师建议与同学建议、学校特色与师资水平、社会发展需要与贡献等。
  17. </p>
  18. <p class="text-info">
  19. <span class="center-text">第三步:</span>评估各考虑因素的重要程度并分配权重分数,范围通常为1-5分(1分表示该因素最不重要,5分表示最重要)。
  20. </p>
  21. <p class="text-info">
  22. <span class="center-text">第四步:</span>衡量每个选考科目中各考虑因素的得失程度。依据自己在每个选考科目对应因素上的优势(得分)、劣势(失分),为每个科目在该因素上设定得失分数,范围可在-5到+5之间。
  23. </p>
  24. <p class="text-info">
  25. <span class="center-text">第五步:</span>加权计算并得出结果。根据每个考虑因素的权重和得失分数,计算每个选考科目的总得分(将每个因素的权重分数乘以该科目在该因素上的得失分数,再将所有因素的乘积相加,得到总得分),然后依据总得分的高低来排列选考科目的优先级。
  26. </p>
  27. <p class="text-info">
  28. 选科决策平衡单的结果主要是个人认知层面的反映,实际上仍有许多部分是决策平衡单无法展现出来的。因此,得分高的科目或许会与最终的决策不一致,但我们仍可通过选科决策平衡单来帮助自己清楚地了解整个选科决策过程。
  29. </p>
  30. <div class="img-box">
  31. <img src="@/assets/images/decision/decision_balance_sheet/explanation.png">
  32. </div>
  33. </div>
  34. <drag_component></drag_component>
  35. </div>
  36. </div>
  37. </template>
  38. <script setup>
  39. import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
  40. import {onMounted, reactive} from "vue";
  41. import drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
  42. const headinfo = ref({})
  43. const describeInfo = ref('')
  44. function setHeadinfo(){
  45. headinfo.value = {
  46. title: '生涯唤醒学习系统',
  47. user: {
  48. avatar: '头像路径',
  49. nickName: '张三'
  50. },
  51. backUrl : '/xjc-integratedmachine/wakeup/career_recognize/index'
  52. }
  53. }
  54. const centerDialogVisible = ref(false)
  55. const position = reactive({ x: 10, y: 10 });
  56. let isDragging = false;
  57. let originX, originY;
  58. const startDrag = (e) => {
  59. console.log("e",e)
  60. isDragging = true;
  61. originX = e.clientX - position.x;
  62. originY = e.clientY - position.y;
  63. console.log("originX",originX,originY,"originY")
  64. document.addEventListener('mousemove', onMouseMove);
  65. document.addEventListener('mouseup', stopDrag);
  66. };
  67. const onMouseMove = (e) => {
  68. if (isDragging) {
  69. position.x = e.clientX - originX;
  70. position.y = e.clientY - originY;
  71. console.log("position.x",position.x,"position.y",position.y)
  72. }
  73. };
  74. const stopDrag = () => {
  75. isDragging = false;
  76. document.removeEventListener('mousemove', onMouseMove);
  77. document.removeEventListener('mouseup', stopDrag);
  78. };
  79. onMounted(() => {
  80. setHeadinfo()
  81. })
  82. </script>
  83. <style scoped lang="scss">
  84. p{
  85. margin: 0;
  86. padding: 0;
  87. }
  88. .plan_significance{
  89. background: url('@/assets/images/login/login-home-background.png') no-repeat;
  90. background-size: 1920px 1080px;
  91. z-index:10;
  92. width: 100%;
  93. height: 1080px;
  94. .page-content {
  95. width: 100%;
  96. height: 980px;
  97. position: absolute;
  98. top: 100px;
  99. bottom: 0;
  100. }
  101. .page-box{
  102. width: 1832px;
  103. height: 910px;
  104. background: #FFFFFF;
  105. border-radius: 35px 35px 35px 35px;
  106. margin: 13px auto 0;
  107. padding-top: 25px;
  108. position: relative;
  109. overflow: auto;
  110. .text-info{
  111. font-weight: 400;
  112. font-size: 30px;
  113. color: #333333;
  114. line-height: 52px;
  115. padding: 0 150px;
  116. text-indent: 2em;
  117. margin-top: 20px;
  118. .center-text{
  119. font-weight: bold;
  120. }
  121. }
  122. .img-box{
  123. width: 1810px;
  124. height: 773px;
  125. display: flex;
  126. justify-content: center;
  127. margin-bottom: 20px;
  128. position: relative;
  129. img{
  130. width: 1525px;
  131. height: 770px;
  132. }
  133. }
  134. .title-text{
  135. margin-left: 150px;
  136. margin-right: 150px;
  137. margin-top: 28px;
  138. font-weight: bold;
  139. font-size: 32px;
  140. color: #333333;
  141. line-height: 52px;
  142. }
  143. }
  144. }
  145. </style>