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