doway-coms 1.4.96 → 1.4.97
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
|
@@ -793,20 +793,22 @@
|
|
|
793
793
|
linkField: y.linkField,
|
|
794
794
|
}
|
|
795
795
|
})
|
|
796
|
-
|
|
797
|
-
vm.
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
796
|
+
if (fieldNames.length) {
|
|
797
|
+
vm.searchRows.forEach(info => {
|
|
798
|
+
vm.propTableData.forEach(item=>{
|
|
799
|
+
// 接口字段可能和表字段field不一致,linkField一致
|
|
800
|
+
let arr= []
|
|
801
|
+
for(let j=0;j<fieldNames.length;j++){
|
|
802
|
+
if(info[fieldNames[j].field] == item[fieldNames[j].linkField]){
|
|
803
|
+
arr.push(true)
|
|
804
|
+
}
|
|
803
805
|
}
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
}
|
|
806
|
+
if(fieldNames.length === arr.length){
|
|
807
|
+
info.sysRepeat = true
|
|
808
|
+
}
|
|
809
|
+
})
|
|
808
810
|
})
|
|
809
|
-
}
|
|
811
|
+
}
|
|
810
812
|
})
|
|
811
813
|
.catch(error => {
|
|
812
814
|
console.error(error)
|