积分明细导出

This commit is contained in:
liuye
2023-01-04 14:43:21 +08:00
parent f14212d1a3
commit 8a478fa108
3 changed files with 7 additions and 3 deletions

View File

@@ -94,7 +94,11 @@ export default {
{prop: "category", label: "事件", dict: "srCategory", align: "center", width: 200},
{prop: "remark", label: "规则"},
{prop: "cycle", label: "周期范围", dict: "srCycle", align: "center", width: 100},
{prop: "status", label: "状态", align: "center", width: 100, dict: "srStatus",},
{prop: "status", label: "状态", align: "center", width: 100, dict: "srStatus",
render: (h, {row}) => {
return h('span', {style: {color: this.dict.getColor('srStatus', row.status)}}, this.dict.getLabel('srStatus', row.status))
}
},
{slot: "options", label: "操作", align: "center", width: 100},
],
tableData: [],