|
@@ -18,7 +18,7 @@ TalentInfo.initColumn = function () {
|
|
}
|
|
}
|
|
return [
|
|
return [
|
|
{field: 'selectItem', radio: true},
|
|
{field: 'selectItem', radio: true},
|
|
- {title: '申报年度', field: 'year', visible: true, align: 'center', valign: 'middle', width: '80px'},
|
|
|
|
|
|
+ {title: '申报年度', field: 'apply_year', visible: true, align: 'center', valign: 'middle', width: '80px'},
|
|
{title: '姓名', field: 'name', visible: true, align: 'center', valign: 'middle', width: "100px",
|
|
{title: '姓名', field: 'name', visible: true, align: 'center', valign: 'middle', width: "100px",
|
|
formatter: function (value, row, index) {
|
|
formatter: function (value, row, index) {
|
|
if (row.sex == 1) {
|
|
if (row.sex == 1) {
|
|
@@ -40,29 +40,39 @@ TalentInfo.initColumn = function () {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{title: '人才层次', field: 'talentArrangeName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "80px", },
|
|
{title: '人才层次', field: 'talentArrangeName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "80px", },
|
|
- {title: '人才标签', field: 'talentTypeName', visible: isShow, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "80px"},
|
|
|
|
- {title: '证件号码', field: 'idCard', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
|
|
|
|
|
|
+ {title: '单位标签', field: 'enterpriseTagName', visible: isShow, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "80px"},
|
|
|
|
+ {title: '证件号码', field: 'card_number', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
|
|
{title: '认定条件', field: 'identifyConditionText', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
|
|
{title: '认定条件', field: 'identifyConditionText', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
|
|
- {title: '认定条件名称', field: 'identifyConditionName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
|
|
|
|
- {title: '认定条件证书取得时间', field: 'identifyGetTime', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
|
|
|
|
{title: '审核状态', field: 'checkState', visible: true, align: 'center', valign: 'middle', width: "100px",
|
|
{title: '审核状态', field: 'checkState', visible: true, align: 'center', valign: 'middle', width: "100px",
|
|
formatter: function (value, row, index) {
|
|
formatter: function (value, row, index) {
|
|
- if (value == 1) {
|
|
|
|
- return "<span class='label'>待提交</span>"
|
|
|
|
- } else if (value == 10 || value == 5) {
|
|
|
|
- return "<span class='label label-danger'>已驳回</span>"
|
|
|
|
- } else {
|
|
|
|
- if (row.isPublic >= 5) {
|
|
|
|
- if (value == -1) {
|
|
|
|
- return "<span class='label label-danger'>审核不通过</span>"
|
|
|
|
- } else if (value == 35) {
|
|
|
|
- return "<span class='label label-primary'>认定通过</span>"
|
|
|
|
- } else {
|
|
|
|
- return "<span class='label label-success'>审核中</span>"
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- return "<span class='label label-success'>审核中</span>"
|
|
|
|
- }
|
|
|
|
|
|
+ switch(value){
|
|
|
|
+ case 1:
|
|
|
|
+ return "<span class='label'>保存未提交</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ return "<span class='label label-success'>待审核</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ return "<span class='label'>待详细填报</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 5:
|
|
|
|
+ return "<span class='label'>保存未提交(II)</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 6:
|
|
|
|
+ return "<span class='label label-success'>待初审</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 7:
|
|
|
|
+ return "<span class='label label-success'>待复审</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 9:
|
|
|
|
+ return "<span class='label label-success'>待复审</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 11:
|
|
|
|
+ return "<span class='label label-primary'>认定通过</span>";
|
|
|
|
+ break;
|
|
|
|
+ case 13:
|
|
|
|
+ return "<span class='label label-danger'>复审失败</span>";
|
|
|
|
+ break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|