ali
2024-09-03 0ae83a895e80a4b9777a27f613d721a7e5e2ac18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/utils/request'
 
// 查询【请填写功能名称】列表
export function listEnergy(query) {
  return request({
    url: '/PlanEnergy/list',
    method: 'get',
    params: query
  })
}
// 新增【请填写功能名称】
export function addEnergy(data) {
  return request({
    url: '/PlanEnergy',
    method: 'post',
    data: data
  })
}