zhouwx
2024-06-27 ae43feac8c6b2372f5a061ead68e71027e8877e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
import request from '@/utils/request'
 
export function listPlat(query) {
  return request({
    url: '/th/institutional/manager/list/page',
    method: 'get',
    params: query
  })
}
 
export function listPlatSelect() {
  return request({
    url: '/th/institutional/manager/select',
    method: 'get'
  })
}
 
// 新增角色
export function addPlat(data) {
  return request({
    url: '/th/institutional/manager/add',
    method: 'post',
    data: data
  })
}
 
// 修改角色
export function updatePlat(data) {
  return request({
    url: '/th/institutional/manager/mod',
    method: 'post',
    data: data
  })
}
 
// 删除角色
export function delPlat(id) {
  return request({
    url: '/th/institutional/manager/del/' + id,
    method: 'delete'
  })
}