帆软软件应用程序接口及开发指导文档

FS.Plugin.SystemItems

Files

系统管理菜单中的tab项接口,需要往接口数组中添加如下形式的对象

var item = {
     ui : function() {
         return {
             title : '管理菜单xx',
             content : {
                 // 布局配置
             }
         }
     },
     pop : function(idx, tabPane) {
         // 这一句是必须要的
         this.tabPane = tabPane;
         // 进行数据初始化处理
     }
 };
 FS.Plugin.SystemItems.push(item);

ENUM: This enumeration defines a set of String values. It exists primarily for documentation purposes - in code use the actual string values like "foo", don't reference them through this class like FS.Plugin.SystemItems.foo.