Index: ssts-web/src/main/webapp/homepage/portalPage.js =================================================================== diff -u -r30521 -r30713 --- ssts-web/src/main/webapp/homepage/portalPage.js (.../portalPage.js) (revision 30521) +++ ssts-web/src/main/webapp/homepage/portalPage.js (.../portalPage.js) (revision 30713) @@ -898,8 +898,21 @@ return returnContent; } - if(itemId != 'packing' && itemId != 'reviewPacking' && itemId !='sterilizationRecord'){ - //region 只有临床用户且配了版本2或者3才能看到科室申领版本2或者3的图标还有申请单图标 + if(itemId != 'packing' && itemId !='sterilizationRecord'){ + //SZYK-26:reviewModuleVersion审核版本 + if(itemId == 'reviewPacking'){ + if(sstsConfig.reviewModuleVersion == 2){ + returnContent += '
  • '; + returnContent += '

    '; + returnContent += ''+ item['title'] +'
  • '; + }else { + returnContent += '
  • '; + returnContent += '

    '; + returnContent += ''+item['title']+'
  • '; + } + return returnContent; + } + //如果当前图标是科室申领的时候,如果该用户是临床科室且配了版本2或者3,隐藏该图标 if (itemId == 'recyclingApplication' && globalIsSupplyRoomUser == 'false' && (sstsConfig.recyclingApplicationVersion == 2 || sstsConfig.recyclingApplicationVersion == 3)){ return returnContent;