jwyu 8 months ago
parent
commit
b0d9b94a4d

+ 2 - 1
src/lang/modules/EtaChart/En.js

@@ -131,6 +131,7 @@ export default {
     select_refrence_tips:'Please select Date Name',
     stack_tips:'When turned on, all bar series on the chart are stacked.',
     select_date_type:'Please select Date type',
-    series_name_empty:'Empty Series Name,Please Adjust'
+    series_name_empty:'Empty Series Name,Please Adjust',
+    bar_stacking:'bar stacking',
   }
 }

+ 2 - 1
src/lang/modules/EtaChart/Zh.js

@@ -129,7 +129,8 @@ export default {
     select_refrence_tips:'请选择引用日期',
     stack_tips:'开启时,图上的所有柱形系列堆积',
     select_date_type:'请选择日期类型',
-    series_name_empty:'系列名称不能为空,请调整'
+    series_name_empty:'系列名称不能为空,请调整',
+    bar_stacking:'柱形堆积',
 
 
   }

+ 1 - 1
src/views/dataEntry_manage/addChart.vue

@@ -595,7 +595,7 @@
 
 							<!-- 是否堆积 -->
 							<div v-if="showIsHeap">
-								<span>柱形堆积</span>
+								<span>{{$t('EtaChartAddPage.bar_stacking')}}</span>
 								<el-tooltip
                   :content="$t('EtaChartAddPage.stack_tips')"
                   placement="top"

+ 10 - 5
src/views/dataEntry_manage/components/sectionalCombination/sectionalCombinationOption.vue

@@ -212,13 +212,18 @@ export default {
       type: Object
     },
   },
+  computed:{
+    //可选样式
+    chartItemStyleArr(){
+      return [
+        { label: this.$i18nt.locale==='zh'?'曲线图':'Line chart(curve)', key: 1, value: 'spline' },
+        { label: this.$i18nt.locale==='zh'?'折线图':'Broken line(Line)', key: 2, value: 'line' },
+        { label: this.$i18nt.locale==='zh'?'柱状图':'Bar chart(Bar)', key: 4, value: 'column' },
+      ]
+    }
+  },
   data() {
     return {
-      chartItemStyleArr: [
-        { label: '曲线图', key: 1, value: 'spline' },
-        { label: '折线图', key: 2, value: 'line' },
-        { label: '柱状图', key: 4, value: 'column' },
-      ],//可选样式
       predefineColors: defaultOpts.colors.slice(0, 2), //定义颜色蓝,红 默认颜色
 
       seriesData: [],

+ 1 - 1
src/views/dataEntry_manage/components/sectionalCombination/seriesEdit.vue

@@ -6,7 +6,7 @@
     @close="cancelHandle"
     custom-class="series-set-dialog"
     center
-    width="960px"
+    width="1000px"
     v-dialogDrag
     top="8vh"
     :title="$t('EtaChartAddPage.add_series_btn')"

+ 15 - 5
src/views/dataEntry_manage/components/sectionalCombination/seriesItemWrap.vue

@@ -129,13 +129,23 @@ export default {
     },
     referenceDateOpts:[]
   },
+  computed:{
+    //可选样式
+    chartItemStyleArr(){
+      return [
+        { label: this.$i18nt.locale==='zh'?'曲线图':'Line chart(curve)', key: 1, value: 'spline' },
+        { label: this.$i18nt.locale==='zh'?'折线图':'Broken line(Line)', key: 2, value: 'line' },
+        { label: this.$i18nt.locale==='zh'?'柱状图':'Bar chart(Bar)', key: 4, value: 'column' },
+      ]
+    }
+  },
   data() {
     return {
-      chartItemStyleArr: [
-        { label: '曲线图', key: 1, value: 'spline' },
-        { label: '折线图', key: 2, value: 'line' },
-        { label: '柱状图', key: 4, value: 'column' },
-      ],//可选样式
+      // chartItemStyleArr: [
+      //   { label: '曲线图', key: 1, value: 'spline' },
+      //   { label: '折线图', key: 2, value: 'line' },
+      //   { label: '柱状图', key: 4, value: 'column' },
+      // ],//可选样式
       showBatchModifyDate:false,// 批量设置日期
 
       compData:this.value,

+ 1 - 1
src/views/dataEntry_manage/editChart.vue

@@ -612,7 +612,7 @@
 
 							<!-- 是否堆积 -->
 							<div v-if="showIsHeap">
-								<span>柱形堆积</span>
+								<span>{{$t('EtaChartAddPage.bar_stacking')}}</span>
 								<el-tooltip
                   :content="$t('EtaChartAddPage.stack_tips')"
                   placement="top"