tianheng-ui 0.0.102 → 0.0.103
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
@@ -100,7 +100,7 @@ export default {
|
|
100
100
|
for (const item of searchOptions) {
|
101
101
|
for (let i = 0; i < this.fields.length; i++) {
|
102
102
|
const element = this.fields[i];
|
103
|
-
if (element.
|
103
|
+
if (element.alias === item.prop) {
|
104
104
|
searchFields.push(item);
|
105
105
|
searchFieldsIndexs.push(i);
|
106
106
|
}
|
@@ -123,7 +123,7 @@ export default {
|
|
123
123
|
for (const item of tableOptions) {
|
124
124
|
for (let i = 0; i < this.fields.length; i++) {
|
125
125
|
const element = this.fields[i];
|
126
|
-
if (element.
|
126
|
+
if (element.alias === item.prop) {
|
127
127
|
tableFields.push(item);
|
128
128
|
tableFieldsIndexs.push(i);
|
129
129
|
}
|