king
2022-08-19 545231cc08e10b40011a581afb6be5f27e85ab52
src/templates/zshare/formconfig.jsx
@@ -3068,6 +3068,19 @@
    },
    {
      type: 'radio',
      key: 'hidden',
      label: "隐藏",
      initVal: card.hidden || 'false',
      options: [{
        value: 'true',
        text: Formdict['model.true']
      }, {
        value: 'false',
        text: Formdict['model.false']
      }]
    },
    {
      type: 'radio',
      key: 'readonly',
      label: '只读',
      initVal: card.readonly || 'false',
@@ -3082,21 +3095,8 @@
    {
      type: 'radio',
      key: 'required',
      label: Formdict['model.required'],
      label: "必填",
      initVal: card.required || 'true',
      options: [{
        value: 'true',
        text: Formdict['model.true']
      }, {
        value: 'false',
        text: Formdict['model.false']
      }]
    },
    {
      type: 'radio',
      key: 'hidden',
      label: Formdict['model.hidden'],
      initVal: card.hidden || 'false',
      options: [{
        value: 'true',
        text: Formdict['model.true']