king
2023-09-05 c9967063fa42e15d9f695220c76641cfa28669f2
src/tabviews/custom/components/form/simple-form/index.jsx
@@ -25,8 +25,7 @@
    loading: false,
    data: null,
    group: null,
    BData: '',
    step: 0
    BData: ''
  }
  UNSAFE_componentWillMount () {
@@ -74,8 +73,7 @@
      group: _group,
      BID: BID || '',
      BData: BData || '',
      config: _config,
      arr_field: _config.columns.map(col => col.field).join(',')
      config: _config
    })
  }
@@ -223,7 +221,7 @@
  }
  async loadData () {
    const { config, arr_field, BID } = this.state
    const { config, BID } = this.state
    if (config.wrap.datatype === 'static') {
      this.setState({
@@ -254,7 +252,7 @@
    })
    let _orderBy = config.setting.order || ''
    let param = UtilsDM.getQueryDataParams(config.setting, arr_field, searches, _orderBy, 1, 1, BID)
    let param = UtilsDM.getQueryDataParams(config.setting, searches, _orderBy, 1, 1, BID)
    let result = await Api.genericInterface(param)
    if (result.status) {