• wuhao's avatar
    asder · 232589d0
    wuhao authored
    232589d0
fields.js 473 Bytes
export default {
  factoryCode: {
    value: null,
    type: "input",
    title: "工厂编号",
    name: ["factoryCode"],
    required: true,
    col: { span: 24 },
  },
  factoryName: {
    value: null,
    type: "input",
    title: "工厂名称",
    name: ["factoryName"],
    required: true,
    col: { span: 24 },
  },
  remark: {
    value: null,
    type: "textarea",
    title: "描述",
    name: ["remark"],
    required: false,
    col: { span: 24 },
  },
};