attenInfo.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. addBtn: false,
  10. delBtnText: '清除考勤数据',
  11. selection: true,
  12. searchLabelWidth: 140,
  13. labelWidth: 100,
  14. menuWidth: 180,
  15. dialogClickModal: false,
  16. dialogWidth: 500,
  17. dialogType: "drawer",
  18. column: [
  19. {
  20. label: '姓名',
  21. prop: 'name',
  22. span: 24,
  23. search: true,
  24. width: 90,
  25. align: 'center',
  26. type: 'input',
  27. showOverflowTooltip: true,
  28. disabled: true,
  29. },
  30. {
  31. label: '工号',
  32. prop: 'number',
  33. type: 'input',
  34. span: 24,
  35. width: 90,
  36. align: 'center',
  37. search: true,
  38. showOverflowTooltip: true,
  39. disabled: true,
  40. },
  41. {
  42. label: '身份证号',
  43. prop: 'idCard',
  44. type: 'input',
  45. span: 24,
  46. search: true,
  47. width: 150,
  48. align: 'center',
  49. showOverflowTooltip: true,
  50. disabled: true,
  51. },
  52. {
  53. label: '科研人员类别',
  54. prop: 'personnelType',
  55. type: 'select',
  56. span: 24,
  57. width: 100,
  58. align: 'center',
  59. search: true,
  60. dicUrl: '/api/kd-system/dict-biz/dictionary?code=renyuanleixing',
  61. props: {
  62. label: 'dictValue',
  63. value: 'dictKey',
  64. },
  65. showOverflowTooltip: true,
  66. disabled: true,
  67. },
  68. ],
  69. };