|
@@ -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);
|