level 1
nmkl1234
楼主
代码
<table id="dg" class="easyui-datagrid" title="员工列表"
data-options="fit:true,
fitColumns:true,
rownumbers:true,
url:'/employee/datagrid',
toolbar:'#tb',
pagination:true">
<thead>
<tr>
<th data-options="field:'headImage',width:'8%',align:'center',formatter:formatterHeadImage">头像</th>
<th data-options="field:'username',width:'12%',align:'center'">用户名</th>
<th data-options="field:'password',width:'30%',align:'center'">密码</th>
<th data-options="field:'email',width:'30%',align:'center'">邮箱</th>
<th data-options="field:'age',width:'10%',align:'center'">年龄</th>
<th data-options="field:'department',width:'10%',align:'center',formatter:formatterDepartment">部门</th>
</tr>
</thead>
</table>
2019年06月29日 11点06分
1
<table id="dg" class="easyui-datagrid" title="员工列表"
data-options="fit:true,
fitColumns:true,
rownumbers:true,
url:'/employee/datagrid',
toolbar:'#tb',
pagination:true">
<thead>
<tr>
<th data-options="field:'headImage',width:'8%',align:'center',formatter:formatterHeadImage">头像</th>
<th data-options="field:'username',width:'12%',align:'center'">用户名</th>
<th data-options="field:'password',width:'30%',align:'center'">密码</th>
<th data-options="field:'email',width:'30%',align:'center'">邮箱</th>
<th data-options="field:'age',width:'10%',align:'center'">年龄</th>
<th data-options="field:'department',width:'10%',align:'center',formatter:formatterDepartment">部门</th>
</tr>
</thead>
</table>

