|
@@ -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')})
|
|
|
}
|
|
|
])
|
|
|
})
|