src/menu/components/card/prop-card/index.jsx
@@ -161,14 +161,14 @@ */ deleteCard = (cell) => { let card = fromJS(this.state.card).toJS() let _this = this let that = this confirm({ content: '确定删除卡片吗?', onOk() { card.subcards = card.subcards.filter(item => item.uuid !== cell.uuid) _this.updateComponent(card) that.updateComponent(card) }, onCancel() {} })