You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
685 B
21 lines
685 B
import axios from '@/axios/index'
|
|
// 获取列表
|
|
export function crmInventoryMoveHisIndex(data) {
|
|
return axios.posts('/api/basedata/inventory-move-his/list',data)
|
|
}
|
|
// 创建
|
|
export function crmInventoryMoveHisSave(data) {
|
|
return axios.posts('/api/basedata/inventory-move-his',data)
|
|
}
|
|
// 根据id获取
|
|
export function crmInventoryMoveHisRead(id) {
|
|
return axios.gets('/api/basedata/inventory-move-his/'+id)
|
|
}
|
|
// 根据id修改
|
|
export function crmInventoryMoveHisUpdate(id,data) {
|
|
return axios.puts('/api/basedata/inventory-move-his/'+id,data)
|
|
}
|
|
// 删除
|
|
export function crmInventoryMoveHisDelete(data) {
|
|
return axios.posts('/api/basedata/inventory-move-his/delete',data)
|
|
}
|
|
|