Skip to content

Commit 38869f5

Browse files
committed
【修复】管理端【会员管理】-【注册用户管理】中的点击余额或者积分进入【详情页面】后点击排序刷新后表单ID不能传递
1 parent 4b6a533 commit 38869f5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CoreCms.Net.Web.Admin/wwwroot/views/user/userInfo/detailsBalanceLog.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@
116116
initSort: obj, //记录初始排序,如果不设的话,将无法标记表头的排序状态。
117117
where: { //请求参数(注意:这里面的参数可任意定义,并非下面固定的格式)
118118
orderField: obj.field, //排序字段
119-
orderDirection: obj.type //排序方式
119+
orderDirection: obj.type, //排序方式
120+
userId: d.params.id
120121
}
121122
});
122123
});

CoreCms.Net.Web.Admin/wwwroot/views/user/userInfo/detailsPointLog.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
method: 'POST',
8787
defaultToolbar: ['filter', 'print', 'exports'],
8888
//height: 'full-127',//无面包屑127,搜索框189,1行62
89-
where: { userId: d.params.id },
89+
where: { userId: d.params.id, searchType: d.params.searchType },
9090
page: true,
9191
limit: 30,
9292
limits: [10, 15, 20, 25, 30, 50, 100, 200],
@@ -116,7 +116,8 @@
116116
initSort: obj, //记录初始排序,如果不设的话,将无法标记表头的排序状态。
117117
where: { //请求参数(注意:这里面的参数可任意定义,并非下面固定的格式)
118118
orderField: obj.field, //排序字段
119-
orderDirection: obj.type //排序方式
119+
orderDirection: obj.type, //排序方式
120+
userId: d.params.id
120121
}
121122
});
122123
});

0 commit comments

Comments
 (0)