mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 19:06:45 +08:00
提交
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { data } from "jquery";
|
||||
import http from "./configPublic";
|
||||
|
||||
//认证审批项目列表
|
||||
export const getexamineList = (data) => {
|
||||
return http({
|
||||
@@ -129,3 +130,28 @@ export const getDataById = (data) => http.post('/activityApi/teacher/getDataById
|
||||
export const getCertificationProcess = (data) => http.post('/activityApi/teacher/getCertificationProcess',data)
|
||||
//编辑认证
|
||||
export const updateExamine = (data) => http.post('/activityApi/examine/updateExamine',data)
|
||||
|
||||
//权限列表
|
||||
export const removePermission = (data)=>{
|
||||
return http({
|
||||
url:'/activityApi/permission/list',
|
||||
method: "post",
|
||||
data:data
|
||||
})
|
||||
}
|
||||
//转移归属权
|
||||
export const transferPermission =(data)=>{
|
||||
return http({
|
||||
url:'/activityApi/permission/transferPermission',
|
||||
method: "post",
|
||||
data:data
|
||||
})
|
||||
}
|
||||
//添加权限
|
||||
export const addPermission = (data)=>{
|
||||
return http({
|
||||
url:'/activityApi/permission/addPermission',
|
||||
method: "post",
|
||||
data:data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user