You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
277 B

  1. import Mock from 'mockjs';
  2. const Custs = [];
  3. for (let i = 0; i < 25; i++) {
  4. Custs.push(Mock.mock({
  5. custId:Mock.Random.string(5),
  6. branchId:Mock.Random.string(5),
  7. custName:Mock.Random.ctitle(1,0) ,
  8. enabled:Mock.Random.character('lower')
  9. }));
  10. }
  11. export { Custs };