其他类型文件同步数据更改
continuous-integration/drone/push Build is passing Details

rj
caiyiling 2026-05-19 15:26:06 +08:00
parent 2a68b40875
commit 04014ab524
2 changed files with 5 additions and 3 deletions

View File

@ -136,7 +136,9 @@ export default {
}, },
rowInfo: { rowInfo: {
type: Object, type: Object,
required: true, default() {
return {}
}
}, },
}, },
data() { data() {

View File

@ -44,7 +44,7 @@ export default {
activeTab: 'study', activeTab: 'study',
tabInfo: { tabInfo: {
activeTab: 'file', activeTab: 'file',
currentRow: null currentRow: {}
}, },
fileUploadRecordId: '', fileUploadRecordId: '',
path: '' path: ''
@ -52,7 +52,7 @@ export default {
}, },
methods: { methods: {
openTaskTable(obj) { openTaskTable(obj) {
this.tabInfo.currentRow = obj || null this.tabInfo.currentRow = obj || {}
this.fileUploadRecordId = obj.Id this.fileUploadRecordId = obj.Id
this.path = obj.Path this.path = obj.Path
this.tabInfo.activeTab = 'task' this.tabInfo.activeTab = 'task'