guy 6 years ago
parent
commit
95efa937a6
  1. 62
      dist/_fineui.min.js
  2. 19
      dist/bundle.js
  3. 64
      dist/bundle.min.js
  4. 19
      dist/core.js
  5. 82
      dist/fineui.min.js
  6. 0
      src/data/constant/attrs.js
  7. 0
      src/data/constant/colors.js
  8. 0
      src/data/constant/constant.js
  9. 0
      src/data/constant/enums.js
  10. 0
      src/data/constant/strings.js
  11. 13
      src/data/data.js
  12. 2
      src/data/pool/pool.buffer.js
  13. 2
      src/data/pool/pool.sharing.js
  14. 2
      src/data/req/req.js
  15. 19
      utils/utils.js

62
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

19
dist/bundle.js vendored

@ -33840,19 +33840,6 @@ BI.VerticalCenterLayout = BI.inherit(BI.Layout, {
}
});
BI.shortcut("bi.vertical_center", BI.VerticalCenterLayout);/**
* 保存数据将js里面用到的常量数据都分离
*
*/
if (!window.Data) {
window.Data = {};
}
/**
* 存放bi里面通用的一些常量
* @type {{}}
*/
Data.Constant = {};
/**
* 缓冲池
* @type {{Buffer: {}}}
*/
@ -33861,7 +33848,7 @@ Data.Constant = {};
var Buffer = {};
var MODE = false;// 设置缓存模式为关闭
Data.BufferPool = {
BI.BufferPool = {
put: function (name, cache) {
if (BI.isNotNull(Buffer[name])) {
throw new Error("Buffer Pool has the key already!");
@ -33880,7 +33867,7 @@ Data.Constant = {};
(function () {
var _Shared = {};
Data.SharingPool = {
BI.SharingPool = {
_Shared: _Shared,
put: function (name, shared) {
_Shared[name] = shared;
@ -33903,7 +33890,7 @@ Data.Constant = {};
delete _Shared[key];
}
};
})();Data.Req = {
})();BI.Req = {
};
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

64
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

19
dist/core.js vendored

@ -33840,19 +33840,6 @@ BI.VerticalCenterLayout = BI.inherit(BI.Layout, {
}
});
BI.shortcut("bi.vertical_center", BI.VerticalCenterLayout);/**
* 保存数据将js里面用到的常量数据都分离
*
*/
if (!window.Data) {
window.Data = {};
}
/**
* 存放bi里面通用的一些常量
* @type {{}}
*/
Data.Constant = {};
/**
* 缓冲池
* @type {{Buffer: {}}}
*/
@ -33861,7 +33848,7 @@ Data.Constant = {};
var Buffer = {};
var MODE = false;// 设置缓存模式为关闭
Data.BufferPool = {
BI.BufferPool = {
put: function (name, cache) {
if (BI.isNotNull(Buffer[name])) {
throw new Error("Buffer Pool has the key already!");
@ -33880,7 +33867,7 @@ Data.Constant = {};
(function () {
var _Shared = {};
Data.SharingPool = {
BI.SharingPool = {
_Shared: _Shared,
put: function (name, shared) {
_Shared[name] = shared;
@ -33903,6 +33890,6 @@ Data.Constant = {};
delete _Shared[key];
}
};
})();Data.Req = {
})();BI.Req = {
};

82
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

0
src/data/constant/attrs.js

0
src/data/constant/colors.js

0
src/data/constant/constant.js

0
src/data/constant/enums.js

0
src/data/constant/strings.js

13
src/data/data.js

@ -1,13 +0,0 @@
/**
* 保存数据将js里面用到的常量数据都分离
*
*/
if (!window.Data) {
window.Data = {};
}
/**
* 存放bi里面通用的一些常量
* @type {{}}
*/
Data.Constant = {};

2
src/data/pool/pool.buffer.js

@ -7,7 +7,7 @@
var Buffer = {};
var MODE = false;// 设置缓存模式为关闭
Data.BufferPool = {
BI.BufferPool = {
put: function (name, cache) {
if (BI.isNotNull(Buffer[name])) {
throw new Error("Buffer Pool has the key already!");

2
src/data/pool/pool.sharing.js

@ -5,7 +5,7 @@
(function () {
var _Shared = {};
Data.SharingPool = {
BI.SharingPool = {
_Shared: _Shared,
put: function (name, shared) {
_Shared[name] = shared;

2
src/data/req/req.js

@ -1,3 +1,3 @@
Data.Req = {
BI.Req = {
};

19
utils/utils.js

@ -16278,19 +16278,6 @@ BI.Region.prototype = {
return pos;
}
};/**
* 保存数据将js里面用到的常量数据都分离
*
*/
if (!window.Data) {
window.Data = {};
}
/**
* 存放bi里面通用的一些常量
* @type {{}}
*/
Data.Constant = {};
/**
* 缓冲池
* @type {{Buffer: {}}}
*/
@ -16299,7 +16286,7 @@ Data.Constant = {};
var Buffer = {};
var MODE = false;// 设置缓存模式为关闭
Data.BufferPool = {
BI.BufferPool = {
put: function (name, cache) {
if (BI.isNotNull(Buffer[name])) {
throw new Error("Buffer Pool has the key already!");
@ -16318,7 +16305,7 @@ Data.Constant = {};
(function () {
var _Shared = {};
Data.SharingPool = {
BI.SharingPool = {
_Shared: _Shared,
put: function (name, shared) {
_Shared[name] = shared;
@ -16341,6 +16328,6 @@ Data.Constant = {};
delete _Shared[key];
}
};
})();Data.Req = {
})();BI.Req = {
};

Loading…
Cancel
Save