初始化
This commit is contained in:
10
src/api/projectmanagement/lixiangyusuan.js
Normal file
10
src/api/projectmanagement/lixiangyusuan.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import { get, post, put, del } from '@/api/request'
|
||||
|
||||
//列表
|
||||
export const list = data => post('/api/ProjectBudget/list', data)
|
||||
//详情
|
||||
export const Details = id => get(`/api/ProjectBudget/details?id=${id}`)
|
||||
//新增
|
||||
export const save = data => post('/api/ProjectBudget/save', data)
|
||||
//删除
|
||||
export const deletes = id => del(`/api/ProjectBudget/delete`, { id: id })
|
||||
Reference in New Issue
Block a user