Built files from Bizgaze WebServer
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

bizgazetraining.js 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. var Unibase;
  2. (function (Unibase) {
  3. let Platform;
  4. (function (Platform) {
  5. let Communications;
  6. (function (Communications) {
  7. let Components;
  8. (function (Components) {
  9. let Training;
  10. (function (Training) {
  11. class BizgazeTraining extends Unibase.Platform.Core.BaseComponent {
  12. cssFiles() {
  13. return [];
  14. }
  15. jsFiles() {
  16. return [];
  17. }
  18. html(id, containerid) {
  19. var html = '';
  20. return html;
  21. }
  22. load(id, containerid, callback) {
  23. throw new Error("Method not implemented.");
  24. }
  25. init(containerid) {
  26. this.loaddesign(containerid);
  27. }
  28. loaddesign(containerid) {
  29. var html = '<div class="biz-training-wrap"><iframe class="w-100 h-550p" src="https://bizgaze.com/mobil/training.html" title="Bizgaze Training" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>';
  30. $("#" + containerid).append(html);
  31. }
  32. static Instance() {
  33. if (this.instance === null || this.instance === undefined)
  34. this.instance = new BizgazeTraining();
  35. return this.instance;
  36. }
  37. }
  38. Training.BizgazeTraining = BizgazeTraining;
  39. })(Training = Components.Training || (Components.Training = {}));
  40. })(Components = Communications.Components || (Communications.Components = {}));
  41. })(Communications = Platform.Communications || (Platform.Communications = {}));
  42. })(Platform = Unibase.Platform || (Unibase.Platform = {}));
  43. })(Unibase || (Unibase = {}));