枚举值怎么配置空值
1.样例说明
在DEP中设计的枚举值不能为空,如何将枚举值配置为空值
2. 解决方案
2.1 枚举值设置空值之前
2.2 枚举值设置空值之后
3.解决方案
3.1 配置pagerenderBefore事件
3.2 在pagerenderBefore事件中修改枚举源
_self.setInitComponentCallBack(function(cmpType,option,dom){
if( "baseStatus" === option.id){
option.enumSource.unshift({alias: "", value: 0})
}
});