调用不同年份的数据。
我们不能只展示一年的数据,还需要展示前年的,过去两年的 。`
this.axios({
url: 'grad/yearList',
methods: 'get'
}).then(res => {
let years = res.data.data
years = years.sort(function (a, b) {
return a - b;
})
//默认为最近一年
this.start = years[years.length - 1]
this.end = years[years.length - 1]