fantasy-ngzorro 1.0.47 → 1.0.48
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.
- package/bundles/fantasy-ngzorro.umd.js +4 -0
- package/bundles/fantasy-ngzorro.umd.js.map +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js.map +1 -1
- package/esm2015/hd-form-lines/hd-form-lines.component.js +5 -1
- package/esm5/hd-form-lines/hd-form-lines.component.js +5 -1
- package/fesm2015/fantasy-ngzorro.js +4 -0
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +4 -0
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/package.json +1 -1
|
@@ -1897,6 +1897,9 @@
|
|
|
1897
1897
|
return;
|
|
1898
1898
|
}
|
|
1899
1899
|
this.filterIndexStore = [];
|
|
1900
|
+
console.log('filterValue', filterValue);
|
|
1901
|
+
console.log('storeFormLinesData', this.storeFormLinesData);
|
|
1902
|
+
console.log('formLines', this.formLines);
|
|
1900
1903
|
// 根据搜索字符串过滤数据
|
|
1901
1904
|
/** @type {?} */
|
|
1902
1905
|
var filteredData = this.storeFormLinesData.filter((/**
|
|
@@ -1911,6 +1914,7 @@
|
|
|
1911
1914
|
var item = _c.value;
|
|
1912
1915
|
/** @type {?} */
|
|
1913
1916
|
var value = data[item.name] ? data[item.name].toString().toLowerCase() : '';
|
|
1917
|
+
console.log('value', value);
|
|
1914
1918
|
if (value.includes(filterValue)) {
|
|
1915
1919
|
_this.filterIndexStore.push(index);
|
|
1916
1920
|
return true;
|