songxingwei 2 lat temu
rodzic
commit
62c14f9d74
1 zmienionych plików z 9 dodań i 1 usunięć
  1. 9 1
      app/admin/view/user/index.html

+ 9 - 1
app/admin/view/user/index.html

@@ -61,7 +61,15 @@
                 // {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},
+                {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'}