mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 22:43:25 +08:00
【优化】优化微信小程序及微信公众号同时登录同一账号下,同时支付异常的问题。
【优化】优化后台微信用户列表展示,增加区分微信小程序和微信公众号来源的划分。
This commit is contained in:
@@ -117,7 +117,19 @@
|
||||
[
|
||||
{ type: "checkbox", fixed: "left" },
|
||||
{ field: 'id', title: '微信序列', width: 70, sort: false },
|
||||
//{ field: 'type', title: '第三方登录类型', sort: false,width: 105 },
|
||||
//{ field: 'type', title: '第三方登录类型', sort: false, width: 105 },
|
||||
{
|
||||
field: 'type', title: '登录类型', align: "center",
|
||||
templet: function (data) {
|
||||
var str = '';
|
||||
for (i = 0; i < d.data.userAccountTypes.length; i++) {
|
||||
if (data.type === d.data.userAccountTypes[i].value) { str = d.data.userAccountTypes[i].title }
|
||||
}
|
||||
//return str;
|
||||
return "<img src='/static/images/common/userwx_" + data.type + ".jpg' style='width:28px;' title='" + str + "' />";
|
||||
|
||||
}, width: 90
|
||||
},
|
||||
{ field: 'userId', title: '用户序列', sort: false, width: 80 },
|
||||
{ field: 'openid', title: 'openId', sort: false },
|
||||
//{ field: 'sessionKey', title: '缓存key', sort: false,width: 105 },
|
||||
|
||||
Reference in New Issue
Block a user