king
2020-12-13 a3ac1b4636cf446804bb1947d6a5d2dd6c3bc030
src/tabviews/zshare/actionList/tabbutton/index.jsx
@@ -13,6 +13,7 @@
class TabButton extends Component {
  static propTpyes = {
    show: PropTypes.any,              // 按钮显示样式控制
    position: PropTypes.any,          // 按钮位置,工具栏为toolbar
    MenuID: PropTypes.string,         // 菜单ID
    btn: PropTypes.object,            // 按钮
    selectedData: PropTypes.any,      // 子表中选择数据
@@ -30,9 +31,9 @@
  }
  componentDidMount () {
    const { show } = this.props
    const { position } = this.props
    if (show === 'actionList') {
    if (position === 'toolbar') {
      MKEmitter.addListener('triggerBtnId', this.actionTrigger)
    }
  }
@@ -47,12 +48,12 @@
  /**
   * @description 触发按钮操作
   */
  actionTrigger = (triggerId) => {
  actionTrigger = (triggerId, record) => {
    const { setting, btn, tabviews, MenuID, selectedData } = this.props
    if (triggerId && btn.uuid !== triggerId) return
    
    let data = selectedData || []
    let data = record || selectedData || []
    if (btn.Ot === 'requiredSgl' && data.length !== 1) {
      // 需要选择单行时,校验数据