123456789101112131415161718192021222324252627 |
- "use strict";
- var common_request = require("../common/request.js");
- let request = new common_request.Request().http;
- function getCitys(data) {
- return request("/app/common/getCitys", data, "GET");
- }
- function getTlsSig(data) {
- return request("/app/common/getTlsSig", data, "GET");
- }
- function getDictByKey(data) {
- return request("/app/common/getDictByKey", data, "GET");
- }
- function getConfigByKey(data) {
- return request("/app/common/getConfigByKey", data, "GET");
- }
- function getHospitalList(data) {
- return request("/app/common/getHospitalList", data, "GET");
- }
- function getDepartmentList(data) {
- return request("/app/common/getDepartmentList", data, "GET");
- }
- exports.getCitys = getCitys;
- exports.getConfigByKey = getConfigByKey;
- exports.getDepartmentList = getDepartmentList;
- exports.getDictByKey = getDictByKey;
- exports.getHospitalList = getHospitalList;
- exports.getTlsSig = getTlsSig;
|