展品维保小程序前端代码接口
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.

24 lines
572 B

2 weeks 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. debounce: 300
  11. })
  12. },
  13. // 首页- 积分排行榜复制接口复制文档复制地址
  14. // POST
  15. // / community - admin / community / score / queryScoreRank
  16. async queryScoreRank(data) {
  17. return http({
  18. url: '/score/queryScoreRank',
  19. method: 'POST',
  20. data,
  21. noToken: true
  22. })
  23. }
  24. }