yw-demo.js 805 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * 这是一个各业务公共api总入口
  3. * 业务开发时,将复制这个文件,把"-demo"后缀去掉。
  4. * 当新增子系统时可以模仿Subsys新增相应的代码,如:
  5. * 增加保险关系子系统公共api,另起一行增加代码:
  6. * ,oBxgxComm : new _CBxgxComm()
  7. */
  8. var _CYW = _FW.fCreateClass();
  9. _CYW.prototype = {
  10. fCreateClass : function() {
  11. return function() {
  12. this.fInitialize.apply(this, arguments);
  13. };
  14. },
  15. fInitialize:function(options) {},
  16. /*******************自定义区*****************************************/
  17. oSubsysComm : new _CSubsysComm()
  18. /*
  19. ,oBxgxComm : new _CBxgxComm()
  20. ,oSxdyComm : new _CSxdyComm()
  21. ,oYbdyComm : new _CYbdyComm()
  22. */
  23. /**********************************************************/
  24. };
  25. var CYW = new _CYW();