添加页面加载结束事件,来初始化章的显示状态
$(".sheet-container > div:first-child > div").css("display","none") //将.sheet-container 下第一个元素下的div隐藏掉(就是红章对应的元素)
给状态的下拉框按钮添加编辑结束事件,通过判断是否完成来决定是否显示红章
var v=this.getValue();//获取当前控件的值
if(v!="0"){
$(".sheet-container > div:first-child > div").css("display","none")//隐藏
}else{
$(".sheet-container > div:first-child > div").css("display","block")//显示
}