king
2020-11-06 00de865d827da6687928b10f031482628a5144c8
src/menu/components/card/cardcellcomponent/index.jsx
@@ -217,13 +217,15 @@
   * @description 元素编辑,获取元素表单信息
   */
  handleElement = (card) => {
    const { cards } = this.props
    if (card.eleType === 'button') {
      this.handleAction(card)
    } else {
      this.setState({
        visible: true,
        card: card,
        formlist: getCardCellForm(card)
        formlist: getCardCellForm(card, cards.type)
      })
    }
  }