mooho-base-admin-plus 2.0.0 → 2.0.2
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/package.json
CHANGED
|
@@ -2020,6 +2020,8 @@
|
|
|
2020
2020
|
if (!this.filterDisable) {
|
|
2021
2021
|
let filter = this.filter;
|
|
2022
2022
|
|
|
2023
|
+
console.log('filter', filter);
|
|
2024
|
+
|
|
2023
2025
|
for (let key in filter) {
|
|
2024
2026
|
let column = key;
|
|
2025
2027
|
let value = filter[key];
|
|
@@ -2027,6 +2029,10 @@
|
|
|
2027
2029
|
continue;
|
|
2028
2030
|
}
|
|
2029
2031
|
|
|
2032
|
+
if (typeof value == 'object' && !(value instanceof Date)) {
|
|
2033
|
+
continue;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2030
2036
|
if (column == 'keywordColumns') {
|
|
2031
2037
|
continue;
|
|
2032
2038
|
}
|