|
@@ -28,6 +28,11 @@ import FormatTwelve from '../newVersion/components/formatPage/FormatTwelve.vue';
|
|
|
export default {
|
|
|
components:{ FormatOne,FormatTwo,FormatThree,
|
|
|
FormatFour,FormatFive,FormatSix,FormatSeven,FormatEight,FormatNine,FormatTen,FormatEle,FormatTwelve},
|
|
|
+ computed: {
|
|
|
+ globalLang() { //全局语言版本 中文ppt可用 英文ppt固定en忽视
|
|
|
+ return this.$store.state.lang
|
|
|
+ }
|
|
|
+ },
|
|
|
data(){
|
|
|
return{
|
|
|
chartInfo:null,
|
|
@@ -201,7 +206,7 @@ export default {
|
|
|
//获取图表数据
|
|
|
async getchartData(id,lang='zh') {
|
|
|
console.log('getChartData')
|
|
|
- const currentLang = this.currentLang || lang
|
|
|
+ const currentLang = this.currentLang==='en'?'en':this.globalLang;
|
|
|
const res = await dataBaseInterface.getChartByCode({
|
|
|
UniqueCode: id,
|
|
|
IsCache:true
|