fields.js 332 Bytes
Newer Older
krysent's avatar
krysent committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export default {
  dicName: {
    value: null,
    type: "input",
    title: "数据名称",
    name: ["dicName"],
    required: true,
    col: { span: 24 },
  },
  dicDescription: {
    value: null,
    type: "textarea",
    title: "数据描述",
    name: ["dicDescription"],
    required: false,
    col: { span: 24 },
  },
};