mirror of
https://github.com/certd/certd.git
synced 2026-05-18 22:57:31 +08:00
22 lines
312 B
JavaScript
22 lines
312 B
JavaScript
|
|
import mockUtil from "/src/mock/base";
|
||
|
|
const options = {
|
||
|
|
name: "DictCloneable",
|
||
|
|
idGenerator: 0
|
||
|
|
};
|
||
|
|
const list = [
|
||
|
|
{
|
||
|
|
status: "1",
|
||
|
|
remote: "2"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
status: "2",
|
||
|
|
remote: "0"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
status: "0"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
options.list = list;
|
||
|
|
const mock = mockUtil.buildMock(options);
|
||
|
|
export default mock;
|