cyPersonSumList.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. export default {
  2. height: 'auto',
  3. calcHeight: 30,
  4. tip: false,
  5. searchShow: true,
  6. searchMenuSpan: 6,
  7. border: true,
  8. index: true,
  9. selection: false,
  10. addBtn: false,
  11. searchLabelWidth: 140,
  12. labelWidth: 140,
  13. menu: false,
  14. dialogClickModal: false,
  15. dialogWidth: 760,
  16. dialogType: "drawer",
  17. column: [
  18. {
  19. label: '研发项目名称',
  20. prop: 'xmmc',
  21. span: 12,
  22. search: true,
  23. align: 'center',
  24. minWidth: 160,
  25. showOverflowTooltip: true,
  26. },
  27. {
  28. label: '姓名',
  29. prop: 'name',
  30. span: 12,
  31. search: true,
  32. width: 100,
  33. align: 'center',
  34. showOverflowTooltip: true,
  35. },
  36. {
  37. label: '工号',
  38. prop: 'number',
  39. span: 12,
  40. width: 130,
  41. align: 'center',
  42. search: true,
  43. showOverflowTooltip: true,
  44. },
  45. {
  46. label: '身份证号',
  47. prop: 'idCard',
  48. span: 12,
  49. search: true,
  50. width: 155,
  51. align: 'center',
  52. showOverflowTooltip: true,
  53. },
  54. {
  55. label: '所属二级单位',
  56. prop: 'secondaryUnit',
  57. type: 'input',
  58. span: 12,
  59. width: 140,
  60. search: true,
  61. align: 'center',
  62. showOverflowTooltip: true,
  63. },
  64. {
  65. label: '部门/科室/项目部',
  66. prop: 'department',
  67. type: 'input',
  68. span: 12,
  69. width: 140,
  70. search: true,
  71. align: 'center',
  72. showOverflowTooltip: true,
  73. },
  74. {
  75. label: '岗位职务',
  76. prop: 'post',
  77. type: 'input',
  78. span: 12,
  79. width: 100,
  80. align: 'center',
  81. search: true,
  82. showOverflowTooltip: true,
  83. },
  84. {
  85. label: '岗位所在地',
  86. prop: 'postLocation',
  87. type: 'input',
  88. span: 12,
  89. width: 100,
  90. showOverflowTooltip: true,
  91. align: 'center',
  92. },
  93. {
  94. label: '用工性质',
  95. prop: 'nature',
  96. type: 'select',
  97. span: 12,
  98. width: 80,
  99. align: 'center',
  100. search: true,
  101. dicUrl: '/api/kd-system/dict-biz/dictionary?code=yonggongxingzhi',
  102. props: {
  103. label: 'dictValue',
  104. value: 'dictKey',
  105. },
  106. showOverflowTooltip: true,
  107. },
  108. {
  109. label: '参研情况',
  110. prop: 'situation',
  111. type: 'select',
  112. span: 12,
  113. width: 70,
  114. align: 'center',
  115. search: true,
  116. dicUrl: '/api/kd-system/dict-biz/dictionary?code=canyanqingkuang',
  117. props: {
  118. label: 'dictValue',
  119. value: 'dictKey',
  120. },
  121. showOverflowTooltip: true,
  122. },
  123. {
  124. label: '人员类型',
  125. prop: 'personnelType',
  126. type: 'select',
  127. span: 12,
  128. width: 80,
  129. align: 'center',
  130. search: true,
  131. dicUrl: '/api/kd-system/dict-biz/dictionary?code=renyuanleixing',
  132. props: {
  133. label: 'dictValue',
  134. value: 'dictKey',
  135. },
  136. showOverflowTooltip: true,
  137. },
  138. // {
  139. // label: '参与月份',
  140. // prop: 'yearAndMonth',
  141. // span: 12,
  142. // width: 100,
  143. // align: 'center',
  144. // showOverflowTooltip: true,
  145. // }
  146. ],
  147. };