【优化】移除后台用户列表联表查询的历史积分功能,加快访问速度。

This commit is contained in:
jianweie code
2023-11-29 23:58:44 +08:00
parent f02143eb59
commit de17c91e1f
4 changed files with 2 additions and 16 deletions

View File

@@ -225,8 +225,8 @@
}
},
{
field: 'accumulativePoint', title: '累计积分', sort: false, width: 70, templet: function (data) {
var html = '<a class="link-hot option-show point" data-id="' + data.id + '" data-type="accumulativePoint">' + data.accumulativePoint + '</a>';
field: 'accumulativePoint', title: '累计积分', sort: false, width: 100, templet: function (data) {
var html = '<a class="link-hot option-show point" data-id="' + data.id + '" data-type="accumulativePoint">查看历史积分</a>';
return html;
}
},