king
2020-06-24 58a28e1faa15f638a136fefdcfcd0b3106c1fa16
src/templates/headerconfig/menuform/index.jsx
@@ -17,7 +17,7 @@
      {
        type: 'text',
        key: 'menuName',
        label: this.props.dict['header.menu.menuName'],
        label: this.props.dict['model.menu'] + this.props.dict['model.name'],
        initVal: '',
        required: true,
        readonly: false
@@ -25,28 +25,25 @@
      {
        type: 'select',
        key: 'openType',
        label: this.props.dict['header.menu.openType'],
        label: this.props.dict['model.openway'],
        initVal: 'menu',
        required: true,
        options: [{
          id: 'menu',
          text: this.props.dict['header.menu.openType.menu']
        }, {
          id: 'newpage',
          text: this.props.dict['header.menu.openType.newWindow']
          text: this.props.dict['model.menu']
        // }, {
        //   id: 'newpage',
        //   text: this.props.dict['model.new'] + this.props.dict['model.window']
        }]
      },
      {
        type: 'select',
        key: 'linkUrl',
        hidden: true,
        label: this.props.dict['header.menu.openType.newWindow'],
        label: this.props.dict['model.new'] + this.props.dict['model.window'],
        initVal: 'service',
        required: true,
        options: [{
          id: 'service',
          text: this.props.dict['header.menu.newpage.service']
        }]
        options: []
      }
    ]
  }