13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
import { getAction, postAction } from './manage.js'
|
|
|
|
// 属性标识管理-新增
|
|
const addLabel = (params) => postAction('/laws/lawsLabelDatabase/add', params)
|
|
|
|
// 属性标识管理-编辑
|
|
const editLabel = (params) => postAction('/laws/lawsLabelDatabase/edit', params)
|
|
|
|
export {
|
|
addLabel,
|
|
editLabel,
|
|
}
|