fields.js 337 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export default {
  departmentName: {
    value: null,
    type: "input",
    title: "组织",
    name: ["departmentName"],
    required: true,
    col: { span: 24 },
  },
  departmentCode: {
    value: null,
    type: "input",
    title: "组织代码",
    name: ["departmentCode"],
    required: false,
    col: { span: 24 },
  },
};