openatc-components 0.4.23 → 0.4.24
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.
|
@@ -605,6 +605,9 @@ export default {
|
|
|
605
605
|
}
|
|
606
606
|
return result.map(s => [...s])
|
|
607
607
|
},
|
|
608
|
+
check (arr1, arr2) {
|
|
609
|
+
return arr1.some(a1 => arr2.some(a2 => a1 === a2))
|
|
610
|
+
},
|
|
608
611
|
handleCurrentChange (val) { // 两个ring的数据
|
|
609
612
|
if (val === null || val.length === 0) return
|
|
610
613
|
// 按环序分组
|