123456789101112131415 |
- "use strict";
- var common_request = require("../common/request.js");
- let request = new common_request.Request().http;
- function getDoctorArticleCateList(data) {
- return request("/app/doctorArticle/getDoctorArticleCateList", data, "GET");
- }
- function getDoctorArticleList(data) {
- return request("/app/doctorArticle/getDoctorArticleList", data, "GET");
- }
- function getDoctorArticleById(data) {
- return request("/app/doctorArticle/getDoctorArticleById", data, "GET");
- }
- exports.getDoctorArticleById = getDoctorArticleById;
- exports.getDoctorArticleCateList = getDoctorArticleCateList;
- exports.getDoctorArticleList = getDoctorArticleList;
|