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
14 lines
277 B
import Mock from 'mockjs';
|
|
|
|
const Custs = [];
|
|
|
|
for (let i = 0; i < 25; i++) {
|
|
Custs.push(Mock.mock({
|
|
custId:Mock.Random.string(5),
|
|
branchId:Mock.Random.string(5),
|
|
custName:Mock.Random.ctitle(1,0) ,
|
|
enabled:Mock.Random.character('lower')
|
|
}));
|
|
}
|
|
|
|
export { Custs };
|