openatc-components 0.0.65 → 0.0.66
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
|
@@ -1404,7 +1404,7 @@ export default {
|
|
|
1404
1404
|
},
|
|
1405
1405
|
isRingCycleEqual (rings) {
|
|
1406
1406
|
let isequal = true
|
|
1407
|
-
this.patternmsg = []
|
|
1407
|
+
// this.patternmsg = []
|
|
1408
1408
|
let maxCycle = 0
|
|
1409
1409
|
for (let ring of rings) {
|
|
1410
1410
|
if (ring.length === 0) continue
|
|
@@ -1419,7 +1419,7 @@ export default {
|
|
|
1419
1419
|
maxCycle = cycle
|
|
1420
1420
|
}
|
|
1421
1421
|
if (cycle !== maxCycle) {
|
|
1422
|
-
this.patternmsg.push(rings.id)
|
|
1422
|
+
// this.patternmsg.push(rings.id)
|
|
1423
1423
|
isequal = false
|
|
1424
1424
|
}
|
|
1425
1425
|
}
|
|
@@ -1432,9 +1432,9 @@ export default {
|
|
|
1432
1432
|
this.patternCycleEqual = true
|
|
1433
1433
|
}
|
|
1434
1434
|
if (!this.patternCycleEqual) {
|
|
1435
|
-
let mess =
|
|
1435
|
+
let mess = `方案中存在环周期时长不一致`
|
|
1436
1436
|
if (this.$i18n.locale === 'en') {
|
|
1437
|
-
mess = `
|
|
1437
|
+
mess = `Inconsistent loop cycle durations exist in the scheme`
|
|
1438
1438
|
}
|
|
1439
1439
|
this.$message({
|
|
1440
1440
|
message: mess,
|