diff --git a/jero-web/src/views/projectManagement/components/addModel.vue b/jero-web/src/views/projectManagement/components/addModel.vue index 91c7734ef..e99ff909b 100644 --- a/jero-web/src/views/projectManagement/components/addModel.vue +++ b/jero-web/src/views/projectManagement/components/addModel.vue @@ -395,12 +395,14 @@ this.formInline = { ...this.formInline } }, projectNameChange(value) { + this.formInline.yearNameId = undefined let content = this.projectNameList.filter(res => { return res.id == value }) this.formInline.vehiclePlatform = content[0].vehiclePlatform || '' this.yearNameDataList = content[0].yearNameDataList || [] this.formInline.digitalPlatform = content[0].digitalPlatform || '' + this.formInline = {...this.formInline} } } }