mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-21 02:15:54 +08:00
管理端和商家端userInfo字段名变更,管理端会员详情,他的积分字段调整
This commit is contained in:
@@ -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),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user