mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 22:43:25 +08:00
修复筛选分销等级取值错误的问题。
This commit is contained in:
@@ -147,7 +147,7 @@
|
||||
{ field: 'userId', title: '用户序列', sort: false, width: 65 },
|
||||
{
|
||||
field: 'userGradeId', title: '用户等级', sort: false, width: 90, templet: function (data) {
|
||||
for (var i = 0; i < d.data.grades.length; i++) {
|
||||
for (var i = 0; i < d.data.userGrades.length; i++) {
|
||||
if (d.data.userGrades[i].id == data.userGradeId) {
|
||||
return d.data.userGrades[i].title;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user