Index: ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/tousseImage.jsp =================================================================== diff -u -r25953 -r26790 --- ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/tousseImage.jsp (.../tousseImage.jsp) (revision 25953) +++ ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/tousseImage.jsp (.../tousseImage.jsp) (revision 26790) @@ -211,8 +211,31 @@ } }); } +/** + * 加载包定义的注意事项 + */ +function loadTousseBagNotice(){ + jQuery.ajax({ + type:'post', + url:'${ctx}/disinfectSystem/packingAction!getPackageNote.do', + data:'td_id=' + tousseDefinitionID, + dataType:'json', + success:function(result){ + if(result.success){ + var notice = result.note; + if(notice){ + var text = notice.replace(/\r\n/g,'
'); + jQuery("#materialRemark").html(text); + } + } + }, + error:function(XMLHttpRequest, textStatus, errorThrown){ + } + }); +} //加载器械包图片 -function loadTousseImage(){ +function loadTousseImage(){ + loadTousseBagNotice(); if(isUndefinedOrNullOrEmpty(tousseDefinitionID)){ return; }