Merge pull request #2162 from ym6009/master

修复录制计划-编辑时的回显加载问题
This commit is contained in:
648540858 2026-05-28 21:59:33 +08:00 committed by GitHub
commit b760458e4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,10 +148,17 @@ export default {
}
},
watch: {
planArray: function(array) {
planArray: {
handler(array) {
if (!array || !array.length) {
return
}
for (let i = 0; i < array.length; i++) {
this.weekData[i].data = array[i].data
}
},
deep: true,
immediate: true
}
},
created() {