|
@@ -53,24 +53,22 @@ TalentInfo.initColumn = function () {
|
|
|
// }
|
|
|
// },
|
|
|
{title: '人才层次', field: 'talentArrangeName', visible: true, align: 'center', valign: 'middle', width: '100px'},
|
|
|
- {title: '人才标签', field: 'talentTypeName', visible: isShow, align: 'center', valign: 'middle', width: '100px'},
|
|
|
- {title: '证件号码', field: 'idCard', visible: true, align: 'center', valign: 'middle', width: '150px', 'class': 'uitd_showTip'},
|
|
|
- {title: '认定条件', field: 'identifyConditionText', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '150px'},
|
|
|
- {title: '认定条件名称', field: 'identifyConditionName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '100px'},
|
|
|
- {title: '获得时间', field: 'identifyGetTime', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '100px'},
|
|
|
+ {title: '单位标签', field: 'enterprise_tag', visible: isShow, align: 'center', valign: 'middle', width: '100px'},
|
|
|
+ {title: '证件号码', field: 'card_number', visible: true, align: 'center', valign: 'middle', width: '150px', 'class': 'uitd_showTip'},
|
|
|
+ {title: '认定条件', field: 'talentConditionName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '150px'},
|
|
|
{title: '人才证书有效期', field: 'certificateStartTime', visible: isShow, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: '150px',
|
|
|
formatter: function (value, row, index) {
|
|
|
return Feng.isNotEmptyStr(row.certificateStartTime) && Feng.isNotEmptyStr(row.qzgccrcActiveTime) ? row.certificateStartTime + "至" + row.qzgccrcActiveTime : "";
|
|
|
}
|
|
|
},
|
|
|
- {title: '首次提交时间', field: 'firstSubmitTime', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
|
|
|
- {title: '最新提交时间', field: 'newSubmitTime', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
|
|
|
+ {title: '首次提交时间', field: 'first_submit_time', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
|
|
|
+ {title: '最新提交时间', field: 'new_submit_time', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
|
|
|
{title: '审核状态', field: 'checkState', visible: true, align: 'center', valign: 'middle', width: "100px",
|
|
|
formatter: function (value, row, index) {
|
|
|
- if (value == -1) {
|
|
|
+ if (value == 13) {
|
|
|
return "<span class='label label-danger'>审核不通过</span>"
|
|
|
}
|
|
|
- if (value == 35) {
|
|
|
+ if (value == 11) {
|
|
|
return "<span class='label label-primary'>已通过</span>"
|
|
|
}
|
|
|
}
|
|
@@ -90,7 +88,7 @@ TalentInfo.initColumn = function () {
|
|
|
return "<span class='label label-warning'>待公布</span>"
|
|
|
}
|
|
|
if (value == 5) {
|
|
|
- if (row.checkState == -1) {
|
|
|
+ if (row.checkState == 13) {
|
|
|
return "<span class='label label-danger'>审核不通过</span>"
|
|
|
}
|
|
|
return "<span class='label label-primary'>待发证</span>"
|