Browse Source

Pull request #305697: BI-163235 fix: 需要加个判空, 没有fmt不需要走到里面去

Merge in DEC/fineui from ~STAN.YANG/fineui-dec:final/11.0 to final/11.0

* commit '28b0750e6dce150d022430cc2d3fe0ad58d132c7':
  BI-163235 fix: 需要加个判空, 没有fmt不需要走到里面去
master^2^2
parent
commit
17c4dfd321
  1. 2
      packages/fineui/src/widget/timeinterval/dateinterval.js
  2. 2
      packages/fineui/src/widget/timeinterval/timeinterval.js

2
packages/fineui/src/widget/timeinterval/dateinterval.js

@ -182,7 +182,7 @@ export class DateInterval extends Single {
print(parseDateTime(date, "%Y-%X-%d"), "%Y-%X-%d") === date ||
print(parseDateTime(date, "%Y-%x-%e"), "%Y-%x-%e") === date ||
print(parseDateTime(date, "%Y-%X-%e"), "%Y-%X-%e") === date ||
print(parseDateTime(date, this.options.format), this.options.format) === date
this.options.format !== '' && print(parseDateTime(date, this.options.format), this.options.format) === date
);
}

2
packages/fineui/src/widget/timeinterval/timeinterval.js

@ -198,7 +198,7 @@ export class TimeInterval extends Single {
print(parseDateTime(date, "%Y-%X-%d %H:%M:%S"), "%Y-%X-%d %H:%M:%S") === date ||
print(parseDateTime(date, "%Y-%x-%e %H:%M:%S"), "%Y-%x-%e %H:%M:%S") === date ||
print(parseDateTime(date, "%Y-%X-%e %H:%M:%S"), "%Y-%X-%e %H:%M:%S") === date ||
print(parseDateTime(date, this.options.format), this.options.format) === date
this.options.format !== '' && print(parseDateTime(date, this.options.format), this.options.format) === date
);
}

Loading…
Cancel
Save