修改了医院处理的问题

This commit is contained in:
2025-08-12 11:17:37 +08:00
parent 1b50770874
commit 8f0a66338b
13 changed files with 1511 additions and 2 deletions
@@ -0,0 +1,48 @@
/**
* 用户评论-临床病例-文章 api 封装
*
* @Author: xing
* @Date: 2025-08-12 09:11:31
* @Copyright gdxz
*/
import { postRequest, getRequest } from '/@/lib/axios';
export const userCommentClinicalArticleApi = {
/**
* 分页查询 @author xing
*/
queryPage : (param) => {
return postRequest('/userCommentClinicalArticle/queryPage', param);
},
/**
* 增加 @author xing
*/
add: (param) => {
return postRequest('/userCommentClinicalArticle/add', param);
},
/**
* 修改 @author xing
*/
update: (param) => {
return postRequest('/userCommentClinicalArticle/update', param);
},
/**
* 删除 @author xing
*/
delete: (id) => {
return getRequest(`/userCommentClinicalArticle/delete/${id}`);
},
/**
* 批量删除 @author xing
*/
batchDelete: (idList) => {
return postRequest('/userCommentClinicalArticle/batchDelete', idList);
},
};
@@ -0,0 +1,48 @@
/**
* 用户评论-临床病例-视频 api 封装
*
* @Author: xing
* @Date: 2025-08-12 09:12:42
* @Copyright gdxz
*/
import { postRequest, getRequest } from '/@/lib/axios';
export const userCommentClinicalVideoApi = {
/**
* 分页查询 @author xing
*/
queryPage : (param) => {
return postRequest('/userCommentClinicalVideo/queryPage', param);
},
/**
* 增加 @author xing
*/
add: (param) => {
return postRequest('/userCommentClinicalVideo/add', param);
},
/**
* 修改 @author xing
*/
update: (param) => {
return postRequest('/userCommentClinicalVideo/update', param);
},
/**
* 删除 @author xing
*/
delete: (id) => {
return getRequest(`/userCommentClinicalVideo/delete/${id}`);
},
/**
* 批量删除 @author xing
*/
batchDelete: (idList) => {
return postRequest('/userCommentClinicalVideo/batchDelete', idList);
},
};
@@ -0,0 +1,48 @@
/**
* 用户评论-病例交流 api 封装
*
* @Author: xing
* @Date: 2025-08-12 09:13:30
* @Copyright gdxz
*/
import { postRequest, getRequest } from '/@/lib/axios';
export const userCommentExchangeApi = {
/**
* 分页查询 @author xing
*/
queryPage : (param) => {
return postRequest('/userCommentExchange/queryPage', param);
},
/**
* 增加 @author xing
*/
add: (param) => {
return postRequest('/userCommentExchange/add', param);
},
/**
* 修改 @author xing
*/
update: (param) => {
return postRequest('/userCommentExchange/update', param);
},
/**
* 删除 @author xing
*/
delete: (id) => {
return getRequest(`/userCommentExchange/delete/${id}`);
},
/**
* 批量删除 @author xing
*/
batchDelete: (idList) => {
return postRequest('/userCommentExchange/batchDelete', idList);
},
};