|
@@ -55,7 +55,7 @@ TalentTypeChange.initColumn = function () {
|
|
{title: '部门审核情况', field: 'otherDeptState', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px",
|
|
{title: '部门审核情况', field: 'otherDeptState', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px",
|
|
formatter: function (value, row, index) {
|
|
formatter: function (value, row, index) {
|
|
var depRow = row.otherDeptState;
|
|
var depRow = row.otherDeptState;
|
|
- var html = "<ul>";
|
|
|
|
|
|
+ var html = "<ul style='margin:0;padding:0;list-style: none'>";
|
|
if (typeof depRow != "undefined" && depRow != null && depRow.length > 0) {
|
|
if (typeof depRow != "undefined" && depRow != null && depRow.length > 0) {
|
|
for (var i = 0; i < depRow.length; i++) {
|
|
for (var i = 0; i < depRow.length; i++) {
|
|
switch (depRow[i].state) {
|
|
switch (depRow[i].state) {
|
|
@@ -69,7 +69,7 @@ TalentTypeChange.initColumn = function () {
|
|
var stateStr = "已通过";
|
|
var stateStr = "已通过";
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
- html += '<li>' + depRow[i].name + ":" + stateStr + '</li>';
|
|
|
|
|
|
+ html += '<li>' + depRow[i].shortName + ":" + stateStr + '</li>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
html += "</ul>";
|
|
html += "</ul>";
|