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.
29 lines
666 B
29 lines
666 B
import axios from '@/utils/request';
|
|
|
|
/**
|
|
* 分页查询操作日志
|
|
* @param params 查询条件
|
|
*/
|
|
export async function pageOperationRecords(params) {
|
|
const res = await axios.get('/system/operation-record/page', {
|
|
params
|
|
});
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询操作日志列表
|
|
* @param params 查询条件
|
|
*/
|
|
export async function listOperationRecords(params) {
|
|
const res = await axios.get('/system/operation-record', {
|
|
params
|
|
});
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|