50 lines
845 B
JavaScript
50 lines
845 B
JavaScript
import request from '@/axios';
|
|
|
|
export const getList = (current, size, params) => {
|
|
return request({
|
|
url: '/blade-system/tenant-package/list',
|
|
method: 'get',
|
|
params: {
|
|
...params,
|
|
current,
|
|
size,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const getDetail = id => {
|
|
return request({
|
|
url: '/blade-system/tenant-package/detail',
|
|
method: 'get',
|
|
params: {
|
|
id,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const remove = ids => {
|
|
return request({
|
|
url: '/blade-system/tenant-package/remove',
|
|
method: 'post',
|
|
params: {
|
|
ids,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const add = row => {
|
|
return request({
|
|
url: '/blade-system/tenant-package/submit',
|
|
method: 'post',
|
|
data: row,
|
|
});
|
|
};
|
|
|
|
export const update = row => {
|
|
return request({
|
|
url: '/blade-system/tenant-package/submit',
|
|
method: 'post',
|
|
data: row,
|
|
});
|
|
};
|