===================
punishType.setValue([true,false,false]); 不生效
解决方案:
- var type = record.data.punishMode;
- var punishType = blackListEditWin.getBlackListEditForm().items.get("item_PunishType");
- if(type == 0){
- punishType.setValue('id_waterMark',true);
- }
- if(type == 1){
- punishType.setValue('id_disconnect',true);
- }
- if(type == 2){
- punishType.setValue('id_errorCode',true);
- }