From d8f87c52c32750897c145785dbeb5ba30917edb5 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 14 Aug 2024 20:03:33 +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