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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.0.0",
4
+ "version": "2.0.2",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -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
  }
@@ -316,6 +316,7 @@
316
316
 
317
317
  .ivu-btn > span {
318
318
  width: 2px;
319
+ display: initial;
319
320
  }
320
321
 
321
322
  .ivu-btn > .ivu-icon {