feat: 增加菜单【转会商列表】,【补充/续报列表】,【积分列表】
This commit is contained in:
36
src/api/HumanIntelligence/integralList.js
Normal file
36
src/api/HumanIntelligence/integralList.js
Normal file
@ -0,0 +1,36 @@
|
||||
import request from "@/utils/request";
|
||||
const api = "/mosty-api/mosty-gsxt";
|
||||
/**
|
||||
* 岗哨系统-信息采集积分(分页)
|
||||
* @param {Object} params - 查询参数
|
||||
* @param {string} [params.xm] - 姓名
|
||||
* @param {string} [params.sfzh] - 身份证号
|
||||
* @param {string} [params.jflx] - 积分类型:01-优秀信息员、02-优秀研判员
|
||||
* @param {string} [params.jflylx] - 积分来源类型:01-信息采集、02-肯定、03-转会商、04-转合成、05-转线索、06-建模型、07-战术研判、08-战略研判
|
||||
* @param {number} [params.pageCurrent] - 当前页码
|
||||
* @param {number} [params.pageSize] - 每页条数
|
||||
* @returns {Promise<Object>} 返回分页数据对象
|
||||
* @returns {Array} returns.records - 数据记录数组,每个记录包含以下字段:
|
||||
* @returns {string} [returns.records[].bz] - 备注
|
||||
* @returns {string} [returns.records[].hdsj] - 积分获得时间(日期时间格式)
|
||||
* @returns {string} [returns.records[].id] - 主键ID
|
||||
* @returns {number} [returns.records[].jf] - 积分(整数)
|
||||
* @returns {string} [returns.records[].jflx] - 积分类型:01-优秀信息员、02-优秀研判员
|
||||
* @returns {string} [returns.records[].jflylx] - 积分来源类型:04-采纳、05-退回、06-打标签、07-转合成、08-转线索、09-转会商
|
||||
* @returns {string} [returns.records[].sfzh] - 身份证号
|
||||
* @returns {string} [returns.records[].ssbm] - 所属部门
|
||||
* @returns {string} [returns.records[].ssbmdm] - 所属部门代码
|
||||
* @returns {string} [returns.records[].sssgaj] - 所属市公安局
|
||||
* @returns {string} [returns.records[].sssgajdm] - 所属市公安局代码
|
||||
* @returns {string} [returns.records[].ssxgaj] - 所属县公安局
|
||||
* @returns {string} [returns.records[].ssxgajdm] - 所属县公安局代码
|
||||
* @returns {string} [returns.records[].xm] - 姓名
|
||||
* @returns {number} returns.total - 总记录数
|
||||
*/
|
||||
export const mjjfSelectPage = (params) => {
|
||||
return request({
|
||||
url: api + "/xxcj/mjjf/selectPage",
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
};
|
||||
28
src/api/HumanIntelligence/supplementReportList.js
Normal file
28
src/api/HumanIntelligence/supplementReportList.js
Normal file
@ -0,0 +1,28 @@
|
||||
import request from "@/utils/request";
|
||||
const api = "/mosty-api/mosty-gsxt";
|
||||
/**
|
||||
* 补充/续报列表查询接口
|
||||
* @param {Object} params - 查询参数
|
||||
* @param {string} [params.bcrxm] - 补充人姓名(可选)
|
||||
* @param {string} [params.czlx] - 操作类型:01-续报、02-补充(可选)
|
||||
* @param {number} [params.pageCurrent] - 当前页码
|
||||
* @param {number} [params.pageSize] - 每页条数
|
||||
* @returns {Promise<Object>} 返回分页数据对象
|
||||
* @returns {Array} returns.records - 数据记录数组,每个记录包含以下字段:
|
||||
* @returns {string} [returns.records[].bcnr] - 补充内容
|
||||
* @returns {string} [returns.records[].bcrsfzh] - 补充人身份证号
|
||||
* @returns {string} [returns.records[].bcrxm] - 补充人姓名
|
||||
* @returns {string} [returns.records[].bcsj] - 补充时间(日期时间格式)
|
||||
* @returns {string} [returns.records[].czlx] - 操作类型:01-续报、02-补充
|
||||
* @returns {string} [returns.records[].id] - 主键ID
|
||||
* @returns {string} [returns.records[].qbid] - 线索情报ID
|
||||
* @returns {string} [returns.records[].ysnr] - 原始内容
|
||||
* @returns {number} returns.total - 总记录数
|
||||
*/
|
||||
export const zhsSelectPage = (params) => {
|
||||
return request({
|
||||
url: api + "/xxcj/bc/selectPage",
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
};
|
||||
35
src/api/HumanIntelligence/transferConsultationList.js
Normal file
35
src/api/HumanIntelligence/transferConsultationList.js
Normal file
@ -0,0 +1,35 @@
|
||||
import request from "@/utils/request";
|
||||
const api = "/mosty-api/mosty-gsxt";
|
||||
/**
|
||||
* 转会商列表查询接口
|
||||
* @param {Object} params - 查询参数
|
||||
* @param {string} [params.xsBh] - 信息编号
|
||||
* @param {string} [params.qbmc] - 情报名称
|
||||
* @param {string} [params.qbly] - 情报来源,参考字典 D_GS_XS_LY
|
||||
* @param {number} [params.pageCurrent] - 当前页码
|
||||
* @param {number} [params.pageSize] - 每页条数
|
||||
* @returns {Promise<Object>} 返回分页数据对象
|
||||
* @returns {Array} returns.records - 数据记录数组,每个记录包含以下字段:
|
||||
* @returns {string} [returns.records[].bz] - 备注
|
||||
* @returns {string} [returns.records[].hsid] - 会商ID
|
||||
* @returns {string} [returns.records[].id] - 主键ID
|
||||
* @returns {string} [returns.records[].qbid] - 线索情报ID
|
||||
* @returns {string} [returns.records[].qbly] - 情报来源,参考字典 D_GS_XS_LY
|
||||
* @returns {string} [returns.records[].qbmc] - 情报名称
|
||||
* @returns {string} [returns.records[].qbnr] - 情报内容
|
||||
* @returns {string} [returns.records[].ssbm] - 所属部门
|
||||
* @returns {string} [returns.records[].ssbmdm] - 所属部门代码
|
||||
* @returns {string} [returns.records[].sssgaj] - 所属市公安局
|
||||
* @returns {string} [returns.records[].sssgajdm] - 所属市公安局代码
|
||||
* @returns {string} [returns.records[].ssxgaj] - 所属县公安局
|
||||
* @returns {string} [returns.records[].ssxgajdm] - 所属县公安局代码
|
||||
* @returns {string} [returns.records[].xsBh] - 信息编号
|
||||
* @returns {number} returns.total - 总记录数
|
||||
*/
|
||||
export const zhsSelectPage = (params) => {
|
||||
return request({
|
||||
url: api + "/xxcj/zhs/selectPage",
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user