|
@@ -61,15 +61,17 @@
|
|
|
// {field: 'contact_phone', title: '联系电话', minWidth: 80, templet: '<div>{{d.contact_phone||"-"}}</div>'},
|
|
|
{field: 'status', title: '账号状态', align: 'center', minWidth: 110, templet: '#StatusSwitchTpl'},
|
|
|
{field: 'login_num', title: '登录次数', align: 'center', minWidth: 100, sort: true},
|
|
|
- {field: 'usertype', title: '类型', align: 'center', minWidth: 110,templet: function (d) {
|
|
|
- if (d.usertype=='admin'){
|
|
|
- return '后台用户'
|
|
|
- }else if (d.usertype=='shop'){
|
|
|
- return '商家'
|
|
|
- }else if (d.usertype=='shipyard'){
|
|
|
- return '船厂'
|
|
|
+ {
|
|
|
+ field: 'usertype', title: '类型', align: 'center', minWidth: 110,templet: function (d) {
|
|
|
+ if (d.usertype=='admin'){
|
|
|
+ return '后台用户'
|
|
|
+ }else if (d.usertype=='shop'){
|
|
|
+ return '商家'
|
|
|
+ }else if (d.usertype=='shipyard'){
|
|
|
+ return '船厂'
|
|
|
+ }
|
|
|
}
|
|
|
- }},
|
|
|
+ },
|
|
|
{field: 'login_at', title: '最后登录', align: 'center', minWidth: 170, sort: true},
|
|
|
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
|
|
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 150, fixed: 'right'}
|