Explorar el Código

debug(employeeProfile): add console log for schooling result

临时添加调试日志用于查看学历转换后的结果,方便排查显示异常问题
huoyi hace 1 semana
padre
commit
3248984d75
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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
 const getSchooling = (schooling) => {
324
 const getSchooling = (schooling) => {
325
   const result = (sys_user_schooling.value || []).find(item => item.value === schooling) || { label: schooling }
325
   const result = (sys_user_schooling.value || []).find(item => item.value === schooling) || { label: schooling }
326
+  console.log(result)
327
+  
326
   return result.label || '-'
328
   return result.label || '-'
327
 }
329
 }
328
 
330