This commit is contained in:
A1300399510
2024-01-05 18:20:39 +08:00
parent 8fac6121c2
commit bb91a032e9
75 changed files with 2121 additions and 1204 deletions

View File

@@ -92,3 +92,23 @@ export const commentReportHttp = query => {
return Http.post("/api/operate/report", query)
}
// 数据操作 - 获取投币配置,我的寄托币数量
export const coinHttp = query => {
return Http.post("/api/operate/coin", query)
}
// 数据操作 - 投币
export const coinsubmitHttp = query => {
return Http.post("/api/operate/coinsubmit", query)
}
// 数据操作 - 投币排行榜
export const coinrankingHttp = query => {
return Http.post("/api/operate/coinranking", query)
}
// 数据操作 - 转发分享统计
export const shareHttp = query => {
return Http.post("/api/operate/share", query)
}