浏览代码

编辑图表英文名称,翻译补充

cxmo 10 月之前
父节点
当前提交
9e51e7f743

+ 27 - 27
src/views/ppt_manage/mixins/pptMixins.js

@@ -899,7 +899,7 @@ export default {
 			this.enEdblist = tableData;
 
       this.formItemArray.chartInfo.push({
-        label:'图表名称',
+        label:/* "图表名称" */this.$t('Chart.Detail.chart_name'),
         value:chartInfo.ChartName,
         key:'ChartName',
         id:chartInfo.ChartInfoId,
@@ -907,59 +907,59 @@ export default {
         notEdit:true
       },
       {
-        label:'英文图表名称',
+        label:/* "英文图表名称" */this.$t('Chart.Detail.chart_en_name'),
         value:chartInfo.ChartNameEn,
         key:'ChartNameEn',
         id:chartInfo.ChartInfoId,
-        placeholder:'请输入英文图表名称'
+        placeholder:/* "请输入英文图表名称" */ this.$t('Chart.InputHolderAll.input_en_name')
       })
       if([1,2,5].includes(chartInfo.Source)){
         this.formItemArray.chartsList = tableData.map(item => {
           return item.Unit 
             ? [
                 {
-                  label:'指标名称',
+                  label:/* "指标名称" */this.$t('Edb.Detail.e_name'),
                   value:item.EdbName,
                   key:'EdbName',
                   id:item.EdbInfoId,
                   notEdit:true
                 },
                 {
-                  label:'单位',
+                  label:/* "单位" */this.$t('Edb.Detail.e_unit'),
                   value:item.Unit,
                   key:'Unit',
                   id:item.EdbInfoId,
                   notEdit:true
                 },
                 {
-                  label:'英文指标名称',
+                  label:/* "英文指标名称" */this.$t('Edb.Detail.e_en_name'),
                   value:item.EdbNameEn,
                   key:'EdbNameEn',
                   id:item.EdbInfoId,
-                  placeholder:'请输入英文指标名称'
+                  placeholder:/* "请输入英文指标名称" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_name')})
                 },
                 {
-                  label:'英文单位',
+                  label:/* "英文单位" */this.$t('Edb.Detail.e_en_unit'),
                   value:item.UnitEn,
                   key:'UnitEn',
                   id:item.EdbInfoId,
-                  placeholder:'请输入英文单位'
+                  placeholder:/* "请输入英文单位" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_unit')})
                 }
               ]
             : [
                 {
-                  label:'指标名称',
+                  label:/* "指标名称" */this.$t('Edb.Detail.e_name'),
                   value:item.EdbName,
                   key:'EdbName',
                   id:item.EdbInfoId,
                   notEdit:true
                 },
                 {
-                  label:'英文指标名称',
+                  label:/*  "英文指标名称" */this.$t('Edb.Detail.e_en_name'),
                   value:item.EdbNameEn,
                   key:'EdbNameEn',
                   id:item.EdbInfoId,
-                  placeholder:'请输入英文指标名称'
+                  placeholder:/* "请输入英文指标名称" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_name')})
                 }
               ]
         })
@@ -968,36 +968,36 @@ export default {
       //价格曲线
       if(chartInfo.Source===2) {
         this.formItemArray.chartInfo.push({
-          label:'期货名称',
+          label:/* "期货名称" */this.$t('Chart.Detail.good_name'),
           value:Data.EdbInfoList[1].EdbName,
           key:'FutureGoodName',
           id:chartInfo.ChartInfoId,
           notEdit:true
         },
         {
-          label:'英文期货名称',
+          label:/* "英文期货名称" */this.$t('Chart.Detail.good_en_name'),
           value:Data.EdbInfoList[1].EdbNameEn,
           key:'FutureGoodNameEn',
           id:chartInfo.ChartInfoId,
-          placeholder:'请输入英文期货名称'
+          placeholder:/* "请输入英文期货名称" */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.good_en_name')})
         })
       }
 
       //利润曲线
       else if(chartInfo.Source===5) {
         this.formItemArray.chartInfo.push({
-          label:'盘面利润名称',
+          label:/* "盘面利润名称" */this.$t('Chart.Detail.profit_name'),
           value:Data.DataResp.ProfitName,
           key:'ProfitName',
           id:chartInfo.ChartInfoId,
           notEdit:true
         },
         {
-          label:'英文盘面利润名称',
+          label:/* "英文盘面利润名称" */this.$t('Chart.Detail.profit_en_name'),
           value:Data.DataResp.ProfitNameEn,
           key:'ProfitNameEn',
           id:chartInfo.ChartInfoId,
-          placeholder:'请输入英文盘面利润名称'
+          placeholder:/* "请输入英文盘面利润名称" */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.profit_en_name')})
         })
       }
 
@@ -1008,48 +1008,48 @@ export default {
         const { TagList,VarietyList } = res.Data;
 
         this.formItemArray.chartInfo.push({
-          label:'X轴名称',
+          label:/* 'X轴名称' */this.$t('Chart.Detail.x_name'),
           value:Data.DataResp.XName,
           key:'XName',
           id:TagList[0].ChartTagId,
           notEdit:true
         },
         {
-          label:'英文X轴名称',
+          label:/* '英文X轴名称' */this.$t('Chart.Detail.x_en_name'),
           value:Data.DataResp.XNameEn,
           key:'XNameEn',
           id:TagList[0].ChartTagId,
-          placeholder:'请输入英文X轴名称'
+          placeholder:/* '请输入英文X轴名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.x_en_name')})
         },{
-          label:'Y轴名称',
+          label:/* 'Y轴名称' */this.$t('Chart.Detail.y_name'),
           value:Data.DataResp.YName,
           key:'YName',
           id:TagList[1].ChartTagId,
           notEdit:true
         },
         {
-          label:'英文Y轴名称',
+          label:/* '英文Y轴名称' */this.$t('Chart.Detail.y_en_name'),
           value:Data.DataResp.YNameEn,
           key:'YNameEn',
           id:TagList[1].ChartTagId,
-          placeholder:'请输入英文Y轴名称'
+          placeholder:/* '请输入英文Y轴名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.y_en_name')})
         })
 
         VarietyList.forEach(item => {
           this.formItemArray.chartsList.push([
             {
-              label:'品种名称',
+              label:/* '品种名称' */this.$t('Chart.Detail.variety_name'),
               value:item.ChartVarietyName,
               key:'ChartVarietyName',
               id:item.ChartVarietyId,
               notEdit:true
             },
             {
-              label:'英文品种名称',
+              label:/* '英文品种名称' */this.$t('Chart.Detail.variety_en_name'),
               value:item.ChartVarietyNameEn,
               key:'ChartVarietyNameEn',
               id:item.ChartVarietyId,
-              placeholder:'请输入英文品种名称'
+              placeholder:/* '请输入英文品种名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.variety_en_name')})
             }
           ])
         })

+ 27 - 27
src/views/report_manage/mixins/reportMixin.js

@@ -346,7 +346,7 @@ export default {
 
       this.formItemArray.chartInfo.push(
         {
-          label: "图表名称",
+          label: /* "图表名称" */this.$t('Chart.Detail.chart_name'),
           value: chartInfo.ChartName,
           key: "ChartName",
           id: chartInfo.ChartInfoId,
@@ -354,11 +354,11 @@ export default {
           notEdit: true,
         },
         {
-          label: "英文图表名称",
+          label: /* "英文图表名称" */this.$t('Chart.Detail.chart_en_name'),
           value: chartInfo.ChartNameEn,
           key: "ChartNameEn",
           id: chartInfo.ChartInfoId,
-          placeholder: "请输入英文图表名称",
+          placeholder: /* "请输入英文图表名称" */ this.$t('Chart.InputHolderAll.input_en_name'),
         }
       );
       if ([1,2,5].includes(chartInfo.Source)) {
@@ -366,48 +366,48 @@ export default {
           return item.Unit
             ? [
                 {
-                  label: "指标名称",
+                  label: /* "指标名称" */this.$t('Edb.Detail.e_name'),
                   value: item.EdbName,
                   key: "EdbName",
                   id: item.EdbInfoId,
                   notEdit: true,
                 },
                 {
-                  label: "单位",
+                  label: /* "单位" */this.$t('Edb.Detail.e_unit'),
                   value: item.Unit,
                   key: "Unit",
                   id: item.EdbInfoId,
                   notEdit: true,
                 },
                 {
-                  label: "英文指标名称",
+                  label: /* "英文指标名称" */this.$t('Edb.Detail.e_en_name'),
                   value: item.EdbNameEn,
                   key: "EdbNameEn",
                   id: item.EdbInfoId,
-                  placeholder: "请输入英文指标名称",
+                  placeholder: /* "请输入英文指标名称" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_name')}),
                 },
                 {
-                  label: "英文单位",
+                  label: /* "英文单位" */this.$t('Edb.Detail.e_en_unit'),
                   value: item.UnitEn,
                   key: "UnitEn",
                   id: item.EdbInfoId,
-                  placeholder: "请输入英文单位",
+                  placeholder: /* "请输入英文单位" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_unit')}),
                 },
               ]
             : [
                 {
-                  label: "指标名称",
+                  label: /* "指标名称" */this.$t('Edb.Detail.e_name'),
                   value: item.EdbName,
                   key: "EdbName",
                   id: item.EdbInfoId,
                   notEdit: true,
                 },
                 {
-                  label: "英文指标名称",
+                  label:/*  "英文指标名称" */this.$t('Edb.Detail.e_en_name'),
                   value: item.EdbNameEn,
                   key: "EdbNameEn",
                   id: item.EdbInfoId,
-                  placeholder: "请输入英文指标名称",
+                  placeholder: /* "请输入英文指标名称" */this.$t('Edb.InputHolderAll.input_common',{label:this.$t('Edb.Detail.e_en_name')}),
                 },
               ];
         });
@@ -417,18 +417,18 @@ export default {
       if (chartInfo.Source === 2) {
         this.formItemArray.chartInfo.push(
           {
-            label: "期货名称",
+            label: /* "期货名称" */this.$t('Chart.Detail.good_name'),
             value: Data.EdbInfoList[1].EdbName,
             key: "FutureGoodName",
             id: chartInfo.ChartInfoId,
             notEdit: true,
           },
           {
-            label: "英文期货名称",
+            label: /* "英文期货名称" */this.$t('Chart.Detail.good_en_name'),
             value: Data.EdbInfoList[1].EdbNameEn,
             key: "FutureGoodNameEn",
             id: chartInfo.ChartInfoId,
-            placeholder: "请输入英文期货名称",
+            placeholder: /* "请输入英文期货名称" */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.good_en_name')}),
           }
         );
       }
@@ -437,18 +437,18 @@ export default {
       else if (chartInfo.Source === 5) {
         this.formItemArray.chartInfo.push(
           {
-            label: "盘面利润名称",
+            label: /* "盘面利润名称" */this.$t('Chart.Detail.profit_name'),
             value: Data.DataResp.ProfitName,
             key: "ProfitName",
             id: chartInfo.ChartInfoId,
             notEdit: true,
           },
           {
-            label: "英文盘面利润名称",
+            label: /* "英文盘面利润名称" */this.$t('Chart.Detail.profit_en_name'),
             value: Data.DataResp.ProfitNameEn,
             key: "ProfitNameEn",
             id: chartInfo.ChartInfoId,
-            placeholder: "请输入英文盘面利润名称",
+            placeholder: /* "请输入英文盘面利润名称" */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.profit_en_name')}),
           }
         );
       }
@@ -460,48 +460,48 @@ export default {
         const { TagList,VarietyList } = res.Data;
 
         this.formItemArray.chartInfo.push({
-          label:'X轴名称',
+          label:/* 'X轴名称' */this.$t('Chart.Detail.x_name'),
           value:Data.DataResp.XName,
           key:'XName',
           id:TagList[0].ChartTagId,
           notEdit:true
         },
         {
-          label:'英文X轴名称',
+          label:/* '英文X轴名称' */this.$t('Chart.Detail.x_en_name'),
           value:Data.DataResp.XNameEn,
           key:'XNameEn',
           id:TagList[0].ChartTagId,
-          placeholder:'请输入英文X轴名称'
+          placeholder:/* '请输入英文X轴名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.x_en_name')})
         },{
-          label:'Y轴名称',
+          label:/* 'Y轴名称' */this.$t('Chart.Detail.y_name'),
           value:Data.DataResp.YName,
           key:'YName',
           id:TagList[1].ChartTagId,
           notEdit:true
         },
         {
-          label:'英文Y轴名称',
+          label:/* '英文Y轴名称' */this.$t('Chart.Detail.y_en_name'),
           value:Data.DataResp.YNameEn,
           key:'YNameEn',
           id:TagList[1].ChartTagId,
-          placeholder:'请输入英文Y轴名称'
+          placeholder:/* '请输入英文Y轴名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.y_en_name')})
         })
 
         VarietyList.forEach(item => {
           this.formItemArray.chartsList.push([
             {
-              label:'品种名称',
+              label:/* '品种名称' */this.$t('Chart.Detail.variety_name'),
               value:item.ChartVarietyName,
               key:'ChartVarietyName',
               id:item.ChartVarietyId,
               notEdit:true
             },
             {
-              label:'英文品种名称',
+              label:/* '英文品种名称' */this.$t('Chart.Detail.variety_en_name'),
               value:item.ChartVarietyNameEn,
               key:'ChartVarietyNameEn',
               id:item.ChartVarietyId,
-              placeholder:'请输入英文品种名称'
+              placeholder:/* '请输入英文品种名称' */this.$t('Chart.InputHolderAll.input_common',{label:this.$t('Chart.Detail.variety_en_name')})
             }
           ])
         })

+ 4 - 4
src/views/report_manage/reportAuthor.vue

@@ -295,7 +295,7 @@ export default {
       }).then(() => {
         reportAuthorInterface.authorDel({Id}).then(res => {
           if(res.Ret!==200) return
-          this.$message.success(res.Msg)
+          this.$message.success(/* res.Msg */this.$t('MsgPrompt.delete_msg'))
           
           this.getTableData();
         })
@@ -308,7 +308,7 @@ export default {
         EnableType: item.Enable ? 0 : 1
       }).then(res => {
         if(res.Ret!==200) return
-        this.$message.success(res.Msg)
+        this.$message.success(/* res.Msg */this.$t('MsgPrompt.edit_msg'))
         
         item.Enable = item.Enable ? 0 : 1;
       })
@@ -318,12 +318,12 @@ export default {
     async saveAuthorHandle() {
       await this.$refs.formRef.validate()
       const { id,name,report_type } = this.authorForm;
-      const { Ret,Msg } = this.authorForm.id 
+      const { Ret/* ,Msg */ } = this.authorForm.id 
         ? await reportAuthorInterface.authorEdit({ Id:id,Author:name })
         : await reportAuthorInterface.authorAdd({ AuthorType:report_type,Author:name })
 
       if(Ret !== 200) return
-      this.$message.success(Msg)
+      this.$message.success(/* Msg */this.$t('MsgPrompt.edit_msg'))
       this.closeDialog()
       
       this.page_no = 1;

+ 4 - 1
src/views/report_manage/reportEn/reportEditor.vue

@@ -215,7 +215,10 @@
 						<el-radio :label="10">{{$t('ReportManage.ReportList.intercommodity_analysis_radio')}}</el-radio>
 					</el-radio-group>
 					<div style="margin: 10px 0">
-						<el-checkbox v-model="isShowMe" @change="() => {search_page=1;$refs.chartListRef.scrollTop = 0;getreportlist(key_word)}">只看我的</el-checkbox>
+						<el-checkbox v-model="isShowMe" @change="() => {search_page=1;$refs.chartListRef.scrollTop = 0;getreportlist(key_word)}">
+							<!-- 只看我的 -->
+							{{$t('Edb.only_see_mine')}}
+						</el-checkbox>
 					</div>
 					<div
 						style="height: calc(100vh - 370px);overflow-x: hidden;overflow-y: auto;"