From b07cdd51ed7a0c545391da354660dc8ffb0d5fbd Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Mon, 21 Oct 2024 23:21:15 +0800
Subject: [PATCH] 1
---
src/page/authentication/components/nationalityList.vue | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/page/authentication/components/nationalityList.vue b/src/page/authentication/components/nationalityList.vue
index c988bf5..f516631 100644
--- a/src/page/authentication/components/nationalityList.vue
+++ b/src/page/authentication/components/nationalityList.vue
@@ -172,6 +172,9 @@
mounted() {
// this.$emit('excountry', this.countries[this.countryCode])
this.language = this.$i18n.locale
+ if(this.language=='ko'){
+ this.language = 'Korean'
+ }
this.countriesFind = this.countries[this.language]
this.getData();
},
@@ -186,6 +189,9 @@
this.isShow = true;
},
getData() {
+ if(this.language=='ko'){
+ this.language = 'Korean'
+ }
let us_name = this.countries[this.language]['us']['name'];
this.$emit('getName', us_name, 'us', 1);
},
--
Gitblit v1.9.3