diff --git a/jero-web/src/views/otamanagement/vehicleinformation/components/basicInformation.vue b/jero-web/src/views/otamanagement/vehicleinformation/components/basicInformation.vue index 5177c04e6..da71562f8 100644 --- a/jero-web/src/views/otamanagement/vehicleinformation/components/basicInformation.vue +++ b/jero-web/src/views/otamanagement/vehicleinformation/components/basicInformation.vue @@ -308,7 +308,6 @@ import { message } from 'ant-design-vue' } getAction('/ota/otaBaCxJbxx/queryByOtaId',{otaIdT:otaIdT,otaId:otaId}).then(res=>{ if(res.code == 200){ - this.form.qymc=res.result.qymc this.form.djbh=res.result.djbh this.form.cplb=res.result.cplb diff --git a/jero-web/src/views/otamanagement/vehicleinformation/components/upgradedonline.vue b/jero-web/src/views/otamanagement/vehicleinformation/components/upgradedonline.vue index 839ff8c15..9bb282ee3 100644 --- a/jero-web/src/views/otamanagement/vehicleinformation/components/upgradedonline.vue +++ b/jero-web/src/views/otamanagement/vehicleinformation/components/upgradedonline.vue @@ -426,14 +426,14 @@ import uploadFileOta from '@/components/uploadFileOta/file' }) }, clickButtonToUploadota(current) { - this.$refs.uploadFile.perentHandleFunc() - this.$refs.uploadFile.visible = true + this.$refs.uploadFileOta.perentHandleFunc() + this.$refs.uploadFileOta.visible = true this.uploadName = current getAction('sys/common/getFileInfos', { id: current }).then((res) => { if (res.success) { - this.$refs.uploadFile.perentHandleFunc(res.result) + this.$refs.uploadFileOta.perentHandleFunc(res.result) } else { - this.$refs.uploadFile.perentHandleFunc() + this.$refs.uploadFileOta.perentHandleFunc() } }) },