resourceManage.ts 630 B

1234567891011121314151617181920212223242526272829303132
  1. export default [
  2. {
  3. url: '/api/resourceManage/list',
  4. method: 'get',
  5. response: {
  6. code: '00000',
  7. data: {
  8. list: [
  9. {
  10. id: 1,
  11. name: '光照数据',
  12. parameter: {
  13. exhaustPressure: '111',
  14. exhaustFlowRate: '222',
  15. power: '333',
  16. efficiency: '444',
  17. capacity: '555',
  18. price: '666'
  19. }
  20. },
  21. {
  22. id: 2,
  23. name: '风力数据',
  24. parameter: {}
  25. }
  26. ],
  27. total: 1
  28. },
  29. msg: '一切ok'
  30. }
  31. }
  32. ]