This commit is contained in:
zoujiandong
2025-07-16 17:16:16 +08:00
parent 9a45c7aa03
commit b09524e012
6 changed files with 19 additions and 19 deletions
+5 -5
View File
@@ -17,10 +17,10 @@ const api = {
return utils_request.request("/clinical/stats", data, "get", true);
},
getArticleDetail(id) {
return utils_request.request("/clinical/article/" + id, {}, "get", false);
return utils_request.request("/clinical/article/" + id, {}, "get", true);
},
getVideoDetail(id) {
return utils_request.request("/clinical/video/" + id, {}, "get", false);
return utils_request.request("/clinical/video/" + id, {}, "get", true);
},
collectArticle(id) {
return utils_request.request("/clinical/article/collect/" + id, {}, "post", false);
@@ -101,7 +101,7 @@ const api = {
return utils_request.request("/exchange/list", data, "post", true, "application/json");
},
getExchangeDetail(id) {
return utils_request.request("/exchange/" + id, {}, "get", false);
return utils_request.request("/exchange/" + id, {}, "get", true);
},
getExchangeVote(id) {
return utils_request.request("/exchange/vote/" + id, {}, "get", false);
@@ -137,7 +137,7 @@ const api = {
return utils_request.request("/exchange/draft/search", data, "post", false, "application/json");
},
saveDraft(data) {
return utils_request.request("/exchange/draft", data, "post", false, "application/json");
return utils_request.request("/exchange/draft", data, "post", true, "application/json");
},
delDraft(id) {
return utils_request.request("/exchange/draft/" + id, {}, "delete", false);
@@ -176,7 +176,7 @@ const api = {
return utils_request.request("/reward", data, "post", true);
},
h5Login(data) {
return utils_request.request("/login/hcp", data, "post");
return utils_request.request("/login/hcp", data, "post", true);
},
readRecord(data) {
return utils_request.request("/user/case/read", data, "post", false, "application/json");
+3 -3
View File
@@ -466,13 +466,13 @@
.box .info.data-v-eca06f3c {
display: flex;
align-items: center;
padding: 0 12rpx;
padding: 0 30rpx;
font-size: 28rpx;
color: #4b5563;
line-height: 38rpx;
line-height: 28rpx;
}
.box .info.data-v-eca06f3c .u-image {
margin-top: 10rpx;
margin-top: 8rpx;
}
.box .info .name.data-v-eca06f3c {
margin-left: 15rpx;
+1 -1
View File
@@ -71,7 +71,7 @@ const _sfc_main = {
});
const getCaseLabel = (lev, pid = 0) => {
api_api.api.getCaseLabel({
pid
pId: pid
}).then((res) => {
if (lev == 1) {
labelObj.list1 = res.data.data;