Browse Source

Merge pull request #192563 in DEC/fineui from master to feature/x

* commit 'ba8c6f037fb6ef9afc144cb9a9c5e182caae2de8':
  无JIRA fix: 严格模式支持
master
superman 2 years ago
parent
commit
09f1923b49
  1. 4
      src/core/2.base.js

4
src/core/2.base.js

@ -389,7 +389,7 @@
}
for (var i = 0, len = array.length; i < len; i++) {
if (BI.isArray(array[i])) {
res.push(arguments.callee(array[i], value));
res.push(BI.makeArrayByArray(array[i], value));
} else {
res.push(BI.deepClone(value));
}
@ -987,7 +987,7 @@
* @param DD
* @param minDate '1900-01-01'
* @param maxDate '2099-12-31'
* @returns {Array} 若无效返回无效状态
* @returns {Array} 若无效返回无效状态,数组第一位为无效属性,第二位缺省为超下限,1为超上限
*/
checkDateVoid: function (YY, MM, DD, minDate, maxDate) {
var back = [];

Loading…
Cancel
Save