param detail api

3.x
smallchill 3 years ago
parent 19e11af758
commit 4bb4e514e5
  1. 12
      src/api/system/param.js

@ -1,7 +1,5 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/blade-system/param/list',
@ -14,6 +12,16 @@ export const getList = (current, size, params) => {
})
}
export const getDetail = (id) => {
return request({
url: '/blade-system/param/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/blade-system/param/remove',

Loading…
Cancel
Save