瀏覽代碼

指标库,预测库,图库全局语言切换

Karsa 11 月之前
父節點
當前提交
69732bb256

+ 2 - 2
src/components/edbLabelList.vue

@@ -40,7 +40,7 @@ export default {
         },
         currentLang:{ //默认是中文版
             type:String,
-            default:'ch'
+            default:'zh'
         }
 
     },
@@ -53,7 +53,7 @@ export default {
         //决定展示的指标名称为中文还是英文
         getLabelText(label){
             const nameMap = {
-                'ch':label.EdbName,
+                'zh':label.EdbName,
                 'en':label.EdbNameEn.length?label.EdbNameEn:label.EdbName
             }
             return nameMap[this.currentLang]

+ 1 - 0
src/views/Home.vue

@@ -907,6 +907,7 @@ export default {
     langChangeHandler(){
        this.$i18n.locale =  this.$i18n.locale == 'zh' ? 'en' : 'zh'
        localStorage.setItem('i18n',this.$i18n.locale)
+       this.$store.commit('SET_LANG',this.$i18n.locale)
     },
   },
 };

+ 1 - 0
src/views/Login.vue

@@ -645,6 +645,7 @@ export default {
         changeLang(val) {
             this.$i18n.locale = val
             localStorage.setItem('i18n',this.$i18n.locale)
+            this.$store.commit('SET_LANG',this.$i18n.locale)
         }
     },
     destroyed() {

+ 10 - 10
src/views/dataEntry_manage/chartSetting.vue

@@ -27,8 +27,8 @@
             @click="$router.push({path: '/addchart'})" type="primary"
           ><!-- 添加图表 -->{{$t('Chart.add_chart_btn')}}</el-button>
 
-          <change-lang v-permission="permissionBtn.chartLibPermission.chartLib_switchEn"
-            :lang="currentLang" @changeLang="changeLanguage" style="margin-left: 10px;"/>
+          <!-- <change-lang v-permission="permissionBtn.chartLibPermission.chartLib_switchEn"
+            :lang="currentLang" @changeLang="changeLanguage" style="margin-left: 10px;"/> -->
 
         </div>
         
@@ -1102,14 +1102,14 @@ export default {
       dataBaseInterface.chartClassify({IsShowMe:this.isOnlyMe}).then((res) => {
         if (res.Ret === 200) {
           this.showData = true;
-          this.currentLang = res.Data.Language === 'EN' ? 'en' : 'ch';
-					this.setLangIntoStore();
+          // this.currentLang = res.Data.Language === 'EN' ? 'en' : 'ch';
+					// this.setLangIntoStore();
 
           const arr=res.Data.AllNodes || [];
           this.treeData = arr.map(item=>{
 						return {
 							...item,
-							isLeaf:item.Children.length?false:true
+							isLeaf:item.Children.length?false:true,
 						}
 					})
 
@@ -2028,11 +2028,11 @@ export default {
     },
     /* 点击复制先用canvas画出 转成图片在放到粘贴板中 */
     copyChartHandle:_.debounce(function(type){{
-      let chartsName = this.currentLang=='ch'?this.chartInfo.ChartName:this.chartInfo.ChartNameEn
+      let chartsName = this.currentLang==='zh'?this.chartInfo.ChartName:this.chartInfo.ChartNameEn
       let { heightNum, widthNum , newTitle , dynamic_copyOptions} = this.dynamicWidthAndHeight(type,this.chartInfo.ChartType,chartsName,this.chartInfo.Source === 1?this.tableData.length:this.commodityChartData.length)
       const chartType = this.sameOptionType.includes(this.chartInfo.ChartType)?'legend':'seasonLegend'
       // 英文转SVG设置变动
-      if(this.currentLang == 'en'){
+      if(this.currentLang === 'en'){
         // 散点图 如果横轴单位为'英文单位',表示客户没填,转成svg时置为空
         if(this.chartInfo.ChartType == 5){
           this.$refs.chartRef.chart.options.xAxis.forEach(it => {
@@ -2465,9 +2465,9 @@ export default {
     },
 
     /* 存储中英文状态 */
-		setLangIntoStore() {
-			this.$store.commit('edb/SET_CAHRT_LANG',this.currentLang)
-		},
+		// setLangIntoStore() {
+		// 	this.$store.commit('edb/SET_CAHRT_LANG',this.currentLang)
+		// },
     /* 获取标签列表 */
     getlabelList(){
         const List = JSON.parse(sessionStorage.getItem('etachart'))||[]

+ 6 - 6
src/views/dataEntry_manage/databaseComponents/chartTrendRender.vue

@@ -144,7 +144,7 @@ export default {
 		// 语言 ch/en
 		chartLang:{
 			type: String,
-			default:()=> 'ch'
+			default:()=> 'zh'
 		},
 		isShowChartBasis:{
 			type:Boolean,
@@ -464,7 +464,7 @@ export default {
 				data: DataList.map(item=>([item.DataTimestamp, item.Value])),
 				type: 'spline',
 				yAxis: 1,
-				name: this.chartLang=='ch'?`${EdbInfo.EdbName}同比`:EdbInfo.EdbNameEn?`${EdbInfo.EdbNameEn}同比`:'无英文名称',
+				name: this.chartLang=='zh'?`${EdbInfo.EdbName}同比`:EdbInfo.EdbNameEn?`${EdbInfo.EdbNameEn}同比`:'无英文名称',
 				lineWidth: 1
 			})
 			console.log(this.options.series)
@@ -489,7 +489,7 @@ export default {
 
 			// 单位 中文时 为无不显示   英文时 为空提示点击输入
 			// 中文不存在或等于无时 英文显示为空  中文存在且英文不存在时 显示'英文单位'
-			let yTitleText = this.chartLang=='ch'?
+			let yTitleText = this.chartLang=='zh'?
 			(this.chartInfo.Unit && this.chartInfo.Unit!='无') ? this.chartInfo.Unit:'':
 			!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn
 			// title样式  英文为空时,提示文字样式  英文可以点击设置
@@ -522,7 +522,7 @@ export default {
 				...seasonOptions.yAxis,
 			};
 			// 图例名称和图例文字样式
-			let dataName = this.chartLang=='ch'?this.chartInfo.EdbName:this.chartInfo.EdbNameEn?this.chartInfo.EdbNameEn:'无英文名称'
+			let dataName = this.chartLang=='zh'?this.chartInfo.EdbName:this.chartInfo.EdbNameEn?this.chartInfo.EdbNameEn:'无英文名称'
 			let color = this.chartLang=='en'&&(!this.chartInfo.EdbNameEn)?'#999':'#333'
 			let legend={
 				...defaultOpts.legend,
@@ -605,7 +605,7 @@ export default {
               align: 'center',
             },
             title: {
-              text:  this.chartLang=='ch'?this.chartInfo.Unit:
+              text:  this.chartLang=='zh'?this.chartInfo.Unit:
 							!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
               align: 'high',
               rotation: 0,
@@ -648,7 +648,7 @@ export default {
               align: 'center',
             },
             title: {
-              text:  this.chartLang=='ch'?this.chartInfo.Unit:
+              text:  this.chartLang=='zh'?this.chartInfo.Unit:
 							!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
               align: 'high',
               rotation: 0,

+ 6 - 6
src/views/dataEntry_manage/databaseComponents/createChart.vue

@@ -132,7 +132,7 @@ export default {
 		// 语言 ch/en
 		chartLang:{
 			type: String,
-			default:()=> 'ch'
+			default:()=> 'zh'
 		}
 	},
 	computed: {
@@ -407,7 +407,7 @@ export default {
 				data: DataList.map(item=>([item.DataTimestamp, item.Value])),
 				type: 'spline',
 				yAxis: 1,
-				name: this.chartLang=='ch'?`${EdbInfo.EdbName}同比`:EdbInfo.EdbNameEn?`${EdbInfo.EdbNameEn}同比`:'无英文名称',
+				name: this.chartLang=='zh'?`${EdbInfo.EdbName}同比`:EdbInfo.EdbNameEn?`${EdbInfo.EdbNameEn}同比`:'无英文名称',
 				lineWidth: 1
 			})
 			console.log(this.options.series)
@@ -432,7 +432,7 @@ export default {
 
 			// 单位 中文时 为无不显示   英文时 为空提示点击输入
 			// 中文不存在或等于无时 英文显示为空  中文存在且英文不存在时 显示'英文单位'
-			let yTitleText = this.chartLang=='ch'?
+			let yTitleText = this.chartLang=='zh'?
 			(this.chartInfo.Unit && this.chartInfo.Unit!='无') ? this.chartInfo.Unit:'':
 			!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn
 			// title样式  英文为空时,提示文字样式  英文可以点击设置
@@ -463,7 +463,7 @@ export default {
 				...seasonOptions.yAxis,
 			};
 			// 图例名称和图例文字样式
-			let dataName = this.chartLang=='ch'?this.chartInfo.EdbName:this.chartInfo.EdbNameEn?this.chartInfo.EdbNameEn:'无英文名称'
+			let dataName = this.chartLang=='zh'?this.chartInfo.EdbName:this.chartInfo.EdbNameEn?this.chartInfo.EdbNameEn:'无英文名称'
 			let color = this.chartLang=='en'&&(!this.chartInfo.EdbNameEn)?'#999':'#333'
 			let legend={
 				...defaultOpts.legend,
@@ -551,7 +551,7 @@ export default {
               align: 'center',
             },
             title: {
-              text:  this.chartLang=='ch'?this.chartInfo.Unit:
+              text:  this.chartLang=='zh'?this.chartInfo.Unit:
 							!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
               align: 'high',
               rotation: 0,
@@ -595,7 +595,7 @@ export default {
               align: 'center',
             },
             title: {
-              text:  this.chartLang=='ch'?this.chartInfo.Unit:
+              text:  this.chartLang=='zh'?this.chartInfo.Unit:
 							!this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
               align: 'high',
               rotation: 0,

+ 1 - 1
src/views/dataEntry_manage/databaseComponents/dataAssociateComputeData.vue

@@ -16,7 +16,7 @@
             >
                 <template slot-scope="scope">
                 <!-- 中文 -->
-                <span v-show="currentLang == 'ch'">{{ scope.row[item.key] }}</span>
+                <span v-show="currentLang == 'zh'">{{ scope.row[item.key] }}</span>
                 <!-- 英文 没有内容 只有指标名称、单位可以编辑 -->
                 <!-- 中文没有内容 对应英文显示为空 -->
                 <span

+ 2 - 2
src/views/dataEntry_manage/databaseComponents/edbDetailData.vue

@@ -14,7 +14,7 @@
 					<span>{{item.label}}</span>
 				</template>	
 				<template slot-scope="scope">
-					<span v-show="currentLang=='ch'">{{ scope.row[item.key] }}</span> 
+					<span v-show="currentLang=='zh'">{{ scope.row[item.key] }}</span> 
 					<span v-show="currentLang=='en'">{{scope.row[item.enKey||item.key] || scope.row[item.key]}}</span>
 				</template>
 			</el-table-column>
@@ -73,7 +73,7 @@ export default {
 	props:{
 		currentLang:{
 			type:String,
-			default:'ch'
+			default:'zh'
 		},
 		tableData:{
 			type:Array,

+ 22 - 20
src/views/dataEntry_manage/databaseList.vue

@@ -17,12 +17,12 @@
 			</div>
 			<div class="top-right">
 
-				<change-lang 
+				<!-- <change-lang 
 					v-permission="permissionBtn.edbDataPermission.edbData_switchEn"
 					:lang="currentLang" 
 					style="height: 32px;" 
 					@changeLang="changeLanguage"
-				/>
+				/> -->
 
 				<el-select
 					v-model="search_txt"
@@ -231,7 +231,7 @@
 					<div class="chart-list-item-wrap">
 						<div class="list-item" v-for="item in chartList" :key="item.EdbInfoId">
 							<div class="header">
-								<span v-show="currentLang=='ch'">{{ item.EdbName }}</span> 
+								<span v-show="currentLang=='zh'">{{ item.EdbName }}</span> 
 								<span v-show="currentLang=='en'">{{ item.EdbNameEn || item.EdbName }}</span>
 							</div>
 							<div class="image" @click="detailShowHandle(item)"
@@ -775,7 +775,7 @@ export default {
 			search_page: 1,
 			search_have_more: false,
 			current_search:'',
-			currentLang:'ch', // 语言 ch 中文 en 英文
+			// currentLang:'ch', // 语言 ch 中文 en 英文
 			// -----------------设置英文指标弹窗
 			setEnName:false,
 			// 传入的formItem所需内容
@@ -962,7 +962,9 @@ export default {
 			return formulaTip
 		},
 
-
+		currentLang() {
+			return this.$store.state.lang
+		}
 	},
 	methods: {
 		//控制页面按钮权限
@@ -1006,8 +1008,8 @@ export default {
 						}
 					})
 					this.CanOpClassify = res.Data.CanOpClassify;
-					this.currentLang = res.Data.Language === 'EN' ? 'en' : 'ch';
-					this.setLangIntoStore()
+					// this.currentLang = res.Data.Language === 'EN' ? 'en' : 'ch';
+					// this.setLangIntoStore()
 					this.showData = true;
 					/* 处理树展开和选中图表 */
 					params && this.selectCurrentNode(params);
@@ -1163,9 +1165,9 @@ export default {
 		},
 
 		/* 存储中英文状态 */
-		setLangIntoStore() {
-			this.$store.commit('edb/SET_LANG',this.currentLang)
-		},
+		// setLangIntoStore() {
+		// 	this.$store.commit('edb/SET_LANG',this.currentLang)
+		// },
 
 		/* 数值滚动加载 */
 		scrollHandle: _.throttle(function() {
@@ -1181,16 +1183,16 @@ export default {
 			}
 		},200),
 		/* 切换中英文 */
-		changeLanguage: _.debounce(async function (lang){
-			this.search_txt = '';
-			this.currentLang = lang;
-			await dataBaseInterface.setUserLang({
-				ConfigCode: 'edb_language',
-				ConfigValue: lang === 'en' ? 'EN' : 'CN'
-			})
-
-			this.setLangIntoStore()
-		},200),
+		// changeLanguage: _.debounce(async function (lang){
+		// 	this.search_txt = '';
+		// 	this.currentLang = lang;
+		// 	await dataBaseInterface.setUserLang({
+		// 		ConfigCode: 'edb_language',
+		// 		ConfigValue: lang === 'en' ? 'EN' : 'CN'
+		// 	})
+
+		// 	this.setLangIntoStore()
+		// },200),
 		// 打开 编辑英文名称弹窗
 		openEnNameDia(type='table'){
 			this.updateType = type

+ 38 - 86
src/views/dataEntry_manage/mixins/chartPublic.js

@@ -78,57 +78,7 @@ export const chartSetMixin = {
         '周': 'W',
         '天': 'D',
       },
-      // tableColums: [
-      //   {
-      //     label: '指标名称',
-      //     key: 'EdbName',
-      //     enKey:'EdbNameEn',
-			// 		inputTip:'点击输入英文指标名称',
-      //     minwidthsty: '150px',
-      //   },
-      //   {
-      //     label: '指标ID',
-      //     key: 'EdbCode',
-      //     widthsty: '120px',
-      //   },
-      //   {
-      //     label: '更新频度',
-      //     key: 'Frequency',
-      //     enKey:'FrequencyEn',
-      //     minwidthsty: '60px',
-      //   },
-      //   {
-      //     label: '单位',
-      //     key: 'Unit',
-      //     enKey:'UnitEn',
-			// 		inputTip:'英文单位',
-      //     minwidthsty: '50px',
-      //   },
-      //   {
-      //     label: '起始时间',
-      //     key: 'StartDate',
-      //     minwidthsty: '100px',
-      //   },
-      //   {
-      //     label: '最新日期',
-      //     key: 'LatestDate',
-      //     minwidthsty: '90px',
-      //   },
-      //   {
-      //     label: '最新值',
-      //     key: 'LatestValue',
-      //     minwidthsty: '90px',
-      //   },
-      //   {
-      //     label: '最近更新',
-      //     key: 'ModifyTime',
-      //     minwidthsty: '100px',
-      //   },
-      //   {
-      //     label: '数据来源',
-      //     key: 'SourceName',
-      //   },
-      // ],//表格列
+
       tableData: [],//表格指标数据
 			options: {}, //配置options
       leftIndex: -1, //左侧上下限对应下标
@@ -148,7 +98,7 @@ export const chartSetMixin = {
 
       isShowSaveOther: false,//图表另存为弹窗
       // -------------切换图表中英文
-      currentLang:'ch', // ch(中文) en(英文)
+      // currentLang:'zh', // ch(中文) en(英文)
       setEnName:false,
       // 传入的formItem所需内容
       formItemArray:[],
@@ -259,7 +209,10 @@ export const chartSetMixin = {
     },
     yearSelector() {
       return yearSelector
-    }
+    },
+    currentLang() {
+			return this.$store.state.lang
+		}
   },
   watch: {
     
@@ -283,14 +236,14 @@ export const chartSetMixin = {
     /* --------------------------------------------切换中英文 */
 		async changeLanguage(lang){
       this.search_txt = '';
-			this.currentLang = lang;
+			// this.currentLang = lang;
       
       if(this.$route.path === '/chartsetting') {
-        await dataBaseInterface.setUserLang({
-          ConfigCode: 'chart_language',
-          ConfigValue: lang === 'en' ? 'EN' : 'CN'
-        })
-        this.setLangIntoStore();
+        // await dataBaseInterface.setUserLang({
+        //   ConfigCode: 'chart_language',
+        //   ConfigValue: lang === 'en' ? 'EN' : 'CN'
+        // })
+        // this.setLangIntoStore();
         if(!this.selected_chartid) return
       }
 
@@ -300,8 +253,7 @@ export const chartSetMixin = {
         2: this.changeCommodityLang,
         3: this.changeRelevanceLang,
         4: this.changeRelevanceLang,
-        5: this.changeCommodityLang,
-        // 10: wydgw 
+        5: this.changeCommodityLang
       }
 
       sourceMap[this.chartInfo.Source]()
@@ -518,13 +470,13 @@ export const chartSetMixin = {
     /* 切换柱形图中英文 */
     changeBarOptions() {
       //x轴
-      this.options.xAxis.categories = this.barXIdList.map(_ => this.currentLang == 'ch' 
+      this.options.xAxis.categories = this.barXIdList.map(_ => this.currentLang === 'zh' 
         ? this.barEdbData.find(edb => edb.EdbInfoId===_).EdbAliasName
         : this.barEdbData.find(edb => edb.EdbInfoId===_).EdbNameEn)
 
       // 单位
       this.options.yAxis.forEach(item => {
-        item.title.text = this.currentLang == 'ch' ? this.chartInfo.Unit : this.chartInfo.Unit;
+        item.title.text = this.currentLang === 'zh' ? this.chartInfo.Unit : this.chartInfo.Unit;
       });
     },
     // 切换中英文时,更改图表配置
@@ -534,34 +486,34 @@ export const chartSetMixin = {
       console.log(this.options,'options');
       // 散点图
       if(this.chartInfo.ChartType == 5){
-          this.options.yAxis.title.text = this.currentLang == 'ch' ? this.options.yAxis.title.textCh : this.options.yAxis.title.textEn;
-          this.options.xAxis.title.text = this.currentLang == 'ch' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn
+          this.options.yAxis.title.text = this.currentLang == 'zh' ? this.options.yAxis.title.textCh : this.options.yAxis.title.textEn;
+          this.options.xAxis.title.text = this.currentLang == 'zh' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn
           this.options.series.forEach(item => {
-            item.name = this.currentLang == 'ch' ? item.nameCh : item.nameEn;
+            item.name = this.currentLang == 'zh' ? item.nameCh : item.nameEn;
           });
-          this.options.tooltip.formatter = this.currentLang == 'ch' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn;
+          this.options.tooltip.formatter = this.currentLang == 'zh' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn;
       }else{
         // 单位
         this.options.yAxis.forEach(item => {
-          item.title.text = this.currentLang == 'ch' ? item.title.textCh : item.title.textEn;
+          item.title.text = this.currentLang == 'zh' ? item.title.textCh : item.title.textEn;
         });
         // 图例  名称
         if(this.chartInfo.ChartType != 2){
           // 季节图 不更改图例名称
           this.options.series.forEach(item => {
-            item.name = this.currentLang == 'ch' 
+            item.name = this.currentLang == 'zh' 
               ? item.nameCh 
               : (item.nameEn||item.nameCh)
           });
         }
         //截面散点 x轴标题
         if(this.chartInfo.ChartType === 10){
-          this.options.xAxis.title.text = this.currentLang == 'ch' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn;
-          this.options.tooltip.formatter = this.currentLang == 'ch' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn;
+          this.options.xAxis.title.text = this.currentLang == 'zh' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn;
+          this.options.tooltip.formatter = this.currentLang == 'zh' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn;
           this.options.series.forEach(item => {
             if(!item.linkedTo) {
               item.data.forEach(point => {
-                point.dataLabels.format = this.currentLang == 'ch' ? point.dataLabels.formatCh : (point.dataLabels.formatEn||point.dataLabels.formatCh);
+                point.dataLabels.format = this.currentLang == 'zh' ? point.dataLabels.formatCh : (point.dataLabels.formatEn||point.dataLabels.formatCh);
                 point.dataLabels.color = (this.currentLang==='en' && !point.dataLabels.formatEn) ? '#999' : '#333'
               })
             }
@@ -577,30 +529,30 @@ export const chartSetMixin = {
     changeCommodityLang() {
       console.log(this.options)
         this.options.yAxis.forEach(item => {
-          item.title.text = this.currentLang == 'ch' ? item.title.textCh : item.title.textEn
+          item.title.text = this.currentLang == 'zh' ? item.title.textCh : item.title.textEn
         });
         //图例
         this.options.series.forEach(item => {
-          item.name = this.currentLang == 'ch' ? item.nameCh : item.nameEn
+          item.name = this.currentLang == 'zh' ? item.nameCh : item.nameEn
         });
         //tooltip
-        this.options.tooltip.formatter = this.currentLang == 'ch' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn
+        this.options.tooltip.formatter = this.currentLang == 'zh' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn
         //x轴
-        this.options.xAxis.categories = this.commodityXData.map(_ => this.currentLang == 'ch' ? _.Name:_.NameEn);
+        this.options.xAxis.categories = this.commodityXData.map(_ => this.currentLang == 'zh' ? _.Name:_.NameEn);
     },
 
     /* 切换相关性图中英文 */
     changeRelevanceLang(){
         this.options.yAxis.forEach(item => {
-          item.title.text = this.currentLang == 'ch' ? item.title.textCh : item.title.textEn
+          item.title.text = this.currentLang == 'zh' ? item.title.textCh : item.title.textEn
         });
         //图例
         this.options.series.forEach(item => {
-          item.name = this.currentLang == 'ch' ? item.nameCh : item.nameEn
+          item.name = this.currentLang == 'zh' ? item.nameCh : item.nameEn
         });
         //tooltip
-        this.options.tooltip.formatter = this.currentLang == 'ch' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn
-        this.options.xAxis.title.text=this.currentLang == 'ch' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn
+        this.options.tooltip.formatter = this.currentLang == 'zh' ? this.options.tooltip.formatterCh : this.options.tooltip.formatterEn
+        this.options.xAxis.title.text=this.currentLang == 'zh' ? this.options.xAxis.title.textCh : this.options.xAxis.title.textEn
     },
 
 
@@ -2374,31 +2326,31 @@ export const chartSetMixin = {
 		},
 
     /* 拼接动态的指标名称小标签 */
-    concatDynamicTag({ IsAxis,IsOrder,EdbInfoType,LeadValue,LeadUnit },lang='ch') {
+    concatDynamicTag({ IsAxis,IsOrder,EdbInfoType,LeadValue,LeadUnit },lang='zh') {
       // IsAxis左轴1 右轴0 2右2轴 
       //IsOrder正序false 逆序true 
       //EdbInfoType是否是领先指标
       // lang ch 中文 en 英文
-      const axisLabelMap = lang=='ch'?{
+      const axisLabelMap = lang=='zh'?{
         0: '右轴',
         2: '右2轴'
       }:{
         0: 'RHS',
         2: '2-RHS'
       }
-      const orderLabelMap = lang=='ch'?{
+      const orderLabelMap = lang=='zh'?{
         1: '逆序'
       }:{
         1: 'REV'
       }
-      const edbInfoMap = lang=='ch'?{
+      const edbInfoMap = lang=='zh'?{
         0: '领先'
       }:{
         0: 'Lead'
       }
 
       //英文领先单位转换
-      const leadUnit = lang==='ch' ? LeadUnit : this.leadUnitEnMap[LeadUnit];
+      const leadUnit = lang==='zh' ? LeadUnit : this.leadUnitEnMap[LeadUnit];
 
       let axis_tag = axisLabelMap[IsAxis] || '';
       //逆序拼接
@@ -2551,7 +2503,7 @@ export const chartSetMixin = {
       let count = parseInt(widthNum / 21);
       let reg = new RegExp("(.{" + count + "})", "g");
       let newTitle = ''
-      if(this.currentLang == 'ch'){
+      if(this.currentLang == 'zh'){
         newTitle = _.cloneDeep(ChartName).replace(/\s/g, "").replace(reg, "$1<br/>");
       }else{
         newTitle = _.cloneDeep(ChartName);

+ 16 - 13
src/views/predictEdb_manage/predictEdb.vue

@@ -14,12 +14,12 @@
 							type="primary" @click="addEdbHandle"><!-- 添加指标 -->{{$t('EtaBasePage.add_edb_btn')}}</el-button>
 						<el-button v-permission="permissionBtn.predictEdbPermission.edbPreData_calcuEdb"
 							type="primary" @click="addComputedHandler" style="margin-left:0;"><!-- 计算指标 -->{{$t('EtaBasePage.calculation_edb_btn')}}</el-button>
-						<change-lang 
+						<!-- <change-lang 
 							v-permission="permissionBtn.predictEdbPermission.edbPreData_switchEn"
 							:lang="currentLang" 
 							style="height: 32px;" 
 							@changeLang="changeLangHandle"
-						/>
+						/> -->
 				</div>
 				<div class="search-cont" v-loading="searchLoading">
 					<el-select
@@ -240,7 +240,7 @@
 										v-permission="permissionBtn.predictEdbPermission.edbPreData_enNameSetting"
 										type="text" 
 										@click="clickEdbNameHandle" 
-										v-if="currentLang==='ch'||!edb_nameEn"
+										v-if="currentLang==='zh'||!edb_nameEn"
 									>
 										{{$t('Edb.detail_en_btn')}}<!-- 设置英文名称 -->
 									</el-button>
@@ -588,7 +588,7 @@ export default {
 			public_page: 1,
 			public_pages_size: 16,
 
-			currentLang:'ch', // ch(中文) en(英文)
+			// currentLang:'ch', // ch(中文) en(英文)
 			setEnName:false,
 			// 传入的formItem所需内容
 			formItemArray:[],
@@ -703,6 +703,9 @@ export default {
 			this.isEdbBtnShow('edbPreData_recalcu')||
 			this.edbButton.DeleteButton&&this.isEdbBtnShow('edbPreData_del')||
 			this.isEdbBtnShow('edbPreData_copyData')
+		},
+		currentLang() {
+			return this.$store.state.lang
 		}
 	},
 	watch: {
@@ -831,7 +834,7 @@ export default {
 
 				this.treeData = Data.AllNodes || [];
 				this.opLevelOneClassify = Data.CanOpClassify;
-				this.currentLang = Data.Language === 'EN' ? 'en' : 'ch';
+				// this.currentLang = Data.Language === 'EN' ? 'en' : 'ch';
 				this.showData = true;
 				this.$nextTick(() => {
 					/* 新增完成后 处理树展开和选中 */
@@ -1319,14 +1322,14 @@ export default {
 		},300),
 
 		/* 切换中英文 */
-		changeLangHandle: _.debounce(async function (lang){
-			this.search_txt = '';
-			this.currentLang = lang;
-			await dataBaseInterface.setUserLang({
-				ConfigCode: 'predict_edb_language',
-				ConfigValue: lang === 'en' ? 'EN' : 'CN'
-			})
-		},200),
+		// changeLangHandle: _.debounce(async function (lang){
+		// 	this.search_txt = '';
+		// 	this.currentLang = lang;
+		// 	await dataBaseInterface.setUserLang({
+		// 		ConfigCode: 'predict_edb_language',
+		// 		ConfigValue: lang === 'en' ? 'EN' : 'CN'
+		// 	})
+		// },200),
 
 		/* 编辑英文 */
 		openEnNameDia(info){

+ 2 - 0
src/vuex/index.js

@@ -33,6 +33,8 @@ const state = {
   // 是否有 试用用户行为权限
   hasTrialUserPermisson:false,
   permissionRoute:[], //用于需要验证是否有某个菜单的权限
+
+  lang: localStorage.getItem('i18n') || 'zh',//全局语言版本 zh en
 };
 
 export default {

+ 4 - 0
src/vuex/mutations.js

@@ -76,6 +76,10 @@ const mutations = {
   // 添加需要校验且有权限的路由
   ADD_PERMISSION_ROUTE(state,route){
     state.permissionRoute.push(route)
+  },
+
+  SET_LANG(state,lang) {
+    state.lang = lang;
   }
 };