mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:03:27 +08:00
【修复】修复后台管理,用户提现路径,按照提现方式筛选列表失效的问题,并且列表增加提现方式一列。
This commit is contained in:
@@ -197,6 +197,9 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
where = where.And(p => p.updateTime > dt);
|
||||
}
|
||||
}
|
||||
//提现状态 int
|
||||
var type = Request.Form["type"].FirstOrDefault().ObjectToInt(0);
|
||||
if (type > 0) @where = @where.And(p => p.type == type);
|
||||
|
||||
//获取数据
|
||||
var list = await _coreCmsUserTocashServices.QueryPageAsync(where, orderEx, orderBy, pageCurrent, pageSize, true);
|
||||
|
||||
Reference in New Issue
Block a user