JSD-8478 全时云会议集成
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
615 B

package com.eco.plugin.xxxx.qshy.JsHandler;
import com.fr.stable.fun.impl.AbstractJavaScriptFileHandler;
public class JSHandler extends AbstractJavaScriptFileHandler {
@Override
public String[] pathsForFiles() {
//实测,不论是在core还是report还是form JS都会全部生效,所以标签可以统一使用core即可,移动端不支持,H5不支持
// 仅对报表访问生效(含决策平台中的报表),决策平台本身不支持这个接口(有其他接口)。
return new String[]{
"com/eco/plugin/xxxx/qshy/js/core.js"
};
}
}