From ff0c5bb9f8136d5b9404b0c0a00f37911456ff41 Mon Sep 17 00:00:00 2001 From: yj <2077506045@qq.com> Date: 星期一, 25 十一月 2024 11:51:56 +0800 Subject: [PATCH] 更新CAQ --- src/views/demography/langOption.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/demography/langOption.vue b/src/views/demography/langOption.vue index 0e3a6c0..b65c821 100644 --- a/src/views/demography/langOption.vue +++ b/src/views/demography/langOption.vue @@ -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 () { @@ -90,7 +92,6 @@ 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 => { -- Gitblit v1.9.1