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()
@@ -90,6 +92,7 @@
            demographyApi.queryLangList(_this.memberToken, _this.reportTemplateId).then(function (result) {
              if (result && result.code === 1) {
                _this.langTypes = result.response
                console.log("longTypes", _this.langTypes)
              }
            }
            ).catch(e => {