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.
 
 
 
 
 

13 lines
490 B

import { createAPI } from '@/utils/httpRequest.js'
// 获取计量单位列表 - rqrq
export const getUmListPaging = (params) => createAPI('/srmUm/getUmListPaging', 'POST', params)
// 新增计量单位
export const saveUm = (params) => createAPI('/srmUm/saveUm', 'POST', params)
// 更新计量单位
export const updateUm = (params) => createAPI('/srmUm/updateUm', 'POST', params)
// 删除计量单位
export const deleteUm = (params) => createAPI('/srmUm/deleteUm', 'POST', params)