compDeptList.js 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. export default {
  2. calcHeight: 30,
  3. tip: false,
  4. searchShow: true,
  5. searchMenuSpan: 6,
  6. border: true,
  7. index: true,
  8. searchLabelWidth: 140,
  9. labelWidth: 110,
  10. menuWidth: 140,
  11. delBtn: false,
  12. refreshBtn: false,
  13. columnBtn: false,
  14. gridBtn: false,
  15. dialogClickModal: false,
  16. dialogWidth: 500,
  17. dialogType: "drawer",
  18. column: [
  19. {
  20. label: '所属二级单位/部门',
  21. prop: 'name',
  22. type: 'input',
  23. span: 24,
  24. minWidth: 160,
  25. showOverflowTooltip: true,
  26. rules: [
  27. {
  28. required: true,
  29. message: '请输入科目代码',
  30. trigger: 'blur',
  31. },
  32. ],
  33. },
  34. // {
  35. // label: '部门/科室/项目部',
  36. // prop: 'name',
  37. // type: 'input',
  38. // span: 24,
  39. // minWidth: 260,
  40. // showOverflowTooltip: true,
  41. // rules: [
  42. // {
  43. // required: true,
  44. // message: '请输入',
  45. // trigger: 'blur',
  46. // },
  47. // ],
  48. // },
  49. ],
  50. };