You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
673 B
54 lines
673 B
module.exports = {
|
|
code: 200,
|
|
msg: 'ok',
|
|
data: [
|
|
{
|
|
year: "2021-01",
|
|
value: 3
|
|
},
|
|
{
|
|
year: "2021-02",
|
|
value: 1
|
|
},
|
|
{
|
|
year: "2021-03",
|
|
value: 6
|
|
},
|
|
{
|
|
year: "2021-04",
|
|
value: 5
|
|
},
|
|
{
|
|
year: "2021-05",
|
|
value: 8
|
|
},
|
|
{
|
|
year: "2021-06",
|
|
value: 4
|
|
},
|
|
{
|
|
year: "2021-07",
|
|
value: 6
|
|
},
|
|
{
|
|
year: "2021-08",
|
|
value: 9
|
|
},
|
|
{
|
|
year: "2021-09",
|
|
value: 4
|
|
},
|
|
{
|
|
year: "2021-10",
|
|
value: 8
|
|
},
|
|
{
|
|
year: "2021-11",
|
|
value: 6
|
|
},
|
|
{
|
|
year: "2021-12",
|
|
value: 3
|
|
}
|
|
],
|
|
}
|
|
|