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

module.exports = { supportList };