mirror of
https://github.com/certd/certd.git
synced 2026-07-12 08:17:32 +08:00
23 lines
338 B
TypeScript
23 lines
338 B
TypeScript
|
|
import mockUtil from "/src/mock/base";
|
||
|
|
const options: any = {
|
||
|
|
name: "BasisPlugin",
|
||
|
|
idGenerator: 0
|
||
|
|
};
|
||
|
|
const list = [
|
||
|
|
{
|
||
|
|
text: "张三",
|
||
|
|
radio: "1"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
text: "李四",
|
||
|
|
radio: "2"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
text: "王五",
|
||
|
|
radio: "0"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
options.list = list;
|
||
|
|
const mock = mockUtil.buildMock(options);
|
||
|
|
export default mock;
|