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.
20 lines
419 B
20 lines
419 B
import request from '@/utils/request'
|
|
|
|
// 获取菜单 分页列表
|
|
export function getList(data) {
|
|
return request({
|
|
url: '/v1/sysuserdefaultorg/getList',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
|
|
// 新增插件
|
|
export function saveOrUpdate(data) {
|
|
return request({
|
|
url: '/v1/sysuserdefaultorg/saveOrUpdate',
|
|
method: 'post',
|
|
data: data,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
}
|
|
|