// 这个属性改成这样就可以了
renderer:function(value, cellmeta, record, rowIndex, columnIndex, store){
if(!Number(record.data["accountId"]) && !record.data["accountName"])
return "";
return "[00"+Number(record.data["accountId"])+"]"+record.data["accountName"];
}