import { ModalConfig } from "../../../../components/PageModal/src/types"; const modalConfig: ModalConfig = { title: "客户", itemStyle: {}, formItems: [ { field: "companyNo", type: "input", label: "客户编码", labelWidth: "120px" }, { field: "companyName", type: "input", labelWidth: "120px", label: "客户名称" }, { field: "parent", type: "input", labelWidth: "120px", label: "归属集团" }, { field: "contactor", type: "input", labelWidth: "120px", label: "联系人" }, { field: "createTime", type: "input", labelWidth: "120px", label: "创建时间" } ] }; export default modalConfig;