1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- let merchantProductList = [];
- merchantProductList = merchantProductList.concat(
- [{
- id: '387201987',
- name: '急用先学汉字',
- code: 'course-08-01',
- type: 0,
- status: 'NORMAL',
- merchantId: '87',
- merchantName: '贝尔安亲',
- 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,
- },{
- id: '9987654321',
- duration: 180,
- chargeUnit: '半年',
- cpPrice: 10000,
- merchantPrice: 20000,
- terminalPrice: 30000,
- }],
- },{
- id: '213456798',
- name: '急用先学汉字练习册',
- code: 'support-01-09',
- status: 'DEL',
- type: 1,
- merchantId: '88',
- merchantName: '好托管',
- goods: [{
- id: '9090908989',
- duration: null,
- chargeUnit: '件',
- cpPrice: 35.5,
- merchantPrice: 45.5,
- terminalPrice: 50,
- }]
- },{
- id: '452942539',
- name: '汉字书写练习',
- status: 'NORMAL',
- code: 'package-01-09',
- type: 2,
- merchantId: '89',
- merchantName: '昂乐',
- goods: [{
- id: '34893498',
- duration: 365,
- chargeUnit: '年',
- cpPrice: 2000,
- merchantPrice: 3000,
- terminalPrice: 5000,
- },{
- id: '78314988',
- duration: 180,
- chargeUnit: '半年',
- cpPrice: 1000,
- merchantPrice: 2000,
- terminalPrice: 3000,
- },{
- id: '42578097',
- duration: 30,
- chargeUnit: '月',
- cpPrice: 500,
- merchantPrice: 1000,
- terminalPrice: 2000,
- }]
- }]
- );
- module.exports = { merchantProductList };
|