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
|
@@ -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') {
|