mooho-base-admin-plus 2.10.25 → 2.10.27

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.10.25",
4
+ "version": "2.10.27",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -167,7 +167,7 @@
167
167
 
168
168
  // 属性筛选条件
169
169
  for (let key in this.filter) {
170
- filter[key] = this.filter[key];
170
+ filter['v_' + key] = this.filter[key];
171
171
  }
172
172
 
173
173
  // 传入筛选条件
@@ -1242,7 +1242,7 @@
1242
1242
  // 排序
1243
1243
  let obj = JSON.parse(this.tableView.filtering);
1244
1244
  for (let key in obj) {
1245
- this.viewFilter[key] = obj[key];
1245
+ this.viewFilter['v_' + key] = obj[key];
1246
1246
  }
1247
1247
  } else {
1248
1248
  this.viewFilter = {};
@@ -2402,6 +2402,8 @@
2402
2402
  column = column.substr(2);
2403
2403
  } else if (column.startsWith('y_')) {
2404
2404
  column = column.substr(2);
2405
+ } else if (column.startsWith('v_')) {
2406
+ column = column.substr(2);
2405
2407
  }
2406
2408
 
2407
2409
  if (column == 'keyword') {