openatc-components 0.3.60 → 0.3.61
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
|
@@ -363,11 +363,11 @@ export default {
|
|
|
363
363
|
handler: function (val, oldVal) {
|
|
364
364
|
this.handleBarrierHeight() // 计算屏障高度
|
|
365
365
|
if (this.patternStatusList && this.newCycle) {
|
|
366
|
-
setTimeout(() => {
|
|
367
|
-
|
|
368
|
-
this.handleBarrierHeight()
|
|
369
|
-
}, 10)
|
|
366
|
+
// setTimeout(() => {
|
|
367
|
+
this.handleCurrentChange(this.patternStatusList)
|
|
370
368
|
this.handleBarrierHeight()
|
|
369
|
+
// }, 10)
|
|
370
|
+
// this.handleBarrierHeight()
|
|
371
371
|
}
|
|
372
372
|
},
|
|
373
373
|
// 深度观察监听
|
|
@@ -421,10 +421,10 @@ export default {
|
|
|
421
421
|
})
|
|
422
422
|
},
|
|
423
423
|
handleEdit (val) {
|
|
424
|
-
this.
|
|
424
|
+
this.patternStatusList.map(d => {
|
|
425
425
|
d.map(r => {
|
|
426
426
|
if (r.id === val.id) {
|
|
427
|
-
r.
|
|
427
|
+
r.value = val.split
|
|
428
428
|
}
|
|
429
429
|
})
|
|
430
430
|
})
|