feat: 增加规则管理页面

- 规则管理包括类型筛选 、功能按钮、列表界面
This commit is contained in:
Huangzhe
2025-04-10 11:47:45 +08:00
parent 42763161a9
commit d6a95c7204
2 changed files with 125 additions and 5 deletions

View File

@@ -8,4 +8,16 @@ export function getDocByPage(data){
method: 'post',
data
})
}
/**
* 获取规则列表
* @param {Object} data - 查询参数 默认为空对象
*/
export function getRuleList(data={}){
return request({
url: getUrl('/docManage/extractRule/list'),
method: 'post',
data
})
}