diff --git a/src/views/emis/emisCountry/index.vue b/src/views/emis/emisCountry/index.vue index 1575175b..28f67ea7 100644 --- a/src/views/emis/emisCountry/index.vue +++ b/src/views/emis/emisCountry/index.vue @@ -48,8 +48,8 @@ @@ -384,10 +384,17 @@ export default { this.openForm = true; this.titleForm = "新增"; }, + handleUpdateContinent(row){ + //console.log(row); this.currentContinentId = row.id || this.ids; - this.openForm = true; - this.titleForm = "修改"; + this.reset(); + const id = row.id || this.ids; + getEmisContinent(id).then(response => { + this.form = response.data; + this.openForm = true; + this.titleForm = "修改"; + }); }, handleDeleteContinent(row){ const ids = row.id || this.ids;