king
2023-06-14 08cce3334a2dc81d690b518136b0aaea64e48b0b
src/menu/components/card/cardsimplecomponent/node-wrap/menus/index.jsx
@@ -27,7 +27,7 @@
        editable: true,
        unique: true,
        required: false,
        width: '25%'
        width: '20%'
      },
      {
        title: '颜色',
@@ -35,7 +35,7 @@
        inputType: 'color',
        editable: true,
        required: true,
        width: '25%',
        width: '20%',
        render: (text, record) => <span style={{display: 'inline-block', width: '40px', height: '25px', background: text}}></span>
      },
      {
@@ -44,8 +44,8 @@
        inputType: 'icon',
        editable: true,
        required: false,
        width: '25%',
        render: (text, record) => record.icon ? <MkIcon type={record.icon}/> : ''
        width: '20%',
        render: (text, record) => record.icon ? <MkIcon style={{fontSize: '24px'}} type={record.icon}/> : ''
      },
      {
        title: '连接线',
@@ -54,9 +54,18 @@
        editable: true,
        required: false,
        allowClear: true,
        width: '25%',
        width: '20%',
        render: (text, record) => text ? <span style={{display: 'inline-block', width: '40px', height: '25px', background: text}}></span> : null
      },
      {
        title: '备注',
        dataIndex: 'remark',
        inputType: 'input',
        editable: true,
        unique: false,
        required: false,
        width: '20%'
      }
    ]
  }