123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- 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<any>(
- {
- method: 'post',
- url: homeUrl,
- data: { val }
- })
- }
- //获取量表信息
- export const getScaleApi = (val: string) => {
- return http<any>(
- {
- method: 'get',
- url: `${getSacleUrl}?flag=${val}`
- })
- }
- //保存量表信息
- //获取量表信息
- export const saveScaleApi = (val: any) => {
- return http<any>(
- {
- method: 'post',
- url: saveSacleUrl,
- data: { ...val }
- })
- }
- //使用gonogoApi
- export const saveGoNoGoApi = (val: any) => {
- return http<any>(
- {
- method: 'post',
- url: saveGoNoGoUrl,
- data: { ...val }
- })
- }
- //使用点探测Api
- export const saveFaceDotApi = (val: any) => {
- return http<any>(
- {
- method: 'post',
- url: saveFaceDotUrl,
- data: { ...val }
- })
- }
- //查询已完成的测试计划
- export const getDataApi = (val: any) => {
- return http<any>(
- {
- method: 'get',
- url: `${getDataUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}&userNo=${val.userNo}`,
- })
- }
- //查询报告信息
- export const queryReportApi = (val: any) => {
- return http<any>(
- {
- method: 'get',
- url: `${queryReportUrl}?planId=${val.planId}&flag=${val.flag}`,
- })
- }
- //发布留言
- export const pubMsgApi = (val: any) => {
- return http<any>(
- {
- method: 'post',
- url: pubMsgUrl,
- data: { ...val }
- })
- }
- //发布子留言
- export const subPubMsgApi = (val: any) => {
- return http<any>(
- {
- method: 'post',
- url: pubMsgUrl,
- data: { ...val }
- })
- }
- //分页查询留言
- export const queryMsgApi = (val: any) => {
- return http<any>(
- {
- method: 'get',
- url: `${queryMsgUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}`,
- })
- }
- //分页查询留言--zliyan
- export const queryMsgApi1 = (val: any) => {
- return http<any>(
- {
- method: 'get',
- url: `${queryMsgUrl}?pageNum=${val.pageNum}&pageSize=${val.pageSize}&parentId=${val.parentId}`,
- })
- }
- //根据flag查询 量表详细信息
- export const queryScaleDetailApi = (val: string) => {
- return http<any>({
- method: 'get',
- url: `${queryScaleDetailUrl}?flag=${val}`
- })
- }
- //根据flag查询 认知任务详细信息
- export const queryCognizeDetailApi = (val: string) => {
- return http<any>({
- method: 'get',
- url: `${queryCognizeDetailUrl}?flag=${val}`
- })
- }
|