25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

594 satır
33 KiB

  1. var refreshGirdData;
  2. var bootstrap = function ($, learun) {
  3. "use strict";
  4. var page = {
  5. init: function () {
  6. page.initGird();
  7. page.bind();
  8. },
  9. bind: function () {
  10. $('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
  11. page.search(queryJson);
  12. }, 320, 400);
  13. $('#DeptNo').lrselect({
  14. allowSearch: true,
  15. value: "deptno",
  16. text: "deptname",
  17. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdDeptInfo',
  18. select: function (item) {
  19. if (item) {
  20. $('#MajorNo').lrselectRefresh({
  21. allowSearch: true,
  22. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
  23. param: { strWhere: "DeptNo='" + item.deptno + "' AND CheckMark=1" }
  24. });
  25. } else {
  26. $('#MajorNo').lrselectRefresh({
  27. allowSearch: true,
  28. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
  29. param: { strWhere: "1=1 AND CheckMark=1" }
  30. });
  31. }
  32. }
  33. });
  34. $('#MajorNo').lrselect({
  35. allowSearch: true,
  36. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=CdMajorInfo',
  37. value: "majorno",
  38. text: "majorname",
  39. param: { strWhere: "1=1 AND CheckMark=1" },
  40. select: function (item) {
  41. var Grades = $("#Grade").lrselectGet();
  42. if (Grades != null && Grades != "" && Grades != "undefined") {
  43. if (item) {
  44. $('#ClassNo').lrselectRefresh({
  45. allowSearch: true,
  46. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  47. param: { strWhere: "majorno='" + item.majorno + "' AND Grade='" + Grades + "' order by classno desc" }
  48. });
  49. } else {
  50. $('#ClassNo').lrselectRefresh({
  51. allowSearch: true,
  52. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  53. param: { strWhere: "1=1 AND order by classno desc" }
  54. });
  55. }
  56. } else {
  57. if (item) {
  58. $('#ClassNo').lrselectRefresh({
  59. allowSearch: true,
  60. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  61. param: { strWhere: "majorno='" + item.majorno + "' order by classno desc" }
  62. });
  63. } else {
  64. $('#ClassNo').lrselectRefresh({
  65. allowSearch: true,
  66. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  67. param: { strWhere: "1=1 AND order by classno desc" }
  68. });
  69. }
  70. }
  71. }
  72. });
  73. $('#Grade').lrselect({
  74. url: top.$.rootUrl + '/EducationalAdministration/ClassInfo/GenerateNearByYear',
  75. value: "value",
  76. text: "text",
  77. select: function (item) {
  78. var MajorNos = $("#MajorNo").lrselectGet();
  79. if (MajorNos != null && MajorNos != "" && MajorNos != "undefined") {
  80. if (item) {
  81. $('#ClassNo').lrselectRefresh({
  82. allowSearch: true,
  83. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  84. param: {
  85. strWhere: "majorno='" + MajorNos + "' AND Grade='" + item.text + "' order by classno desc"
  86. }
  87. });
  88. } else {
  89. $('#ClassNo').lrselectRefresh({
  90. allowSearch: true,
  91. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  92. param: { strWhere: "1=1 AND order by classno desc" }
  93. });
  94. }
  95. } else {
  96. if (item) {
  97. $('#ClassNo').lrselectRefresh({
  98. allowSearch: true,
  99. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  100. param: {
  101. strWhere: "1=1 AND Grade='" + item.text + "' order by classno desc"
  102. }
  103. });
  104. } else {
  105. $('#ClassNo').lrselectRefresh({
  106. allowSearch: true,
  107. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  108. param: { strWhere: "1=1 AND order by classno desc" }
  109. });
  110. }
  111. }
  112. }
  113. });
  114. $('#ClassNo').lrselect({
  115. allowSearch: true,
  116. url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=allbjqj',
  117. param: { strWhere: "1=1 AND order by classno desc" },
  118. value: "classno",
  119. text: "classname"
  120. });
  121. $('#GenderNo').lrDataItemSelect({ code: 'usersexbit' });
  122. $('#NationalityNo').lrDataSourceSelect({ code: 'BCdNationality', value: 'nationalityno', text: 'nationality' });
  123. $('#FiveYear').lrDataItemSelect({ code: 'PieceCultivateWay' });
  124. // 刷新
  125. $('#lr_refresh').on('click', function () {
  126. location.reload();
  127. });
  128. },
  129. // 初始化列表
  130. initGird: function () {
  131. $('#gridtable').jfGrid({
  132. url: top.$.rootUrl + '/EducationalAdministration/StuInfoGraduate/GetPageList',
  133. headData: [
  134. {
  135. label: "审核状态", name: "CheckMark", width: 80, align: "center",
  136. formatter: function (cellvalue) {
  137. return cellvalue == "1" ? "<span class=\"label label-success\">已审核</span>" : "<span class=\"label label-danger\">未审核</span>";
  138. }
  139. },
  140. { label: "学生编号", name: "StuNo", width: 100, align: "left" },
  141. { label: "学籍号", name: "StuCode", width: 100, align: "left" },
  142. { label: "学号", name: "ProvinceCode", width: 100, align: "left" },
  143. { label: "姓名", name: "StuName", width: 100, align: "left" },
  144. {
  145. label: "性别", name: "GenderNo", width: 80, align: "left",
  146. formatter: function (cellvalue) {
  147. return cellvalue == true ? "男" : "女";
  148. }
  149. },
  150. {
  151. label: "出生日期", name: "Birthday", width: 100, align: "left",
  152. formatter: function (value) {
  153. return learun.formatDate(value, 'yyyy-MM-dd');
  154. }
  155. },
  156. { label: "身份证号", name: "IdentityCardNo", width: 100, align: "left" },
  157. {
  158. label: "民族", name: "NationalityNo", width: 100, align: "left",
  159. formatterAsync: function (callback, value, row, op, $cell) {
  160. learun.clientdata.getAsync('dataItem', {
  161. key: value,
  162. code: 'National',
  163. callback: function (_data) {
  164. callback(_data.text);
  165. }
  166. });
  167. }
  168. },
  169. {
  170. label: "政治面貌", name: "PartyFaceNo", width: 100, align: "left",
  171. formatterAsync: function (callback, value, row, op, $cell) {
  172. learun.clientdata.getAsync('dataItem', {
  173. key: value,
  174. code: 'PolityStatus',
  175. callback: function (_data) {
  176. callback(_data.text);
  177. }
  178. });
  179. }
  180. },
  181. { label: "年级", name: "Grade", width: 100, align: "left" },
  182. {
  183. label: "系所", name: "DeptNo", width: 100, align: "left",
  184. formatterAsync: function (callback, value, row, op, $cell) {
  185. learun.clientdata.getAsync('custmerData', {
  186. url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdDeptInfo',
  187. key: value,
  188. keyId: 'deptno',
  189. callback: function (_data) {
  190. callback(_data['deptname']);
  191. }
  192. });
  193. }
  194. },
  195. {
  196. label: "专业", name: "MajorNo", width: 100, align: "left",
  197. formatterAsync: function (callback, value, row, op, $cell) {
  198. learun.clientdata.getAsync('custmerData', {
  199. url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo',
  200. key: value,
  201. keyId: 'majorno',
  202. callback: function (_data) {
  203. callback(_data['majorname']);
  204. }
  205. });
  206. }
  207. },
  208. {
  209. label: "班级", name: "ClassNo", width: 100, align: "left",
  210. formatterAsync: function (callback, value, row, op, $cell) {
  211. learun.clientdata.getAsync('custmerData', {
  212. url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'allbjqj',
  213. key: value,
  214. keyId: 'classno',
  215. callback: function (_data) {
  216. callback(_data['classname']);
  217. }
  218. });
  219. }
  220. },
  221. {
  222. label: "学制", name: "EduSystem", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
  223. learun.clientdata.getAsync('dataItem', {
  224. key: value,
  225. code: 'EduSystem',
  226. callback: function (_data) {
  227. callback(_data.text);
  228. }
  229. });
  230. }
  231. },
  232. {
  233. label: "身体状态", name: "HealthStatus", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
  234. learun.clientdata.getAsync('dataItem', {
  235. key: value,
  236. code: 'QRCodeHealthStatus',
  237. callback: function (_data) {
  238. callback(_data.text);
  239. }
  240. });
  241. }
  242. },
  243. {
  244. label: "学习形式", name: "StudyModality", width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) {
  245. learun.clientdata.getAsync('dataItem', {
  246. key: value,
  247. code: 'StudyModality',
  248. callback: function (_data) {
  249. callback(_data.text);
  250. }
  251. });
  252. }
  253. },
  254. { label: "报到日期", name: "RegisterDate", width: 100, align: "left" },
  255. { label: "入学方式", name: "EntranceWay", width: 100, align: "left" },
  256. { label: "入学年月", name: "EntranceDate", width: 100, align: "left" },
  257. { label: "余额", name: "Balance", width: 100, align: "left" },
  258. { label: "家庭地址", name: "MailAddress", width: 100, align: "left" },
  259. { label: "联系电话", name: "mobile", width: 100, align: "left" },
  260. { label: "户口所在地", name: "FatherUnit", width: 100, align: "left" },
  261. { label: "档案所在地", name: "MatherUnit", width: 100, align: "left" },
  262. {
  263. label: "五年一贯制", name: "FiveYear", width: 100, align: "left"
  264. , formatterAsync: function (callback, value, row, op, $cell) {
  265. learun.clientdata.getAsync('dataItem', {
  266. key: value,
  267. code: 'PieceCultivateWay',
  268. callback: function (_data) {
  269. callback(_data.text);
  270. }
  271. });
  272. }
  273. },
  274. //{
  275. // label: "异动状态", name: "AbmormityMoveMark", width: 80, align: "center",
  276. // formatter: function (cellvalue) {
  277. // return cellvalue == "1" ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>";
  278. // }
  279. //},
  280. {
  281. label: "是否上传头像", name: "Photo", width: 80, align: "center",
  282. formatter: function (cellvalue) {
  283. if (cellvalue != null && cellvalue != "" && cellvalue != undefined) {
  284. return cellvalue = "<span class=\"label label-success\">是</span>";
  285. } else {
  286. return cellvalue = "<span class=\"label label-danger\">否</span>";
  287. }
  288. }
  289. },
  290. { label: "拼音", name: "SpellFull", width: 100, align: "left", ishide: true },
  291. { label: "就读方式", name: "StudyingWay", width: 100, align: "left", ishide: true },
  292. {
  293. label: "国籍", name: "CountryNo", width: 100, align: "left", ishide: true,
  294. formatterAsync: function (callback, value, row, op, $cell) {
  295. learun.clientdata.getAsync('dataItem', {
  296. key: value,
  297. code: 'BCdCountry',
  298. callback: function (_data) {
  299. callback(_data.text);
  300. }
  301. });
  302. }
  303. },
  304. {
  305. label: "港澳台侨外", name: "OverseasChineseNo", width: 100, align: "left", ishide: true,
  306. formatterAsync: function (callback, value, row, op, $cell) {
  307. learun.clientdata.getAsync('dataItem', {
  308. key: value,
  309. code: 'BCdOverseasChinese',
  310. callback: function (_data) {
  311. callback(_data.text);
  312. }
  313. });
  314. }
  315. },
  316. {
  317. label: "婚姻状况", name: "MarriageStatus", width: 100, align: "left", ishide: true,
  318. formatterAsync: function (callback, value, row, op, $cell) {
  319. learun.clientdata.getAsync('dataItem', {
  320. key: value,
  321. code: 'BCdOverseasChinese',
  322. callback: function (_data) {
  323. callback(_data.text);
  324. }
  325. });
  326. }
  327. },
  328. { label: "乘火车区间", name: "TrainInterval", width: 100, align: "left", ishide: true, },
  329. { label: "是否随迁子女", name: "IsTrailChildren", width: 100, align: "left", ishide: true, },
  330. { label: "生源地行政区划码", name: "StuPlaceCode", width: 100, align: "left", ishide: true, },
  331. { label: "出生地行政区划码", name: "BirthPlaceCode", width: 100, align: "left", ishide: true, },
  332. { label: "籍贯地行政区划码", name: "NativePlaceCode", width: 100, align: "left", ishide: true, },
  333. { label: "所属派出所", name: "BelongPolice", width: 100, align: "left", ishide: true, },
  334. { label: "户口所在地行政区划码", name: "ResidencePlaceCode", width: 100, align: "left", ishide: true, },
  335. { label: "是否农户", name: "ResidenceNo", width: 100, align: "left", ishide: true, },
  336. {
  337. label: "学生居住地类型", name: "StuLivePlaceType", width: 100, align: "left", ishide: true,
  338. formatterAsync: function (callback, value, row, op, $cell) {
  339. learun.clientdata.getAsync('dataItem', {
  340. key: value,
  341. code: 'StuLivePlaceType',
  342. callback: function (_data) {
  343. callback(_data.text);
  344. }
  345. });
  346. }
  347. },
  348. {
  349. label: "健康状况", name: "HealthStatusNo", width: 100, align: "left", ishide: true,
  350. formatterAsync: function (callback, value, row, op, $cell) {
  351. learun.clientdata.getAsync('dataItem', {
  352. key: value,
  353. code: 'StuHealthType',
  354. callback: function (_data) {
  355. callback(_data.text);
  356. }
  357. });
  358. }
  359. },
  360. { label: "学生来源", name: "StuOrigin", width: 100, align: "left", ishide: true, },
  361. { label: "招生对象", name: "RecruitObject", width: 100, align: "left", ishide: true, },
  362. { label: "贫困户否建档立卡贫困户", name: "PoorIsRecord", width: 100, align: "left", ishide: true, },
  363. {
  364. label: "招生方式", name: "RecruitWay", width: 100, align: "left", ishide: true,
  365. formatterAsync: function (callback, value, row, op, $cell) {
  366. learun.clientdata.getAsync('dataItem', {
  367. key: value,
  368. code: 'RecruitWay',
  369. callback: function (_data) {
  370. callback(_data.text);
  371. }
  372. });
  373. }
  374. },
  375. {
  376. label: "联招合作类型", name: "RecruitCooperateType", width: 100, align: "left", ishide: true,
  377. formatterAsync: function (callback, value, row, op, $cell) {
  378. learun.clientdata.getAsync('dataItem', {
  379. key: value,
  380. code: 'RecruitCooperateType',
  381. callback: function (_data) {
  382. callback(_data.text);
  383. }
  384. });
  385. }
  386. },
  387. { label: "准考证号", name: "AdmissionNo", width: 100, align: "left", ishide: true, },
  388. { label: "考生号", name: "ksh", width: 100, align: "left", ishide: true, },
  389. { label: "考试总分", name: "ExamScore", width: 100, align: "left", ishide: true, },
  390. { label: "联招合作办学形式", name: "RecruitCooperateForm", width: 100, align: "left", ishide: true, },
  391. { label: "联招合作学校代码", name: "RecruitCooperateSchoolNo", width: 100, align: "left", ishide: true, },
  392. { label: "校外教学点", name: "SchoolOutsidePlace", width: 100, align: "left", ishide: true, },
  393. { label: "英文姓名", name: "EnglishName", width: 100, align: "left", ishide: true, },
  394. { label: "家庭邮政编码", name: "PostalCode", width: 100, align: "left", ishide: true, },
  395. { label: "其他联系方式", name: "OtherContact", width: 100, align: "left", ishide: true, },
  396. { label: "成员1姓名", name: "OneName", width: 100, align: "left", ishide: true, },
  397. { label: "成员1联系电话", name: "OneMobile", width: 100, align: "left", ishide: true },
  398. {
  399. label: "成员1关系", name: "OneMembership", width: 100, align: "left", ishide: true,
  400. formatterAsync: function (callback, value, row, op, $cell) {
  401. learun.clientdata.getAsync('dataItem', {
  402. key: value,
  403. code: 'GuardianType',
  404. callback: function (_data) {
  405. callback(_data.text);
  406. }
  407. });
  408. }
  409. },
  410. { label: "成员1是否监护人", name: "OneIsGuardian", width: 100, align: "left", ishide: true, },
  411. {
  412. label: "成员1出生年月", name: "OneBirthday", width: 100, align: "left", ishide: true,
  413. formatter: function (value) {
  414. return learun.formatDate(value, 'yyyy-MM-dd');
  415. }
  416. },
  417. {
  418. label: "成员1身份证件类型", name: "OneIdCardType", width: 100, align: "left", ishide: true,
  419. formatterAsync: function (callback, value, row, op, $cell) {
  420. learun.clientdata.getAsync('dataItem', {
  421. key: value,
  422. code: 'IdCardType',
  423. callback: function (_data) {
  424. callback(_data.text);
  425. }
  426. });
  427. }
  428. },
  429. { label: "成员1身份证件号", name: "OneIdCardNo", width: 100, align: "left", ishide: true, },
  430. {
  431. label: "成员1民族", name: "OneNationalityNo", width: 100, align: "left", ishide: true,
  432. formatterAsync: function (callback, value, row, op, $cell) {
  433. learun.clientdata.getAsync('dataItem', {
  434. key: value,
  435. code: 'National',
  436. callback: function (_data) {
  437. callback(_data.text);
  438. }
  439. });
  440. }
  441. },
  442. {
  443. label: "成员1健康状况", name: "OneHealthStatus", width: 100, align: "left", ishide: true,
  444. formatterAsync: function (callback, value, row, op, $cell) {
  445. learun.clientdata.getAsync('dataItem', {
  446. key: value,
  447. code: 'EpiHealth',
  448. callback: function (_data) {
  449. callback(_data.text);
  450. }
  451. });
  452. }
  453. },
  454. { label: "成员1工作或学习单位", name: "OneJob", width: 100, align: "left", ishide: true, },
  455. { label: "成员2姓名", name: "TwoName", width: 100, align: "left", ishide: true, },
  456. { label: "成员2联系电话", name: "TwoMobile", width: 100, align: "left", ishide: true },
  457. {
  458. label: "成员2关系", name: "TwoMembership", width: 100, align: "left", ishide: true,
  459. formatterAsync: function (callback, value, row, op, $cell) {
  460. learun.clientdata.getAsync('dataItem', {
  461. key: value,
  462. code: 'GuardianType',
  463. callback: function (_data) {
  464. callback(_data.text);
  465. }
  466. });
  467. }
  468. },
  469. { label: "成员2是否监护人", name: "TwoIsGuardian", width: 100, align: "left", ishide: true, },
  470. {
  471. label: "成员2出生年月", name: "TwoBirthday", width: 100, align: "left", ishide: true,
  472. formatter: function (value) {
  473. return learun.formatDate(value, 'yyyy-MM-dd');
  474. }
  475. },
  476. {
  477. label: "成员2身份证件类型", name: "TwoIdCardType", width: 100, align: "left", ishide: true,
  478. formatterAsync: function (callback, value, row, op, $cell) {
  479. learun.clientdata.getAsync('dataItem', {
  480. key: value,
  481. code: 'IdCardType',
  482. callback: function (_data) {
  483. callback(_data.text);
  484. }
  485. });
  486. }
  487. },
  488. { label: "成员2身份证件号", name: "TwoIdCardNo", width: 100, align: "left", ishide: true, },
  489. {
  490. label: "成员2民族", name: "TwoNationalityNo", width: 100, align: "left", ishide: true,
  491. formatterAsync: function (callback, value, row, op, $cell) {
  492. learun.clientdata.getAsync('dataItem', {
  493. key: value,
  494. code: 'National',
  495. callback: function (_data) {
  496. callback(_data.text);
  497. }
  498. });
  499. }
  500. },
  501. {
  502. label: "成员2健康状况", name: "TwoHealthStatus", width: 100, align: "left", ishide: true,
  503. formatterAsync: function (callback, value, row, op, $cell) {
  504. learun.clientdata.getAsync('dataItem', {
  505. key: value,
  506. code: 'EpiHealth',
  507. callback: function (_data) {
  508. callback(_data.text);
  509. }
  510. });
  511. }
  512. },
  513. { label: "成员2工作或学习单位", name: "TwoJob", width: 100, align: "left", ishide: true, },
  514. { label: "成员2职务", name: "TwoPosition", width: 100, align: "left", ishide: true, },
  515. { label: "毕业证书号", name: "DiplomaNo", width: 100, align: "left" },
  516. {
  517. label: '毕业状态', name: 'FinishSchoolMark', width: 100, align: "left", formatter: function (val) {
  518. if (val == '0') {
  519. return '待准许';
  520. } else if (val == "1") {
  521. return '准许毕业';
  522. } else if (val == '2') {
  523. return '已毕业';
  524. } else {
  525. return '待准许';
  526. }
  527. }
  528. },
  529. { label: "毕业时间", name: "FinishSchoolDate", width: 130, align: "left" },
  530. {
  531. label: "图书资料归还状态", name: "ReturnBooksStatus", width: 120, align: "left", formatter: function (cellvalue) {
  532. return cellvalue == "1" ? "已归还" : "未归还"
  533. }
  534. },
  535. { label: "图书资料归还时间", name: "ReturnBooksDate", width: 130, align: "left" },
  536. {
  537. label: "就业协议备案状态", name: "EmployAgreeStatus", width: 120, align: "left", formatter: function (cellvalue) {
  538. return cellvalue == "1" ? "已备案" : "未备案"
  539. }
  540. },
  541. { label: "就业协议备案时间", name: "EmployAgreeDate", width: 130, align: "left" },
  542. {
  543. label: "学杂费结算状态", name: "FeeSettleStatus", width: 100, align: "left", formatter: function (cellvalue) {
  544. return cellvalue == "1" ? "已结算" : "未结算"
  545. }
  546. },
  547. { label: "学杂费结算时间", name: "FeeSettleDate", width: 130, align: "left" },
  548. {
  549. label: "办理退住手续状态", name: "CheckOutStatus", width: 120, align: "left", formatter: function (cellvalue) {
  550. return cellvalue == "1" ? "已办理" : "未办理"
  551. }
  552. },
  553. { label: "办理退住手续时间", name: "CheckOutDate", width: 130, align: "left" },
  554. {
  555. label: "校园卡注销状态", name: "CardDeregistrateStatus", width: 100, align: "left", formatter: function (cellvalue) {
  556. return cellvalue == "1" ? "已注销" : "未注销"
  557. }
  558. },
  559. { label: "校园卡注销时间", name: "CardDeregistrateDate", width: 130, align: "left" },
  560. {
  561. label: "毕业证领取状态", name: "DiplomaReceiveStatus", width: 100, align: "left", formatter: function (cellvalue) {
  562. return cellvalue == "1" ? "已领取" : "未领取"
  563. }
  564. },
  565. { label: "毕业证领取时间", name: "DiplomaReceiveDate", width: 130, align: "left" },
  566. {
  567. label: "档案与组织关系转出状态", name: "FileTransferStatus", width: 150, align: "left", formatter: function (cellvalue) {
  568. return cellvalue == "1" ? "已转出" : "未转出"
  569. }
  570. },
  571. { label: "档案与组织关系转出时间", name: "FileTransferDate", width: 150, align: "left" },
  572. ],
  573. mainId: 'StuId',
  574. isPage: true,
  575. isMultiselect: false,
  576. });
  577. page.search();
  578. },
  579. search: function (param) {
  580. param = param || {};
  581. $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
  582. }
  583. };
  584. refreshGirdData = function () {
  585. page.search();
  586. };
  587. page.init();
  588. }