index.js 997 B

123456789101112131415161718192021222324
  1. "use strict";
  2. const common_vendor = require("../../../common/vendor.js");
  3. require("../../../config/globalData.js");
  4. const GetPatientExecPlanDeptList = async (queryData) => {
  5. let resp = common_vendor.handle.promistHandle(
  6. await common_vendor.request.doPost(
  7. `${common_vendor.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientExecPlanDeptList/callApiJSON.do`,
  8. queryData
  9. )
  10. );
  11. return common_vendor.handle.catchPromise(resp, () => resp);
  12. };
  13. const GetPatientExecPlanList = async (queryData) => {
  14. let resp = common_vendor.handle.promistHandle(
  15. await common_vendor.request.doPost(
  16. `${common_vendor.BASE_URL}wsgw/hcrm/GroupBusiness/GetPatientExecPlanList/callApiJSON.do`,
  17. queryData
  18. )
  19. );
  20. return common_vendor.handle.catchPromise(resp, () => resp);
  21. };
  22. exports.GetPatientExecPlanDeptList = GetPatientExecPlanDeptList;
  23. exports.GetPatientExecPlanList = GetPatientExecPlanList;
  24. //# sourceMappingURL=../../../../.sourcemap/mp-weixin/pagesCrm/service/home/index.js.map