fantasy-ngzorro 1.0.42 → 1.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1800,8 +1800,8 @@
1800
1800
  var e_1, _a;
1801
1801
  /** @type {?} */
1802
1802
  var filterValue = _this.filterStr.trim().toLowerCase();
1803
- // 如果没有输入搜索字符串,则显示所有数据
1804
- if (!filterValue) {
1803
+ // 如果没有输入搜索字符串或者没有数据,则显示所有数据
1804
+ if (!filterValue || !_this.formLinesData || _this.formLinesData.length === 0) {
1805
1805
  _this.tableLoading = false;
1806
1806
  return;
1807
1807
  }