木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
551 B

1 month ago
1 month ago
1 month ago
  1. // import request from "@/api/request";
  2. import http from "@/api/http";
  3. export default {
  4. // 可用积分- 获取积分明细列表
  5. async queryScoreList(data) {
  6. return http({
  7. url: '/score/queryScoreList',
  8. method: 'POST',
  9. data
  10. })
  11. },
  12. // 首页- 积分排行榜复制接口复制文档复制地址
  13. // POST
  14. // / community - admin / community / score / queryScoreRank
  15. async queryScoreRank(data) {
  16. return http({
  17. url: '/score/queryScoreRank',
  18. method: 'POST',
  19. data,
  20. noToken: true
  21. })
  22. }
  23. }