管理端和商家端userInfo字段名变更,管理端会员详情,他的积分字段调整

This commit is contained in:
mabo
2021-08-04 17:51:43 +08:00
parent 726ae1f856
commit 0387ac510a
22 changed files with 44 additions and 47 deletions

View File

@@ -417,7 +417,7 @@
{
title: "变动积分",
key: "point",
key: "variablePoint",
width: 150,
render: (h, params) => {
if (params.row.pointType == 'INCREASE') {
@@ -426,7 +426,7 @@
style: {
color: 'green'
}
}, "+" + params.row.point),
}, "+" + params.row.variablePoint),
]);
} else {
return h('div', [
@@ -434,7 +434,7 @@
style: {
color: 'red'
}
}, "-" + params.row.point),
}, "-" + params.row.variablePoint),
]);
}