当前位置 : 主页 > 网页制作 > Dojo >

dojo famater 自定义转换颜色

来源:互联网 收集:自由互联 发布时间:2021-06-15
{ field: "statusName", name: 'fmt:message key="label.status"/', width: '60px',editable:false,noresize:false, formatter:function(value){ if('已分配'== value){ this.customStyles.push("background-color: #27db28;"); } else if('执行中'== v
{ field: "statusName", name: '<fmt:message key="label.status"/>', width: '60px',editable:false,noresize:false,
		 formatter:function(value){
    	 	if('已分配'== value){
	    		this.customStyles.push("background-color: #27db28;");
	    	}
	    	else if('执行中'== value){
	    		this.customStyles.push("background-color: green;");
	    	}
    	 	else if('已拒绝'== value){
    		 	this.customStyles.push("background-color: red;");
    	 	}
    	 	else if('已完成'== value){
    	 		this.customStyles.push("background-color: blue;");
    	 	}
    	 	else if('已验证'== value){
    	 		this.customStyles.push("background-color: #D3D6D7;");
    	 	}
    	 	else if('草稿'== value){
    	 		this.customStyles.push("background-color: yellow;");
    	 	}
    	 	return value;
     	}
}
网友评论