| 12345678910111213141516171819202122232425262728293031323334 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- require("../../../config/globalData.js");
- const PatientRead = async (queryData) => {
- let resp = common_vendor.handle.promistHandle(
- await common_vendor.request.doPost(
- `${common_vendor.BASE_URL}wsgw/hcrm/GroupBusiness/PatientRead/callApiJSON.do`,
- queryData
- )
- );
- return common_vendor.handle.catchPromise(resp, () => resp);
- };
- const GetPatientGroupPlanDetailList = async (queryData) => {
- let resp = common_vendor.handle.promistHandle(
- await common_vendor.request.doPost(
- `${common_vendor.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientGroupPlanDetailList/callApiJSON.do`,
- queryData
- )
- );
- return common_vendor.handle.catchPromise(resp, () => resp);
- };
- const GetPatientGroupPlanDetail = async (queryData) => {
- let resp = common_vendor.handle.promistHandle(
- await common_vendor.request.doPost(
- `${common_vendor.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientGroupPlanDetail/callApiJSON.do`,
- queryData
- )
- );
- return common_vendor.handle.catchPromise(resp, () => resp);
- };
- exports.GetPatientGroupPlanDetail = GetPatientGroupPlanDetail;
- exports.GetPatientGroupPlanDetailList = GetPatientGroupPlanDetailList;
- exports.PatientRead = PatientRead;
- //# sourceMappingURL=../../../../.sourcemap/mp-weixin/pagesCrm/service/schemeDetail/index.js.map
|