This commit is contained in:
给我
2026-04-10 17:10:36 +08:00
parent 368ed7897b
commit ef83eeb5fe
767 changed files with 167713 additions and 0 deletions

40
src/api/zfjl.js Normal file
View File

@ -0,0 +1,40 @@
import {
service
} from '../utils/request';
//获取人员数据
export function getRyListData(params = {}) {
return service({
url: '/mosty-gxother/trsZfry/getRyPage',
method: 'get',
params,
});
};
//获取走访记录数据
export function getZfjuData(params = {}) {
return service({
url: '/mosty-gxother/trsZfjl/getJlPage',
method: 'get',
params,
});
};
//获取走访记录统计
export function getZfjuTotal(params = {}) {
return service({
url: '/mosty-gxother/trsZfjl/getStatistics',
method: 'get',
params,
});
};
//获取走访记录详情
export function getZfjlDetail(id) {
return service({
url: `/mosty-gxother/trsZfjl/getInfo/${id}`,
method: 'get',
});
};