BUG 29680

This commit is contained in:
aixianling
2022-05-20 17:11:54 +08:00
parent 5916681635
commit 7b2a394d9c

View File

@@ -93,7 +93,7 @@ export default {
{prop: "residentName", label: "姓名"},
{prop: "eventDesc", label: "调整说明"},
{prop: "integralCalcType", label: "类型", dict: "integralCalcType", align: 'center'},
{prop: "changeIntegral", label: "积分", align: "center", render: (h, {row}) => h('p', `${row.integralCalcType > 0 ? '+' : '-'}${row.changeIntegral}`)},
{prop: "changeIntegral", label: "积分", align: "center", render: (h, {row}) => h('p',{textAlign:'center'}, `${row.integralCalcType > 0 ? '+' : '-'}${row.changeIntegral}`)},
{prop: "doTime", label: "操作时间"},
{prop: "createUserName", label: "操作人", align: "center"},
]