feat: 增加菜单【转会商列表】,【补充/续报列表】,【积分列表】
This commit is contained in:
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