jiangping
2024-06-07 e3615abf0e9b87f574ddce53f94529d40762cecc
company/src/components/common/CommonHeader.vue
@@ -101,8 +101,14 @@
      if (userInfo == null) {
        return ''
      }
      if (userInfo.realname != null && userInfo.realname.trim().length > 0) {
        return userInfo.realname
      if(userInfo.type === 1){
        if (userInfo.company != null && userInfo.company.name.trim().length > 0) {
          return userInfo.company.name
        }
      }else{
        if (userInfo.realname != null && userInfo.realname.trim().length > 0) {
          return userInfo.realname
        }
      }
      return userInfo.username
    }