dojo famater 自定义转换颜色

来源:互联网 发布:系统修复软件 编辑:程序博客网 时间:2024/05/18 23: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('执行中'== 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;     }}
0 0
原创粉丝点击