import { http } from '@/utils/http' const homeUrl = '' const getSacleUrl = '/scale/findScaleByFlag' const saveSacleUrl = '/record/saveScaleRecord' //保存gonogo路径 const saveGoNoGoUrl = '/record/saveSuppressionRecord' const saveFaceDotUrl = '/record/saveEmotionRecord' const getDataUrl = '/plan/findCompletePlanByUser' //获取报告内容 const queryReportUrl = '/userBriefing/findByFlag' //新增留言API const pubMsgUrl = '/comment/addComment' //分页查询留言 const queryMsgUrl = '/comment/findAllByPage' //查询量表详情 const queryScaleDetailUrl = '/subject/findByFlag' //查询认知任务详情 const queryCognizeDetailUrl = '/cognitive/findByFlag' //首页API export const homeApi = (val: any) => { return http( { method: 'post', url: homeUrl, data: { val } }) } //获取量表信息 export const getScaleApi = (val: string) => { return http( { method: 'get', url: `${getSacleUrl}?flag=${val}` }) } //保存量表信息 //获取量表信息 export const saveScaleApi = (val: any) => { return http( { method: 'post', url: saveSacleUrl, data: { ...val } }) } //使用gonogoApi export const saveGoNoGoApi = (val: any) => { return http( { method: 'post', url: saveGoNoGoUrl, data: { ...val } }) } //使用点探测Api export const saveFaceDotApi = (val: any) => { return http( { method: 'post', url: saveFaceDotUrl, data: { ...val } }) } //查询已完成的测试计划 export const getDataApi = (val: any) => { return http( { method: 'get', url: `${getDataUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}&userNo=${val.userNo}`, }) } //查询报告信息 export const queryReportApi = (val: any) => { return http( { method: 'get', url: `${queryReportUrl}?planId=${val.planId}&flag=${val.flag}`, }) } //发布留言 export const pubMsgApi = (val: any) => { return http( { method: 'post', url: pubMsgUrl, data: { ...val } }) } //发布子留言 export const subPubMsgApi = (val: any) => { return http( { method: 'post', url: pubMsgUrl, data: { ...val } }) } //分页查询留言 export const queryMsgApi = (val: any) => { return http( { method: 'get', url: `${queryMsgUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}`, }) } //分页查询留言--zliyan export const queryMsgApi1 = (val: any) => { return http( { method: 'get', url: `${queryMsgUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}&parentId=${val.parentId}`, }) } //根据flag查询 量表详细信息 export const queryScaleDetailApi = (val: string) => { return http({ method: 'get', url: `${queryScaleDetailUrl}?flag=${val}` }) } //根据flag查询 认知任务详细信息 export const queryCognizeDetailApi = (val: string) => { return http({ method: 'get', url: `${queryCognizeDetailUrl}?flag=${val}` }) }