From 0f3a72e00606a7626406fcd76f97098d99686481 Mon Sep 17 00:00:00 2001
From: yj <2077506045@qq.com>
Date: 星期一, 18 十一月 2024 09:32:23 +0800
Subject: [PATCH] 更新

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

diff --git a/src/views/demography/langOption.vue b/src/views/demography/langOption.vue
index 3fd7c4e..b65c821 100644
--- a/src/views/demography/langOption.vue
+++ b/src/views/demography/langOption.vue
@@ -7,8 +7,8 @@
             <el-select v-model="langSelectValue"   :placeholder= "$t('pleaseSelect')" style="width: 55%">
               <el-option
                 v-for="itemIter in langTypes"
-                :key="itemIter.dictValue"
-                :label="itemIter.dictValue"
+                :key="itemIter.dictLabel"
+                :label="itemIter.dictLabel=='Chinese'?'涓枃':itemIter.dictLabel"
                 :value="itemIter.dictValue">
               </el-option>
             </el-select>
@@ -32,6 +32,7 @@
     return {
       langTypes: [],
       langSelectValue: this.$route.query.langSelectValue,
+      fromDo: this.$route.query.fromDo,
       langWelcome: this.$t('langWelcomeChinese'),
       langOption: this.$t('langOptionChinese'),
       timer: null,
@@ -40,6 +41,7 @@
     }
   },
   created: function () {
+
     let _this = this
     window.clearInterval(this.timer)
     _this.getLangType()
@@ -76,7 +78,7 @@
     submitLangOption: function () {
       let _this = this
       _this.setLangType(_this.langSelectValue)
-      _this.$router.push({ path: '/demography/fill/index', query: { demographyMenber: _this.memberToken, isStart: false } })
+      _this.$router.push({ path: '/demography/fill/index', query: { demographyMenber: _this.memberToken, isStart: false, langType: _this.langType } })
       window.clearInterval(this.timer)
     },
     getLangAndRportTemplateId () {

--
Gitblit v1.9.1