fineui是帆软报表和BI产品线所使用的前端框架。

12 lines
261 B

export const registValFun = Element => {
Element.registerFunction("val", function (value) {
if (BI.isNotNull(value)) {
this.text = `${value}`;
return this;
}
return this.text;
});
};