属性标识管理

This commit is contained in:
Xia Zekun
2024-03-15 14:50:16 +08:00
committed by fengchenchen
parent 1661fdf419
commit edc717779f
5 changed files with 513 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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,
}