You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

resources.js 379 B

1234567891011121314151617181920
  1. import service from '../service';
  2. // 查看资源池(队列)
  3. export const getQueueList = (params) => {
  4. return service({
  5. url: '/admin/resources/queue',
  6. method: 'get',
  7. params,
  8. });
  9. }
  10. // 编辑资源池(队列)
  11. export const setQueueList = (data) => {
  12. return service({
  13. url: '/reward/point/account',
  14. method: 'get',
  15. params: {},
  16. data,
  17. });
  18. }