goods.js 597 B

123456789101112131415161718192021222324252627
  1. let goodsList = [];
  2. let types = ['COURSE', 'SUPPORT', 'PACKAGE'];
  3. for(let i = 1; i < 500; i++) {
  4. goodsList.push({
  5. id: String(i),
  6. code: 'Goods-test-' + i,
  7. type: types[i % 3],
  8. merchantId: '87',
  9. goods: [{
  10. id: '39489198994523',
  11. duration: 12000,
  12. chargeUnit: '年',
  13. cpPrice: 1000.89,
  14. merchantPrice: 2000.11,
  15. terminalPrice: 3000.22,
  16. },{
  17. id: '43578294325898',
  18. duration: 258998,
  19. chargeUnit: '季',
  20. cpPrice: 45928,
  21. merchantPrice: 777665,
  22. terminalPrice: 987343,
  23. }],
  24. })
  25. }
  26. module.exports = { goodsList };