1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * @Author: Liugh
- * @Date: 2021-05-25 14:09:24
- * @LastEditTime: 2021-05-27 17:14:10
- * @LastEditors: Do not edit
- * @FilePath: \auth-web\src\pages\log-manage\DataConfig.js
- * @Description:
- */
- const earlyWarningPlanTable = [
- {
- label: "鉴权预警方案名称",
- prop: "name"
- },
- {
- label: "创建时间",
- prop: "createTime",
- timestamp: "YYYY-MM-DD"
- },
- {
- label: "修改时间",
- prop: "updateTime",
- timestamp: "YYYY-MM-DD"
- },
- {
- label: "预警数量",
- prop: "number"
- },
- {
- label: "方案状态",
- // custom: true, // 如果需要自定义请加上这个属性,插槽名称为prop
- prop: "state",
- enum: "ProgrammeStateEnum"
- }
- ];
- const earlyWarningPlanTableInfo = [
- { label: "方案名称", value: "name", span: 24 },
- { label: "方案状态", value: "state", span: 24, enum: "ProgrammeStateEnum" },
- { label: "创建时间", value: "createTime", span: 12, isTime: true },
- { label: "修改时间", value: "updateTime", span: 12, isTime: true },
- { label: "预警规则", value: "ruleContent", span: 24 },
- { label: "规则说明", value: "ruleExplain", span: 24 },
- { label: "预警信息", value: "warningMsg", span: 24 }
- ];
- const authActionCountTable = [
- {
- label: "鉴权类型",
- prop: "name"
- },
- {
- label: "鉴权成功次数",
- prop: "createTime"
- },
- {
- label: "鉴权失败次数",
- prop: "updateTime"
- },
- {
- label: "鉴权总次数",
- prop: "number"
- }
- ];
- export { earlyWarningPlanTable, earlyWarningPlanTableInfo, authActionCountTable };
|