fix 79987
This commit is contained in:
+6
-1
@@ -868,7 +868,8 @@ export default {
|
||||
// 步骤条回显
|
||||
this.currentStep = draftResult.currentStep
|
||||
// 项目信息
|
||||
this.projectDataSource = draftResult.projectList
|
||||
this.projectDataSource = draftResult.projectList || []
|
||||
this.projectId = this.projectDataSource[0].id
|
||||
// 标准信息
|
||||
this.standardDataSource = draftResult.standardList
|
||||
// 业务分派信息
|
||||
@@ -930,6 +931,10 @@ export default {
|
||||
this.$message.warning(this.$t('addAtLeastOneRowOfData'))
|
||||
flag = false
|
||||
} else {
|
||||
console.log(this.projectId, this.projectDataSource[0].id)
|
||||
if (this.projectId !== this.projectDataSource[0].id) {
|
||||
this.standardDataSource = []
|
||||
}
|
||||
this.projectId = this.projectDataSource[0].id
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user