123456789101112131415 |
- let comboList = [];
- const statuses = ['NORMAL', 'DEL'];
- for(let i = 1; i < 300; i++) {
- comboList.push({
- id: String(i),
- code: 'combo-test-' + i,
- name: '课程包-' + i,
- productList: null,
- status: statuses[i % 2],
- gmtCreated: 1512981450000,
- gmtModified: 1512981450000,
- });
- }
- module.exports = { comboList };
|