123456789101112131415161718192021222324252627 |
- let goodsList = [];
- let types = ['COURSE', 'SUPPORT', 'PACKAGE'];
- for(let i = 1; i < 500; i++) {
- goodsList.push({
- id: String(i),
- code: 'Goods-test-' + i,
- type: types[i % 3],
- merchantId: '87',
- goods: [{
- id: '39489198994523',
- duration: 12000,
- chargeUnit: '年',
- cpPrice: 1000.89,
- merchantPrice: 2000.11,
- terminalPrice: 3000.22,
- },{
- id: '43578294325898',
- duration: 258998,
- chargeUnit: '季',
- cpPrice: 45928,
- merchantPrice: 777665,
- terminalPrice: 987343,
- }],
- })
- }
- module.exports = { goodsList };
|