king
2024-08-25 326aa6b3effaccc71cfe0775d47b0f29eb3695a6
src/menu/components/form/simple-form/index.jsx
@@ -241,7 +241,7 @@
  
  changecols = (type) => {
    let card = fromJS(this.state.card).toJS()
    let _this = this
    let that = this
    card.subcards[0].fields = card.subcards[0].fields.map(item => {
      item.labelwidth = 33.3
@@ -267,7 +267,7 @@
    confirm({
      content: `确定切换为${type}列吗?`,
      onOk() {
        _this.updateComponent(card)
        that.updateComponent(card)
      },
      onCancel() {}
    })
@@ -288,14 +288,14 @@
  closeForm = (cell) => {
    let card = fromJS(this.state.card).toJS()
    let _this = this
    let that = this
    card.subcards[0].fields = card.subcards[0].fields.filter(item => item.uuid !== cell.uuid)
    confirm({
      content: `确定删除<<${cell.label}>>吗?`,
      onOk() {
        _this.updateComponent(card)
        that.updateComponent(card)
      },
      onCancel() {}
    })
@@ -503,14 +503,14 @@
  clearGroup = () => {
    let card = fromJS(this.state.card).toJS()
    let _this = this
    let that = this
    card.subcards[0].fields = []
    confirm({
      content: `确定清空表单吗?`,
      onOk() {
        _this.updateComponent(card)
        that.updateComponent(card)
      },
      onCancel() {}
    })