cmsUser.js 613 B

1234567891011121314151617181920212223242526
  1. let cmsUserList = [];
  2. const merchants = ['贝尔安亲', '好托管', '昂乐'];
  3. for(let i = 1; i < 100; i++) {
  4. cmsUserList.push({
  5. id: String(i),
  6. name: 'account-name-' + i,
  7. nickname: '刘' + i,
  8. gender: 0,
  9. avatar: null,
  10. birthday: '1990-08-20',
  11. mobile: '18233167789',
  12. mail: 'ceshi@163.com',
  13. weChat: '77xx89llcz',
  14. qq: '772358716',
  15. merchantId: '1',
  16. merchantName: merchants[i % 3],
  17. domain: 2010,
  18. isAdmin: null,
  19. status: 'NORMAL',
  20. resources: null,
  21. gmtCreated: 1513576267000,
  22. gmtModified: 1514952474000,
  23. });
  24. }
  25. module.exports = { cmsUserList };