前端之家收集整理的这篇文章主要介绍了
dojo famater 自定义转换颜色,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
{ 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;
}
}
原文链接:https://www.f2er.com/dojo/291071.html