1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| // 煤种信息
| import request from '@/utils/request'
|
| // /homePage/allInfo
| // 获取首页信息
| export function getCoalInfo(query) {
| return request({
| url: '/homePage/allInfo',
| method: 'get',
| params: query
| })
| }
|
| // /homePage/yearlySales
| // 获取年度销售信息
| export function getYearlySales(data) {
| return request({
| url: '/homePage/yearlySales',
| method: 'post',
| data: data
| })
| }
|
|