|
@ -21,11 +21,12 @@
|
21
|
21
|
<thead>
|
22
|
22
|
<th width="5%">#</th>
|
23
|
23
|
<th width="10%">姓名</th>
|
24
|
|
<th width="15%">职称</th>
|
25
|
|
<th width="15%">机构id</th>
|
26
|
|
<th width="15%">部门</th>
|
|
24
|
<th width="10%">职称</th>
|
|
25
|
<th width="15%">机构</th>
|
|
26
|
<th width="10%">部门</th>
|
27
|
27
|
<th width="15%">学科</th>
|
28
|
28
|
<th width="15%">应用行业</th>
|
|
29
|
<th width="10%">住址</th>
|
29
|
30
|
<th width="10%">操作</th>
|
30
|
31
|
</thead>
|
31
|
32
|
<tbody id="dm_tbody">
|
|
@ -56,10 +57,11 @@
|
56
|
57
|
withVal(i + 1).appendTo($row);
|
57
|
58
|
withVal($rowData.name).appendTo($row);
|
58
|
59
|
withVal($rowData.title).appendTo($row);
|
59
|
|
withVal($rowData.orgId).appendTo($row);
|
|
60
|
withVal($rowData.organization.name).appendTo($row);
|
60
|
61
|
withVal($rowData.department).appendTo($row);
|
61
|
62
|
withVal($rowData.subject).appendTo($row);
|
62
|
63
|
withVal($rowData.industry).appendTo($row);
|
|
64
|
withVal($rowData.address).appendTo($row);
|
63
|
65
|
$td = $("<td></td>");
|
64
|
66
|
$("<a>修改</a><br/>").attr("href",
|
65
|
67
|
"professor.html?id=" + $rowData.id).appendTo(
|