@ -832,6 +832,10 @@ label {
display: inline-block
}
.editable-input .input-sm {
height: 32px!important;
/** 表格冻结列样式 **/
.left-fixed-table-columns, .left-fixed-body-columns {
position: absolute;
@ -52,17 +52,27 @@
{
field : 'userName',
title : '用户姓名',
editable: true
editable : {
type : 'text',
title : '名称',
emptytext : "【名称】为空",
validate : function(value) {
if (value.length > 30) {
return '名称不能超过30个字符';
if (value.length == 0) {
return '名称不能为空';
},
field : 'userPhone',
title : '用户手机',
title : '用户手机'
field : 'userEmail',
title : '用户邮箱',
title : '用户邮箱'
field : 'userBalance',
@ -72,9 +82,17 @@
field: 'status',
title: '用户状态',
align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(datas, value);
type : 'select',
title : '状态',
source : [{
value : 0,
text : "正常"
}, {
value : 1,
text : "停用"
}]
title: '操作',