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

detail.settings.js 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. var Unibase;
  2. (function (Unibase) {
  3. let Themes;
  4. (function (Themes) {
  5. let Providers;
  6. (function (Providers) {
  7. class Detail_Settings {
  8. constructor() {
  9. this.isListStages = false;
  10. this.RecordId = 0;
  11. this.InstalledAppId = 0;
  12. this.InputParameters = [];
  13. this.DetailParameters = [];
  14. this.TaskParameters = [];
  15. this.ActivePortlets = [];
  16. }
  17. static Instance() {
  18. if (this.instance === undefined)
  19. this.instance = new Unibase.Themes.Providers.Detail_Settings();
  20. return this.instance;
  21. }
  22. }
  23. Providers.Detail_Settings = Detail_Settings;
  24. class Parameter {
  25. constructor() {
  26. this.Key = '';
  27. this.Value = '';
  28. this.DataType = '';
  29. }
  30. }
  31. Providers.Parameter = Parameter;
  32. class DetailParameters {
  33. constructor() {
  34. this.InstalledAppId = 0;
  35. this.InputParameters = [];
  36. this.ActivePortletId = 0;
  37. }
  38. }
  39. Providers.DetailParameters = DetailParameters;
  40. class ActivePortlets {
  41. constructor() {
  42. this.InstalledAppId = 0;
  43. this.ActivePortletId = 0;
  44. }
  45. }
  46. Providers.ActivePortlets = ActivePortlets;
  47. class TaskParameters {
  48. constructor() {
  49. this.TaskId = 0;
  50. this.Reason = "";
  51. this.ActivePortletId = 0;
  52. this.Status = '';
  53. }
  54. }
  55. Providers.TaskParameters = TaskParameters;
  56. })(Providers = Themes.Providers || (Themes.Providers = {}));
  57. })(Themes = Unibase.Themes || (Unibase.Themes = {}));
  58. })(Unibase || (Unibase = {}));