king
2022-06-09 69070570c9b5c4f1c5ca38eaf052f1a72e5fd888
src/menu/components/share/actioncomponent/formconfig.jsx
@@ -724,16 +724,13 @@
      key: 'open',
      label: '打开方式',
      initVal: card.open || 'blank',
      tooltip: '菜单打开方式。注:移动端只在小程序或app中有效。',
      tooltip: '菜单打开方式。',
      required: true,
      forbid: appType !== 'pc' && appType !== 'mob',
      options: [{
        value: 'blank',
        text: '新窗口'
      }, {
        value: 'self',
        text: '当前窗口'
      }]
      options: [
        {value: 'blank', text: appType !== 'mob' ? '新窗口' : '新页面'},
        {value: 'self', text: appType !== 'mob' ? '当前窗口' : '当前页面'},
      ]
    },
    {
      type: 'radio',