king
2020-07-07 73597636ab6062c7ce06cc4d09866cc54cedc744
src/templates/sharecomponent/columncomponent/dragcolumn/index.jsx
@@ -99,17 +99,20 @@
  let _colCards = []
  // 过滤合并列
    let _hideCol = []
  let _hideCol = []
  if (!showfield) {
    cards.forEach(col => {
      if (col.type === 'colspan' && col.sublist) {
        _hideCol.push(...col.sublist)
      }
    })
    cards.forEach(col => {
      if (_hideCol.includes(col.uuid)) return
  }
  cards.forEach(col => {
    if (_hideCol.includes(col.uuid)) return
      _colCards.push(col)
    })
    _colCards.push(col)
  })
  // 显示列分行
  if (_colCards.length > 10) {