| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { REQUEST_CONFIG } from '@/config';
- import { request, handle } from '@kasite/uni-app-base';
- /**
- * 获取患者ID 通过加密串
- * @param EncryptData String 加密串
- */
- export const GetMemberIdByEncryptData = async (queryData: any) => {
- let resp = handle.promistHandleNew(
- await request.doPost(
- `${REQUEST_CONFIG.BASE_URL}wsgw/crm/diyBusiness/GetMemberIdByEncryptData/callApiJSON.do`,
- queryData
- )
- );
- return handle.catchPromiseNew(resp, () => resp);
- };
- /**
- * 查询患者执行计划科室列表
- * @param MemberId String 患者ID
- */
- export const GetPatientExecPlanDeptList = async (queryData: any) => {
- let resp = handle.promistHandle(
- await request.doPost(
- `${REQUEST_CONFIG.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientExecPlanDeptList/callApiJSON.do`,
- queryData
- )
- );
- return handle.catchPromise(resp, () => resp);
- };
- /**
- * 查询患者组内执行计划列表
- * @param MemberId String 患者ID(多个id用英文,隔开)
- * @param DeptId String 科室ID
- */
- export const GetPatientExecPlanList = async (queryData: any) => {
- let resp = handle.promistHandle(
- await request.doPost(
- `${REQUEST_CONFIG.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientExecPlanList/callApiJSON.do`,
- queryData
- )
- );
- return handle.catchPromise(resp, () => resp);
- };
|