|
@@ -20,15 +20,15 @@ EpChange.initColumn = function(){
|
|
|
// {title: '原社会信用代码', field: 'oldIdCard', align: 'center', width:160, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
// {title: '原法人代表', field: 'oldLegal', align: 'center', width:120, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
{title: '原所属街道', field: 'oldStreetName', align: 'center', width:120, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
- {title: '原企业标签', field: 'oldTalentTypeName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
- {title: '原行业领域', field: 'oldIndustryFieldName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
+ {title: '原单位标签', field: 'oldEnterpriseTagName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
+ {title: '原产业领域', field: 'oldIndustryFieldNewName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
// {title: '原单位地址', field: 'oldAddress', align: 'center', width:200, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
{title: '<span style="color: red">新单位名称</span>', field: 'newName', align: 'center', width:200, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
// {title: '新社会信用代码', field: 'newIdCard', align: 'center', width:160, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
// {title: '新法人代表', field: 'newLegal', align: 'center', width:120, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
{title: '新所属街道', field: 'newStreetName', align: 'center', width:120, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
- {title: '新企业标签', field: 'newTalentTypeName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
- {title: '新行业领域', field: 'newIndustryFieldName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
+ {title: '新单位标签', field: 'newEnterpriseTagName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
+ {title: '新产业领域', field: 'newIndustryFieldNewName',visible: isShow, align: 'center', width:170, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
// {title: '新单位地址', field: 'newAddress', align: 'center', width:200, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
{title: '申请时间', field: 'createTime', align: 'center', width:150, valign: 'middle', 'class': 'uitd_showTip'},
|
|
|
{title: '操作', field: 'id', visible: true, align: 'center', valign: 'middle',width:100,
|
|
@@ -83,14 +83,14 @@ EpChange.search = function() {
|
|
|
queryData['oldIdCard'] = $("#oldIdCard").val();
|
|
|
queryData['oldLegal'] = $("#oldLegal").val();
|
|
|
queryData['oldStreet'] = $("#oldStreet").val();
|
|
|
- queryData['oldTalentType'] = $("#oldTalentType").val();
|
|
|
- queryData['oldIndustryField'] = $("#oldIndustryField").val();
|
|
|
+ queryData['oldEnterpriseTag'] = $("#oldEnterpriseTag").val();
|
|
|
+ queryData['oldIndustryFieldNew'] = $("#oldIndustryFieldNew").val();
|
|
|
queryData['newName'] = $("#newName").val();
|
|
|
queryData['newIdCard'] = $("#newIdCard").val();
|
|
|
queryData['newAgentName'] = $("#newAgentName").val();
|
|
|
queryData['newStreet'] = $("#newStreet").val();
|
|
|
- queryData['newTalentType'] = $("#newTalentType").val();
|
|
|
- queryData['newIndustryField'] = $("#newIndustryField").val();
|
|
|
+ queryData['newEnterpriseTag'] = $("#newEnterpriseTag").val();
|
|
|
+ queryData['newIndustryFieldNew'] = $("#newIndustryFieldNew").val();
|
|
|
queryData['checkState'] = $("#checkState").val();
|
|
|
|
|
|
EpChange.table.refresh({"query": queryData});
|
|
@@ -101,14 +101,14 @@ EpChange.reset = function() {
|
|
|
$("#oldIdCard").val("");
|
|
|
$("#oldLegal").val("");
|
|
|
$("#oldStreet").val("");
|
|
|
- $("#oldTalentType").val("");
|
|
|
- $("#oldIndustryField").val("");
|
|
|
+ $("#oldEnterpriseTag").val("");
|
|
|
+ $("#oldIndustryFieldNew").val("");
|
|
|
$("#newName").val("");
|
|
|
$("#newIdCard").val("");
|
|
|
$("#newAgentName").val("");
|
|
|
$("#newStreet").val("");
|
|
|
- $("#newTalentType").val("");
|
|
|
- $("#newIndustryField").val("");
|
|
|
+ $("#newEnterpriseTag").val("");
|
|
|
+ $("#newIndustryFieldNew").val("");
|
|
|
$("#checkState").val("");
|
|
|
};
|
|
|
|
|
@@ -133,7 +133,7 @@ EpChange.gotoEnterpriseChangeDetailPage = function() {
|
|
|
area: ['830px', '450px'], //宽高
|
|
|
fix: false, //不固定
|
|
|
maxmin: true,
|
|
|
- content: Feng.ctxPath + '/enterprisechangeRecord/gotoEnterpriseChangeDetailPage?id='+EpChange.seItem.id,
|
|
|
+ content: Feng.ctxPath + '/admin/enterpriseChangeRecord/gotoEnterpriseChangeDetailPage?id='+EpChange.seItem.id,
|
|
|
btn: ['<i class="fa fa-check"></i> 审核', '<i class="fa fa-eraser"></i> 取消'],
|
|
|
btnAlign: 'c',
|
|
|
yes: function (index, layero) {
|
|
@@ -162,7 +162,7 @@ EpChange.export = function(){
|
|
|
queryData['newTalentType'] = $("#newTalentType").val();
|
|
|
queryData['newIndustryField'] = $("#newIndustryField").val();
|
|
|
queryData['checkState'] = $("#checkState").val();
|
|
|
- window.location.href = Feng.setUrlParam(Feng.ctxPath + "/enterpriseChangeRecordExport/export", queryData);
|
|
|
+ window.location.href = Feng.setUrlParam(Feng.ctxPath + "/admin/enterpriseChangeRecordExport/export", queryData);
|
|
|
}
|
|
|
|
|
|
EpChange.showLog = function(id){
|
|
@@ -183,7 +183,7 @@ EpChange.showLog = function(id){
|
|
|
|
|
|
$(function () {
|
|
|
var defaultColunms = EpChange.initColumn();
|
|
|
- var table = new BSTable(EpChange.id, "/enterprisechangeRecord/findEnterpriseChangeRecordByPage", defaultColunms);
|
|
|
+ var table = new BSTable(EpChange.id, "/admin/enterpriseChangeRecord/findEnterpriseChangeRecordByPage", defaultColunms);
|
|
|
table.setPaginationType("server");
|
|
|
EpChange.table = table.init();
|
|
|
});
|