8 lines
335 B
TypeScript
8 lines
335 B
TypeScript
import { get, post } from '/@/views/mobile/api/api';
|
|
|
|
const prefix: string = import.meta.env.VITE_GLOB_APP_PREFIX || '';
|
|
|
|
export const questionListApi = (params) => get(`${prefix}/rest/health-survey/trace/questionnaire`, params);
|
|
|
|
export const submitQuestionApi = (params) => post(`${prefix}/rest/health-survey/trace/submit`, params);
|