10 lines
422 B
TypeScript
10 lines
422 B
TypeScript
import { get, post } from '/@/views/mobile/api/api';
|
|
|
|
const prefix: string = import.meta.env.VITE_GLOB_APP_PREFIX || '';
|
|
|
|
export const getHomeListApi = (params: any) => get(`${prefix}/cancer/signal/app/index`, params);
|
|
|
|
export const getSignalApi = (params: any) => get(`${prefix}/cancer/signal/app/getSurvey`, params);
|
|
|
|
export const postSignalApi = (params: any) => post(`${prefix}/cancer/signal/app/postSurvey`, params);
|