/** * 消息模块 */ import {httpGet,httpPost} from "@/utils/request.js" /** * 消息统计(首页数据展示) */ export const apiMessageCount=()=>{ return httpGet('/message/summaryMessageList',{}) } /** * 消息列表 * @param {int} SourceType 消息类型(1:客户,2:合同,3:用印) * @param {int} CurrentIndex 当前页码 * @param {int} pageSize 每页数量 */ export const apiMessageList=params=>{ return httpGet('/message/list',{...params,pageSize:20}) }