modal.config.ts 768 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { ModalConfig } from "../../../../components/PageModal/src/types";
  2. const modalConfig: ModalConfig = {
  3. title: "客户",
  4. itemStyle: {},
  5. formItems: [
  6. {
  7. field: "companyNo",
  8. type: "input",
  9. label: "客户编码",
  10. labelWidth: "120px"
  11. },
  12. {
  13. field: "companyName",
  14. labelWidth: "120px",
  15. label: "客户名称",
  16. type: "input"
  17. },
  18. {
  19. labelWidth: "120px",
  20. field: "parent",
  21. label: "归属集团",
  22. type: "input"
  23. },
  24. {
  25. labelWidth: "120px",
  26. field: "contactor",
  27. label: "联系人",
  28. type: "input"
  29. },
  30. {
  31. field: "createTime",
  32. type: "input",
  33. labelWidth: "120px",
  34. label: "创建时间"
  35. }
  36. ]
  37. };
  38. export default modalConfig;