king
2024-07-06 2b0818d407be09db0717a1922139707793c86026
src/menu/components/iframe/options.jsx
@@ -63,7 +63,7 @@
      field: 'height',
      label: '高度',
      initval: wrap.height || '',
      tooltip: 'ifram高度。',
      tooltip: 'ifram高度。注:高度100vh时会根据标签页窗口进行调整',
      required: true,
      options: ['px', 'vh', 'vw']
    },
@@ -79,13 +79,27 @@
      ],
      controlFields: [
        {field: 'linkUrl', values: ['fixed']},
        {field: 'focus', values: ['input']},
      ]
    },
    {
      type: 'radio',
      field: 'focus',
      label: '自动聚焦',
      initval: wrap.focus || 'true',
      required: false,
      options: [
        {value: 'true', label: '是'},
        {value: 'false', label: '否'},
      ],
      forbid: appType === 'mob'
    },
    {
      type: 'textarea',
      field: 'linkUrl',
      label: '地址链接',
      initval: wrap.linkUrl || '',
      tooltip: '地址中的@loginuid@会自动替换为当前系统的登录信息。',
      required: true,
      span: 24
    },
@@ -107,7 +121,7 @@
        {value: 'true', label: '启用'},
        {value: 'false', label: '禁用'},
      ],
      forbid: !appType
      forbid: !appType || sessionStorage.getItem('editMenuType') === 'popview'
    },
    {
      type: 'multiselect',