Commit bcb61ca6 authored by xinzhedeai's avatar xinzhedeai

李春良 - 台账

parent dddcc757
import request from '@/utils/request'
import qs from 'qs'
export function getLedger(params) {
return request({
url: '/data/taizhang/history',
method: 'get',
params
})
}
export function addLedger(data) {
return request({
url: '/data/taizhang',
method: 'post',
data
})
}
export function editLedger(data) {
return request({
url: '/data/taizhang',
method: 'put',
data
})
}
export function delLedger(data) {
return request({
url: '/data/taizhang',
method: 'delete',
data
})
}
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment