feat: 增加授权模型统一查询功能,视图使授权模型查询

This commit is contained in:
wangjiahao
2021-11-24 18:14:41 +08:00
parent 9e87a08a5b
commit c15c58f63d
16 changed files with 892 additions and 412 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
export function queryAuthModel(data) {
return request({
url: 'authModel/queryAuthModel',
method: 'post',
loading: true,
data
})
}