support.js 811 B

123456789101112131415161718192021
  1. let supportList = [];
  2. const statuses = ['NORMAL', 'DEL'];
  3. for (let i = 1; i < 500; i++) {
  4. supportList.push({
  5. id: String(i * 3),
  6. code: 'support-code-' + i,
  7. name: '小学语文二年级上册练习册' + i,
  8. title: '小学语文二年级上册练习册' + i,
  9. digest: '这段是周边描述,很长很长很长很长很长很长很长很长很长很长很长很长...',
  10. detail: '这段是周边详情,这个周边是小学语文练习册,有很多很多很多很多很多很多很多很多的题目...',
  11. imgList: ['http://efunimgs.oss-cn-beijing.aliyuncs.com/resources/J/02/01/612102.jpg'],
  12. aboutList: null,
  13. cpId: null,
  14. cpName: null,
  15. status: statuses[i % 2],
  16. gmtCreated: 1512981450000,
  17. gmtModified: 1512981450000,
  18. })
  19. }
  20. module.exports = { supportList };