combo.js 338 B

123456789101112131415
  1. let comboList = [];
  2. const statuses = ['NORMAL', 'DEL'];
  3. for(let i = 1; i < 300; i++) {
  4. comboList.push({
  5. id: String(i),
  6. code: 'combo-test-' + i,
  7. name: '课程包-' + i,
  8. productList: null,
  9. status: statuses[i % 2],
  10. gmtCreated: 1512981450000,
  11. gmtModified: 1512981450000,
  12. });
  13. }
  14. module.exports = { comboList };