33 lines
640 B
TypeScript
33 lines
640 B
TypeScript
/**
|
|
* 评查点分组模拟数据
|
|
*/
|
|
export const evaluationPointGroupsMockData = {
|
|
code: 0,
|
|
msg: "成功",
|
|
data: [
|
|
{
|
|
id: 1,
|
|
name: "行政处罚",
|
|
description: "行政处罚评查点",
|
|
is_enabled: true
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "专卖许可证",
|
|
description: "专卖许可证评查点",
|
|
is_enabled: true
|
|
},
|
|
{
|
|
id: 3,
|
|
name: "合同审核",
|
|
description: "合同审核评查点",
|
|
is_enabled: true
|
|
},
|
|
{
|
|
id: 4,
|
|
name: "立案文书",
|
|
description: "立案文书评查点",
|
|
is_enabled: true
|
|
}
|
|
]
|
|
};
|