You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
![]()
2 years ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// 获取菜单 分页列表
|
||
|
export function getList(data) {
|
||
|
return request({
|
||
|
url: '/portal/v1/sysuserdefaultorg/getList',
|
||
|
method: 'get',
|
||
|
params: data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 新增插件
|
||
|
export function saveOrUpdate(data) {
|
||
|
return request({
|
||
|
url: '/portal/v1/sysuserdefaultorg/saveOrUpdate',
|
||
|
method: 'post',
|
||
|
data: data,
|
||
|
headers: { 'Content-Type': 'application/json' }
|
||
|
})
|
||
|
}
|