From 0c83eca761b1dc62ffe679c06df695737a17c0ca Mon Sep 17 00:00:00 2001
From: linzhijie <19970921lzj>
Date: 星期一, 05 七月 2021 17:31:18 +0800
Subject: [PATCH] 修复BUG

---
 src/views/demography/langOption.vue |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/views/demography/langOption.vue b/src/views/demography/langOption.vue
index ff4257f..c204e19 100644
--- a/src/views/demography/langOption.vue
+++ b/src/views/demography/langOption.vue
@@ -32,8 +32,8 @@
     return {
       langTypes: [],
       langSelectValue: this.$route.query.langSelectValue,
-      langWelcome: this.$t('langWelcomeEnglish'),
-      langOption: this.$t('langOptionEnglish'),
+      langWelcome: this.$t('langWelcomeChinese'),
+      langOption: this.$t('langOptionChinese'),
       timer: null,
       submissionLang: this.$t('submission'),
       isLangKaiStyle: false
@@ -50,17 +50,17 @@
         num = 0
       }
       if (num === 0) {
-        _this.langWelcome = _this.$t('langWelcomeEnglish')
-        _this.langOption = _this.$t('langOptionEnglish')
-        _this.isLangKaiStyle = false
-      }
-
-      if (num === 3) {
         _this.langWelcome = _this.$t('langWelcomeChinese')
         _this.langOption = _this.$t('langOptionChinese')
         _this.isLangKaiStyle = true
       }
 
+      if (num === 3) {
+        _this.langWelcome = _this.$t('langWelcomeEnglish')
+        _this.langOption = _this.$t('langOptionEnglish')
+        _this.isLangKaiStyle = false
+      }
+
       if (num === 6) {
         _this.langWelcome = _this.$t('langWelcomeThai')
         _this.langOption = _this.$t('langOptionThai')

--
Gitblit v1.9.1