|
@@ -174,7 +174,7 @@ export default {
|
|
/* 日期弹窗 */
|
|
/* 日期弹窗 */
|
|
isDateDia: false, // 时间段弹窗
|
|
isDateDia: false, // 时间段弹窗
|
|
dateForm: {},
|
|
dateForm: {},
|
|
- dateTip: '请选择时间段',
|
|
|
|
|
|
+ dateTip: /* '请选择时间段' */this.$t('Chart.choose_time'),
|
|
limitData: {
|
|
limitData: {
|
|
letMin: 0,
|
|
letMin: 0,
|
|
leftMax: 0,
|
|
leftMax: 0,
|
|
@@ -282,7 +282,7 @@ export default {
|
|
changeYear(item) {
|
|
changeYear(item) {
|
|
this.year_select = item.value;
|
|
this.year_select = item.value;
|
|
this.select_date = [];
|
|
this.select_date = [];
|
|
- this.dateTip = '请选择时间段';
|
|
|
|
|
|
+ this.dateTip = /* '请选择时间段' */this.$t('Chart.choose_time');
|
|
|
|
|
|
const { MinValue,MaxValue } = this.chartInfo;
|
|
const { MinValue,MaxValue } = this.chartInfo;
|
|
this.oldOptions = {
|
|
this.oldOptions = {
|
|
@@ -321,8 +321,8 @@ export default {
|
|
data.dateType === 5
|
|
data.dateType === 5
|
|
? `${data.start_date}~${data.end_date}`
|
|
? `${data.start_date}~${data.end_date}`
|
|
: data.dateType === 6
|
|
: data.dateType === 6
|
|
- ?`${data.start_date}~至今`
|
|
|
|
- :`最近${this.count_year}年`
|
|
|
|
|
|
+ ?/* `${data.start_date}~至今` */ this.$t('Chart.data_tip_since',{date:data.start_date})
|
|
|
|
+ :/* `最近${this.count_year}年` */ this.$t('Chart.date_tip_count',{year:this.count_year})
|
|
if(this.chart_type === 2){
|
|
if(this.chart_type === 2){
|
|
let latestYear = parseInt(this.chartInfo.LatestDate.substring(0,4))
|
|
let latestYear = parseInt(this.chartInfo.LatestDate.substring(0,4))
|
|
let dateStart = data.start_date
|
|
let dateStart = data.start_date
|
|
@@ -710,7 +710,7 @@ export default {
|
|
this.count_year=5
|
|
this.count_year=5
|
|
this.select_date = [];
|
|
this.select_date = [];
|
|
this.options = {};
|
|
this.options = {};
|
|
- this.dateTip = '请选择时间段';
|
|
|
|
|
|
+ this.dateTip = /* '请选择时间段' */this.$t('Chart.choose_time');
|
|
this.oldOptions = {};
|
|
this.oldOptions = {};
|
|
this.calendar_type = '公历';
|
|
this.calendar_type = '公历';
|
|
this.season_year = [];
|
|
this.season_year = [];
|