Browse Source

debug(employeeProfile): add console log for schooling result

临时添加调试日志用于查看学历转换后的结果,方便排查显示异常问题
huoyi 1 week ago
parent
commit
3248984d75
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/views/portraitManagement/employeeProfile/index.vue

+ 2 - 0
src/views/portraitManagement/employeeProfile/index.vue

@@ -323,6 +323,8 @@ const displayQualificationLevels = computed(() => {
323 323
 
324 324
 const getSchooling = (schooling) => {
325 325
   const result = (sys_user_schooling.value || []).find(item => item.value === schooling) || { label: schooling }
326
+  console.log(result)
327
+  
326 328
   return result.label || '-'
327 329
 }
328 330