This commit is contained in:
‘937886381’
2024-04-28 11:04:33 +08:00
parent 5721816782
commit 1b8f2522c1
11 changed files with 752 additions and 184 deletions

32
src/api/greenest/index.js Normal file
View File

@@ -0,0 +1,32 @@
/*
* @Author: zhp
* @Date: 2024-04-26 14:53:45
* @LastEditTime: 2024-04-26 15:09:10
* @LastEditors: zhp
* @Description:
*/
import request from '@/utils/request'
// 查询部门列表
export function getOrderList(data) {
return request({
url: 'ip/prod-order/prodOrderList',
method: 'post',
data: data
})
}
export function getEpPage(data) {
return request({
url: 'ip/environment-protection/environmentPage',
method: 'post',
data: data
})
}
export function getCostList(data) {
return request({
url: 'ip/cost/costList',
method: 'post',
data: data
})
}