talentInfo_base.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /**
  2. * 人才认定申报管理初始化
  3. */
  4. var TalentInfo = {
  5. id: "TalentInfoTable", //表格id
  6. seItem: null, //选中的条目
  7. table: null,
  8. layerIndex: -1
  9. };
  10. /**
  11. * 初始化表格的列
  12. */
  13. TalentInfo.initColumn = function () {
  14. var type = $("#type").val();
  15. var isShow = true;
  16. if (type == 2) {
  17. isShow = false;
  18. }
  19. ;
  20. return [
  21. {field: 'selectItem', checkbox: true},
  22. {title: '企业名称', field: 'enterprise_name', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
  23. {title: '姓名', field: 'name', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px",
  24. formatter: function (value, row, index) {
  25. if (row.sex == 1) {
  26. return value + '<span style="color:#6495ED">【男】</span>';
  27. }
  28. if (row.sex == 2) {
  29. return value + '<span style="color:#FF82AB">【女】</span>';
  30. }
  31. }
  32. },
  33. // {title: '人才申报类型', field: 'talent_type', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
  34. {title: '单位标签', field: 'enterprise_tag', visible: isShow, align: 'center', valign: 'middle', width: "120px", 'class': 'uitd_showTip'},
  35. {title: '证件号码', field: 'card_number', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "120px"},
  36. {title: '认定层次', field: 'talentArrangeName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "80px"},
  37. {title: '认定条件', field: 'talentConditionName', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "150px"},
  38. {title: '首次提交时间', field: 'first_submit_time', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
  39. {title: '最新提交时间', field: 'new_submit_time', visible: true, align: 'center', valign: 'middle', 'class': 'uitd_showTip', width: "100px"},
  40. {title: '审核状态', field: 'checkState', visible: true, align: 'center', valign: 'middle', width: "100px",
  41. formatter: function (value, row, index) {
  42. if (typeof row.deptCheckState != "undefined") {
  43. if (row.deptCheckState == 12) {
  44. return "<span class='label label-primary'>部门已通过</span>"
  45. } else if (row.deptCheckState == 9) {
  46. if (row.lastState == 13) {
  47. return "<span class='label label-success'>待重新审核</span>"
  48. } else {
  49. return "<span class='label label-danger'>部门已驳回</span>"
  50. }
  51. } else {
  52. return "<span class='label label-success'>待审核</span>"
  53. }
  54. } else {
  55. if (value == 2) {
  56. if (row.lastState == 4) {
  57. return "<span class='label label-success'>待审核(重新提交)</span>"
  58. }
  59. if (row.realState == 6) {
  60. return "<span class='label label-danger'>复审驳回</span>"
  61. }
  62. return "<span class='label label-success'>待审核</span>"
  63. }
  64. if (value == 3) {
  65. return "<span class='label label-success'>待复审</span>"
  66. }
  67. if (value == 5) {
  68. return "<span class='label label-success'>复审通过</span>"
  69. }
  70. if (value == 10) {
  71. return "<span class='label label-success'>待审核</span>"
  72. }
  73. if (value == 8) {
  74. if (row.realState == 11) {
  75. return "<span class='label label-danger'>初审驳回</span>"
  76. }
  77. }
  78. if (value == 9) {
  79. if (row.realState == 13) {
  80. return "<span class='label label-danger'>部门驳回</span>"
  81. } else if (row.realState == 15) {
  82. return "<span class='label label-danger'>复审驳回</span>"
  83. } else {
  84. if (row.lastState == 11) {
  85. return "<span class='label label-success'>待审核(重新提交)</span>"
  86. }
  87. return "<span class='label label-success'>待审核</span>"
  88. }
  89. }
  90. if (value == 16 || value == -1 || value == -2 || value == 7) {
  91. return "<span class='label label-danger'>审核不通过</span>"
  92. }
  93. if (value == 4) {
  94. if (row.highProcess != null && row.highProcess != '' && row.highProcess >= 1) {
  95. return "<span class='label label-success'>上级驳回</span>"
  96. } else {
  97. return "<span class='label label-success'>待审核</span>"
  98. }
  99. }
  100. if (value == 11) {
  101. if (row.highProcess != null && row.highProcess != '' && row.highProcess >= 3) {
  102. return "<span class='label label-success'>上级驳回</span>"
  103. } else {
  104. return "<span class='label label-success'>待审核</span>"
  105. }
  106. }
  107. if (value == 12) {
  108. return "<span class='label label-success'>待复审</span>"
  109. }
  110. if (value == 13) {
  111. if (row.highProcess != null && row.highProcess != '' && row.highProcess >= 4) {
  112. return "<span class='label label-danger'>上级驳回</span>"
  113. } else {
  114. return "<span class='label label-success'>待审核</span>"
  115. }
  116. }
  117. if (value == 14) {
  118. return "<span class='label label-primary'>已通过</span>"
  119. }
  120. if (value == 15) {
  121. if (row.highProcess != null && row.highProcess != '' && row.highProcess >= 5) {
  122. return "<span class='label label-success'>上级驳回</span>"
  123. } else {
  124. return "<span class='label label-success'>待审核</span>"
  125. }
  126. }
  127. }
  128. }
  129. },
  130. {title: '操作', field: 'id', visible: true, align: 'center', valign: 'middle', width: "80px",
  131. formatter: function (value, row, index) {
  132. return "<span class='label label-success' onclick=\"TalentInfo.showLog('" + value + "')\" >" +
  133. "<i class=\"fa fa-book\"></i>日志" +
  134. "</span>";
  135. }
  136. }
  137. ];
  138. };
  139. /**
  140. * 检查是否选中
  141. */
  142. TalentInfo.check = function () {
  143. var selected = $('#' + this.id).bootstrapTable('getSelections');
  144. if (selected.length != 1) {
  145. Feng.info("请先选中表格中的某一记录!");
  146. return false;
  147. } else {
  148. TalentInfo.seItem = selected[0];
  149. return true;
  150. }
  151. };
  152. TalentInfo.openCheckTalentInfo = function () {
  153. var title = $("#title").val();
  154. var process = $("#process").val();
  155. if (this.check()) {
  156. var index = layer.open({
  157. type: 2,
  158. title: '人才认定' + " - " + title,
  159. area: ['800px', '420px'], //宽高
  160. fix: false, //不固定
  161. maxmin: true,
  162. shade: 0,
  163. content: '/admin/talent/common_check/id/' + TalentInfo.seItem.id + '/process/' + process,
  164. btn: ['<i class="fa fa-eye"></i>&nbsp;&nbsp;保存未提交', '<i class="fa fa-save"></i>&nbsp;&nbsp;提交审核', '<i class="fa fa-eraser"></i>&nbsp;&nbsp;关闭'],
  165. btnAlign: 'c',
  166. btn1: function (index, layero) {
  167. var obj = layero.find("iframe")[0].contentWindow;
  168. obj.TalentInfoInfoDlg.showFirstCheckModal();
  169. }, btn2: function (index, layero) {
  170. var obj = layero.find("iframe")[0].contentWindow;
  171. obj.TalentInfoInfoDlg.submitCheck();
  172. return false;
  173. }
  174. });
  175. layer.full(index);
  176. TalentInfo.layerIndex = index;
  177. }
  178. }
  179. /**
  180. * 打开查看人才认定-初级审核详情
  181. */
  182. TalentInfo.openTalentInfoDetail = function () {
  183. if (this.check()) {
  184. var index = layer.open({
  185. type: 2,
  186. title: '人才认定申报详情',
  187. area: ['800px', '420px'], //宽高
  188. fix: false, //不固定
  189. maxmin: true,
  190. content: Feng.ctxPath + '/talentInfo/talentInfo_toDetail/' + TalentInfo.seItem.id + '/1'
  191. });
  192. layer.full(index);
  193. TalentInfo.layerIndex = index;
  194. }
  195. };
  196. /**
  197. * 修改驳回的字段及附件
  198. */
  199. TalentInfo.updateFieldsAndFiles = function () {
  200. if (this.check()) {
  201. var ajax = new $ax("/admin/talent/findFieldsAndFiles?id=" + TalentInfo.seItem.id, function (data) {
  202. if (data.code == 200) {
  203. layer.open({
  204. type: 1,
  205. id: "neewFieldFormModel",
  206. title: '修改',
  207. area: ['800px', '450px'], //宽高
  208. fix: false, //不固定
  209. shade: 0,
  210. maxmin: true,
  211. content: TalentInfo.creatFieldCheckModal(),
  212. btn: ['<i class="fa fa-save"></i>&nbsp;&nbsp;提交', '<i class="fa fa-eraser"></i>&nbsp;&nbsp;关闭'],
  213. btnAlign: 'c',
  214. zIndex: layer.zIndex,
  215. success: function (layero, index) {
  216. var html1 = '';
  217. if (typeof data.fieldList != "undefined" && data.fieldList.length > 0) {
  218. for (var key in data.fieldList) {
  219. html1 += '<li style="float:left;margin:0 10px 10px 0;"><input type="checkbox" value="' + data.fieldList[key]["key"] + '"><span>' + data.fieldList[key]["value"] + '</span></li>';
  220. }
  221. }
  222. var html2 = '';
  223. for (var key in data.fileList) {
  224. html2 = html2 + '<ul><li style="width: 100%"><input type="checkbox" value="' + data.fileList[key].id + '"><span>' + data.fileList[key].name + '</span></li></ul>';
  225. }
  226. $("#firstCheckForm #field_info ul").css("overflow", "hidden").html(html1);
  227. $("#field_file").css("overflow", "hidden").empty().append(html2);
  228. //$("#field_file").empty().append(html);
  229. if (data.select.fields != null && data.select.fields != '') {
  230. $("#firstCheckForm #field_info li input").each(function () {
  231. if (data.select.fields.indexOf($(this).val()) != -1) {
  232. this.checked = true;
  233. }
  234. });
  235. }
  236. if (data.select.files != null && data.select.files != '') {
  237. $("#field_file input").each(function () {
  238. if (data.select.files.indexOf($(this).val()) != -1) {
  239. this.checked = true;
  240. }
  241. });
  242. }
  243. },
  244. yes: function (index, layero) {
  245. TalentInfo.submitFieldsAndFiles(index, data.id);
  246. }
  247. });
  248. } else {
  249. Feng.error(data.msg);
  250. }
  251. }, function (data) {
  252. Feng.error("查询失败!" + data.responseJSON.message + "!");
  253. });
  254. ajax.start();
  255. }
  256. }
  257. /**
  258. * 修改提交
  259. * @param index
  260. * @param id
  261. */
  262. TalentInfo.submitFieldsAndFiles = function (index, id) {
  263. var fields = '';
  264. var files = '';
  265. $("#firstCheckForm #field_info li input").each(function (index) {
  266. if ($(this).is(":checked")) {
  267. fields = fields + $(this).val() + ",";
  268. }
  269. });
  270. $("#field_file li input").each(function (index) {
  271. if ($(this).is(":checked")) {
  272. files = files + $(this).val() + ",";
  273. }
  274. });
  275. if (fields == '' && files == '') {
  276. Feng.info("请选择可修改的字段或附件!");
  277. return;
  278. }
  279. var ajax = new $ax("/admin/talent/updateFieldsAndFiles", function (data) {
  280. if (data.code == 200) {
  281. layer.close(index);
  282. Feng.success(data.msg);
  283. } else {
  284. Feng.error(data.msg);
  285. }
  286. }, function (data) {
  287. Feng.error("修改失败!" + data.responseJSON.message + "!");
  288. });
  289. ajax.setData({"id": id, "fields": fields, "files": files})
  290. ajax.start();
  291. }
  292. /**
  293. * 审核不通过
  294. */
  295. TalentInfo.setNotPass = function () {
  296. var selecteds = $('#' + this.id).bootstrapTable('getSelections');
  297. if (selecteds.length == 0) {
  298. Feng.info("请选择需要设置审核不通过的行");
  299. return;
  300. }
  301. var ids = "";
  302. for (var key in selecteds) {
  303. ids = ids + selecteds[key].id + ",";
  304. }
  305. ids = ids.substring(0, ids.length - 1);
  306. layer.open({
  307. type: 1,
  308. id: "notPassModal",
  309. title: '修改',
  310. area: ['800px', '450px'], //宽高
  311. fix: false, //不固定
  312. shade: 0,
  313. maxmin: true,
  314. content: '<form id="checkNotPass">\n' +
  315. ' <div class="form-group" style="margin: 10px;">\n' +
  316. ' <label for="checkMsgNotPass" class="control-label" >审核不通过原因</label>\n' +
  317. ' <textarea class="form-control" id="checkMsgNotPass" placeholder="此功能适用于未在申报提交截止时间内提交的数据" rows="6"></textarea>\n' +
  318. ' </div>\n' +
  319. ' </form>',
  320. btn: ['<i class="fa fa-save"></i>&nbsp;&nbsp;提交', '<i class="fa fa-eraser"></i>&nbsp;&nbsp;关闭'],
  321. btnAlign: 'c',
  322. zIndex: layer.zIndex,
  323. yes: function (index, layero) {
  324. var checkMsg = $("#checkMsgNotPass").val();
  325. if (Feng.isEmptyStr(checkMsg)) {
  326. Feng.info("请填写审核不通过原因");
  327. return;
  328. }
  329. var operation = function () {
  330. var ajax = new $ax("/admin/talent/cancel_verify", function (data) {
  331. if (data.code == 200) {
  332. Feng.success(data.msg);
  333. TalentInfo.table.refresh();
  334. layer.close(index);
  335. } else {
  336. Feng.error(data.msg);
  337. }
  338. }, function (data) {
  339. Feng.error("设置审核不通过失败!" + data.responseJSON.message + "!");
  340. });
  341. ajax.set("ids", ids);
  342. ajax.set("msg", checkMsg);
  343. ajax.start();
  344. }
  345. Feng.confirm("一旦提交无法修改,确定设置所选数据为审核不通过?", operation);
  346. }
  347. });
  348. }
  349. TalentInfo.creatFieldCheckModal = function () {
  350. return '<form id="firstCheckForm">\n' +
  351. ' <div class="form-group" style="margin: 10px;">\n' +
  352. ' <div >\n' +
  353. ' <label for="checkMsg" class="control-label">可修改字段</label>\n' +
  354. ' <div id="field_info">\n' +
  355. ' <ul>\n' +
  356. ' <li style="width:10%"><input type="checkbox" value="name"><span>姓名</span></li>\n' +
  357. ' <li style="width:10%"><input type="checkbox" value="sex"><span>性别</span></li>\n' +
  358. ' <li style="width:10%"><input type="checkbox" value="birthday"><span>出生日期</span></li>\n' +
  359. ' <li style="width:10%"><input type="checkbox" value="nationality"><span>国籍/地区</span></li>\n' +
  360. ' <li style="width:10%"><input type="checkbox" value="provinceCode" onchange="TalentInfo.fieldCheckd(this)"><span>籍贯省</span></li>\n' +
  361. ' <li style="width:10%"><input type="checkbox" value="cityCode" onchange="TalentInfo.fieldCheckd(this)"><span>籍贯市</span></li>\n' +
  362. ' <li style="width:10%"><input type="checkbox" value="countyCode"><span>籍贯县</span></li>\n' +
  363. ' <li style="width:10%"><input type="checkbox" value="nation"><span>民族</span></li>\n' +
  364. ' <li style="width:10%"><input type="checkbox" value="politics"><span>政治面貌</span></li>\n' +
  365. ' <li style="width:10%"><input type="checkbox" value="cardType"><span>证件类型</span></li>\n' +
  366. ' <li style="width:10%"><input type="checkbox" value="idCard"><span>证件号码</span></li>\n' +
  367. ' <li style="width:20.5%"><input type="checkbox" value="firstInJJTime"><span>首次来晋工作时间</span></li>\n' +
  368. ' <li style="width:10%"><input type="checkbox" value="source" onchange="TalentInfo.sourceCheckd(this)"><span>申报来源</span></li>\n' +
  369. ' <li style="width:20.5%"><input type="checkbox" value="ourCitySource"><span>公布入选来源</span></li>\n' +
  370. ' <li style="width:20.5%"><input type="checkbox" value="fromCity"><span>入选来源县市</span></li>\n' +
  371. ' <li style="width:20.5%"><input type="checkbox" value="qzBatch"><span>入选名单的文件号及批次</span></li>\n' +
  372. ' <li style="width:31%"><input type="checkbox" value="certificateStartTime"><span>泉州高层次人才证书发证日期</span></li>\n' +
  373. ' <li style="width:31%"><input type="checkbox" value="qzgccrcActiveTime"><span>泉州高层次人才证书的有效期</span></li>\n' +
  374. ' <li style="width:10%"><input type="checkbox" id="talentArrangeCheckBox" value="talentArrange" onchange="TalentInfo.fieldCheckd(this)"><span>人才层次</span></li>\n' +
  375. ' <li style="width:10%"><input type="checkbox" value="identifyCondition"><span>认定条件</span></li>\n' +
  376. ' <li style="width:20.5%"><input type="checkbox" value="identifyConditionName"><span>认定条件名称</span></li>\n' +
  377. ' <li style="width:20.5%"><input type="checkbox" value="identifyGetTime"><span>认定条件证书取得时间</span></li>\n' +
  378. ' <li style="width:10%"><input type="checkbox" value="talentType"><span>人才标签</span></li>\n' +
  379. ' <li style="width:31%"><input type="checkbox" value="letterTime"><span>首次来晋行政介绍信时间</span></li>\n' +
  380. ' <li style="width:10%"><input type="checkbox" value="introductionMode"><span>引进方式</span></li>\n' +
  381. ' <li style="width:20.5%"><input type="checkbox" value="entryTime"><span>本单位入职时间</span></li>\n' +
  382. ' <li style="width:10%"><input type="checkbox" value="post"><span>职务</span></li>\n' +
  383. ' <li style="width:20.5%"><input type="checkbox" value="startTime"><span>工作合同开始时间</span></li>\n' +
  384. ' <li style="width:20.5%"><input type="checkbox" value="endTime"><span>工作合同结束时间</span></li>\n' +
  385. ' <li style="width:20.5%"><input type="checkbox" value="lastYearWages"><span>上一年度年薪</span></li>\n' +
  386. ' <li style="width:10%"><input type="checkbox" value="highEducation"><span>最高学历</span></li>\n' +
  387. ' <li style="width:10%"><input type="checkbox" value="graduateSchool"><span>毕业院校</span></li>\n' +
  388. ' <li style="width:10%"><input type="checkbox" value="major"><span>专业</span></li>\n' +
  389. ' <li style="width:10%"><input type="checkbox" value="title"><span>职称</span></li>\n' +
  390. ' <li style="width:20.5%"><input type="checkbox" value="professionalQualifications"><span>国家职业资格</span></li>\n' +
  391. ' <li style="width:20.5%"><input type="checkbox" value="studyAbroad"><span>是否有留学经历</span></li>\n' +
  392. ' <li style="width:10%"><input type="checkbox" value="phone"><span>手机号码</span></li>\n' +
  393. ' <li style="width:10%"><input type="checkbox" value="email"><span>电子邮箱</span></li>\n' +
  394. ' <li style="width:10%"><input type="checkbox" value="bank"><span>开户银行</span></li>\n' +
  395. ' <li style="width:20.5%"><input type="checkbox" value="bankNetwork"><span>开户银行网点</span></li>\n' +
  396. ' <li style="width:10%"><input type="checkbox" value="bankNumber"><span>银行行号</span></li>\n' +
  397. ' <li style="width:10%"><input type="checkbox" value="bankAccount"><span>银行账号</span></li>\n' +
  398. ' <li style="width:31%"><input type="checkbox" value="breakFaith"><span>曾被相关主管部门列为失信个人</span></li>\n' +
  399. ' <li style="width:20.5%"><input type="checkbox" value="educationAndResume"><span>教育背景及工作简历</span></li>\n' +
  400. ' <li style="width:20.5%"><input type="checkbox" value="mainHonours"><span>主要业绩及取得的荣誉</span></li>\n' +
  401. ' </ul>\n' +
  402. ' </div>\n' +
  403. ' <label for="checkMsg" class="control-label">可修改附件</label>\n' +
  404. ' <div id="field_file">\n' +
  405. ' </div>\n' +
  406. ' <div class="form-group" style="text-align: center">\n' +
  407. ' <button type="button" class="btn btn-primary" onclick="TalentInfo.checkAll()">全选</button>\n' +
  408. ' <button type="button" class="btn btn-success" onclick="TalentInfo.unCheckAll()">反选</button>\n' +
  409. ' </div>\n' +
  410. ' </div>\n' +
  411. ' </div>\n' +
  412. ' </form>';
  413. }
  414. TalentInfo.fieldCheckd = function (context) {
  415. if ($(context).get(0).checked) {
  416. $(context).parent().next().children()[0].checked = true;
  417. $(context).parent().next().children().eq(0).trigger("change");
  418. }
  419. }
  420. TalentInfo.sourceCheckd = function (context) {
  421. if ($(context).get(0).checked) {
  422. $("#talentArrangeCheckBox").attr("checked", true);
  423. $("#talentArrangeCheckBox").trigger("change");
  424. }
  425. }
  426. TalentInfo.getPhones = function () {
  427. var process = $("#process").val();
  428. var ajax = new $ax("/admin/talent/getPhones/process/" + process, function (data) {
  429. if (data.code == 200) {
  430. layer.open({
  431. type: 1,
  432. title: "手机号码",
  433. area: ['830px', '300px'], //宽高
  434. fix: false, //不固定
  435. maxmin: true,
  436. content: "<span style='word-break:break-all'>" + data.obj + "</span>"
  437. });
  438. } else {
  439. Feng.info(data.msg);
  440. }
  441. }, function (data) {
  442. Feng.error("操作失败!");
  443. });
  444. ajax.setData(TalentInfo.formParams());
  445. ajax.start();
  446. }
  447. TalentInfo.getEnterprisePhones = function () {
  448. var process = $("#process").val();
  449. var ajax = new $ax("/admin/talent/getEnterprisePhones/process/" + process, function (data) {
  450. if (data.code == 200) {
  451. layer.open({
  452. type: 1,
  453. title: "手机号码",
  454. area: ['830px', '300px'], //宽高
  455. fix: false, //不固定
  456. maxmin: true,
  457. content: "<span style='word-break:break-all'>" + data.obj + "</span>"
  458. });
  459. } else {
  460. Feng.info(data.msg);
  461. }
  462. }, function (data) {
  463. Feng.error("操作失败!");
  464. });
  465. ajax.setData(TalentInfo.formParams());
  466. ajax.start();
  467. }
  468. $(function () {
  469. var defaultColunms = TalentInfo.initColumn();
  470. var process = $("#process").val();
  471. var table = new BSTable(TalentInfo.id, "/admin/talent/base_verify_list/process/" + process, defaultColunms);
  472. table.setPaginationType("server");
  473. table.setSingleSelect(false);
  474. table.setOnDblClickRow(function () {
  475. TalentInfo.openCheckTalentInfo();
  476. });
  477. TalentInfo.table = table.init();
  478. TalentInfo.init();
  479. // var defaultColunms = TalentInfo.initColumn();
  480. // var table = new KDTable(TalentInfo.id, "/talentInfo/list/1", defaultColunms);
  481. // table.setPaginationType("server");
  482. // TalentInfo.table = table.init();
  483. });