12345678910111213141516171819202122232425262728293031323334353637 |
- import request from "@/utils/request";
- /**
- * 获取文章内容
- *
- */
- export function getArticle(parameter) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_APP}/app/healthy/article/info/info`,
- method: "post",
- data: parameter
- });
- }
- /**
- * 患者行为
- *
- */
- export function behaviorAdd(parameter) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_APP}/app/healthy/patient/behavior/add`,
- method: "post",
- data: parameter
- });
- }
- /**
- * 发送原因
- *
- */
- export function remindDetails(parameter) {
- return request({
- url: `${window.GLOBAL_CONFIG.API_APP}/sys/healthy/patient/pushService/remind/detail`,
- method: "post",
- data: parameter
- });
- }
|