mproduct.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. let merchantProductList = [];
  2. merchantProductList = merchantProductList.concat(
  3. [{
  4. id: '387201987',
  5. name: '急用先学汉字',
  6. code: 'course-08-01',
  7. type: 0,
  8. status: 'NORMAL',
  9. merchantId: '87',
  10. merchantName: '贝尔安亲',
  11. goods: [{
  12. id: '39489198994523',
  13. duration: 12000,
  14. chargeUnit: '年',
  15. cpPrice: 1000.89,
  16. merchantPrice: 2000.11,
  17. terminalPrice: 3000.22,
  18. },{
  19. id: '43578294325898',
  20. duration: 258998,
  21. chargeUnit: '季',
  22. cpPrice: 45928,
  23. merchantPrice: 777665,
  24. terminalPrice: 987343,
  25. },{
  26. id: '9987654321',
  27. duration: 180,
  28. chargeUnit: '半年',
  29. cpPrice: 10000,
  30. merchantPrice: 20000,
  31. terminalPrice: 30000,
  32. }],
  33. },{
  34. id: '213456798',
  35. name: '急用先学汉字练习册',
  36. code: 'support-01-09',
  37. status: 'DEL',
  38. type: 1,
  39. merchantId: '88',
  40. merchantName: '好托管',
  41. goods: [{
  42. id: '9090908989',
  43. duration: null,
  44. chargeUnit: '件',
  45. cpPrice: 35.5,
  46. merchantPrice: 45.5,
  47. terminalPrice: 50,
  48. }]
  49. },{
  50. id: '452942539',
  51. name: '汉字书写练习',
  52. status: 'NORMAL',
  53. code: 'package-01-09',
  54. type: 2,
  55. merchantId: '89',
  56. merchantName: '昂乐',
  57. goods: [{
  58. id: '34893498',
  59. duration: 365,
  60. chargeUnit: '年',
  61. cpPrice: 2000,
  62. merchantPrice: 3000,
  63. terminalPrice: 5000,
  64. },{
  65. id: '78314988',
  66. duration: 180,
  67. chargeUnit: '半年',
  68. cpPrice: 1000,
  69. merchantPrice: 2000,
  70. terminalPrice: 3000,
  71. },{
  72. id: '42578097',
  73. duration: 30,
  74. chargeUnit: '月',
  75. cpPrice: 500,
  76. merchantPrice: 1000,
  77. terminalPrice: 2000,
  78. }]
  79. }]
  80. );
  81. module.exports = { merchantProductList };