king
2023-11-14 169f6cd29a0d3add4fe2cf35c3579b45fa83c0d4
src/tabviews/zshare/actionList/normalbutton/index.jsx
@@ -2176,6 +2176,10 @@
    const { btn } = this.props
    const { autoMatic } = this.state
    if (btn.resetForm) {
      MKEmitter.emit('mkFC', 'reset', btn.resetForm)
    }
    if (this.preCallback) {
      this.setState({
        loading: false,
@@ -2294,9 +2298,15 @@
      if (btn.syncComponentId === 'multiComponent') {
        btn.syncComponentIds.forEach((id, i) => {
          setTimeout(() => {
            MKEmitter.emit('reloadData', id)
            if (/\$focus/.test(id)) {
              MKEmitter.emit('reloadData', id.split('$')[0], id.split('$')[1])
            } else {
              MKEmitter.emit('reloadData', id)
            }
          }, 20 * i)
        })
      } else if (/\$focus/.test(btn.syncComponentId)) {
        MKEmitter.emit('reloadData', btn.syncComponentId.split('$')[0], btn.syncComponentId.split('$')[1])
      } else {
        MKEmitter.emit('reloadData', btn.syncComponentId)
      }