goods.ts 679 B

123456789101112131415161718192021222324252627282930313233
  1. const goods = {
  2. url: '/goods',
  3. type: 'get',
  4. response: {
  5. code: 200,
  6. msg: 'success',
  7. total: 0,
  8. data: [
  9. {
  10. id: 1000,
  11. goodsName: '黄金',
  12. goodsCode: 'CFN001',
  13. lastPrice: 100,
  14. },
  15. {
  16. id: 1001,
  17. goodsName: '昆特牌',
  18. goodsCode: 'CFN002',
  19. lastPrice: 200,
  20. },
  21. {
  22. id: 1002,
  23. goodsName: '大豆',
  24. goodsCode: 'CFN003',
  25. lastPrice: 300,
  26. },
  27. ]
  28. }
  29. }
  30. export default [
  31. goods,
  32. ]