king
2024-06-06 5d40888deb60d9a30fd55d7c516b0251f506fba7
src/menu/components/table/edit-table/options.jsx
@@ -45,9 +45,9 @@
    {
      type: 'number',
      field: 'height',
      label: '高度',
      label: '表格高度',
      initval: wrap.height || '',
      tooltip: '表格高度,空值时高度自适应。注:小于等于100时为高度的百分比。',
      tooltip: '表格内容区的高度(不包含表头),空值时高度自适应。注:小于等于100时为高度的百分比。',
      min: 10,
      max: 3000,
      precision: 0,
@@ -130,6 +130,18 @@
    },
    {
      type: 'radio',
      field: 'searchSize',
      label: '搜索间距',
      initval: wrap.searchSize || 'middle',
      tooltip: '搜索条件的上下间距。',
      required: false,
      options: [
        {value: 'middle', label: '默认'},
        {value: 'small', label: '小'},
      ],
    },
    {
      type: 'radio',
      field: 'parity',
      label: '奇偶异色',
      initval: wrap.parity || 'false',