|
|
|
|
@ -72,6 +72,16 @@ export async function getPageList(param, controller) {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取日志分页
|
|
|
|
|
export async function getLogPageList(param, controller) {
|
|
|
|
|
param = param || { FPageIndex: 1, FPageSize: 10 };
|
|
|
|
|
let result = {};
|
|
|
|
|
await http.post('/api/' + controller + '/GetPageListByParams', param).then((data) => {
|
|
|
|
|
result = data;
|
|
|
|
|
});
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function GetFormulaPageList(param, controller) {
|
|
|
|
|
param = param || { FPageIndex: 1, FPageSize: 10 };
|
|
|
|
|
let result = {};
|
|
|
|
|
|