(function(){
var doc=getCurrentDocument();
var btn=doc.getItemValueAsString("类型")
var html ="<script type=\"text/javascript\">";
html += "$(document).ready(function(){";
if("拜访客户".equals(btn)){
html +="document.getElementById('follow-up1').style.display='';" //hidenti 为元素的id
html +="document.getElementById('follow-up2').style.display='';";
html +="document.getElementById('follow-up3').style.display='';";
html +="document.getElementById('follow-up4').style.display='';";
html +="document.getElementById('follow-up5').style.display='';";
}else if("内部事务".equals(btn)){
html +="document.getElementById('follow-up1').style.display='none';";
html +="document.getElementById('follow-up2').style.display='none';";
html +="document.getElementById('follow-up3').style.display='none';";
html +="document.getElementById('follow-up4').style.display='none';";
html +="document.getElementById('follow-up5').style.display='none';";
}
html+= "});";
html+=" </script>";
return html;
})()