king
2025-01-18 f9f60bb0dd17a764ba03faa8041f5b6e9e071553
src/menu/components/form/simple-form/index.jsx
@@ -2,7 +2,7 @@
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Popover, Modal, Button, Switch, message } from 'antd'
import { PlusOutlined, SettingOutlined, EditOutlined, ToolOutlined, DeleteOutlined, SwapOutlined, FontColorsOutlined } from '@ant-design/icons'
import { PlusOutlined, SettingOutlined, EditOutlined, ToolOutlined, DeleteOutlined, SwapOutlined, FontColorsOutlined, VerticalRightOutlined } from '@ant-design/icons'
import asyncComponent from '@/utils/asyncComponent'
import asyncIconComponent from '@/utils/asyncIconComponent'
@@ -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,34 @@
  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() {}
    })
  }
  toLower = () => {
    let card = fromJS(this.state.card).toJS()
    let that = this
    card.subcards[0].fields = card.subcards[0].fields.map(item => {
      if (item.field) {
        item.field = item.field.toLowerCase()
      }
      return item
    })
    confirm({
      content: `确定将字段转为小写吗?`,
      onOk() {
        that.updateComponent(card)
      },
      onCancel() {}
    })
@@ -564,6 +584,7 @@
            } trigger="hover">
              <SwapOutlined />
            </Popover> : null}
            <VerticalRightOutlined style={{color: 'orange', transform: 'rotate(270deg)'}} title="字段转小写" onClick={this.toLower}/>
            <FormFork forms={card.subcards[0].fields}/>
            {/* <CopyOutlined title="复制" onClick={this.triggerCopy} /> */}
            <Switch checkedChildren="开" unCheckedChildren="关" defaultChecked={this.state.showField} onChange={(val) => this.setState({showField: val})} />