You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import axios from 'axios';
|
|
|
|
let { proxyUrl, msgUrl } = require('@/config/setting');
|
|
|
|
|
|
|
|
const tcm = `${proxyUrl}/tcm`;
|
|
|
|
const patient = `${tcm}/patient`; // 患者相关接口
|
|
|
|
|
|
|
|
// 保存患者病例信息
|
|
|
|
export const saveCaseMes = params => axios.post(`${patient}/saveCaseMes`, params);
|
|
|
|
|
|
|
|
// 添加患者基本信息
|
|
|
|
export const savePatientMes = params => axios.post(`${patient}/savePatientMes`, params);
|
|
|
|
|
|
|
|
// 查询患者基本信息
|
|
|
|
export const selPatientMes = params => axios.post(`${patient}/selPatientMes`, params);
|
|
|
|
|
|
|
|
// 通过搜索条件查询患者病例的信息
|
|
|
|
export const selPatientMesList = params => axios.post(`${patient}/selPatientMesList`, params);
|
|
|
|
|
|
|
|
// 通过查询搜索条件
|
|
|
|
export const selSearchCriteriaList = params => axios.post(`${patient}/selSearchCriteriaList`, params);
|