king
2021-12-19 9e322cf8ed0d62124fcd017d6066ecfc50950196
src/mob/components/search/single-search/options.jsx
@@ -38,6 +38,36 @@
      required: false
    },
    {
      type: 'text',
      field: 'initval',
      label: '初始值',
      initval: wrap.initval || '',
      required: false
    },
    {
      type: 'radio',
      field: 'required',
      label: '必填',
      initval: wrap.required || 'false',
      required: false,
      options: [
        {value: 'true', label: '是'},
        {value: 'false', label: '否'},
      ]
    },
    {
      type: 'radio',
      field: 'match',
      label: '匹配方式',
      initval: wrap.match || 'like',
      required: true,
      options: [
        {value: 'like', label: 'like'},
        {value: 'not like', label: 'not like'},
        {value: '=', label: '='},
      ]
    },
    {
      type: 'radio',
      field: 'show',
      label: '搜索样式',
@@ -68,6 +98,16 @@
      precision: 0,
      initval: wrap.borderRadius || 0,
      required: false
    },
    {
      type: 'number',
      field: 'height',
      label: '高度',
      min: 28,
      max: 150,
      precision: 0,
      initval: wrap.height || 32,
      required: false
    }
  ]