From 1da6506bf58270bacc2a4345002c6b082835580e Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 21 十月 2021 23:17:08 +0800 Subject: [PATCH] 2021-10-21 --- src/tabviews/zshare/actionList/normalbutton/index.jsx | 269 ++++++++++++++++++++++++++++++++++++++++------------- 1 files changed, 203 insertions(+), 66 deletions(-) diff --git a/src/tabviews/zshare/actionList/normalbutton/index.jsx b/src/tabviews/zshare/actionList/normalbutton/index.jsx index 737abd4..5a6deb4 100644 --- a/src/tabviews/zshare/actionList/normalbutton/index.jsx +++ b/src/tabviews/zshare/actionList/normalbutton/index.jsx @@ -43,7 +43,8 @@ loading: false, loadingNumber: '', disabled: false, - checkParam: null + checkParam: null, + autoMatic: false } moduleParams = null @@ -68,13 +69,17 @@ } componentDidMount () { - const { position } = this.props + const { position, btn } = this.props MKEmitter.addListener('triggerBtnId', this.actionTrigger) if (position === 'form') { MKEmitter.addListener('triggerFormSubmit', this.actionSubmit) } MKEmitter.addListener('returnModuleParam', this.resetModuleParam) + + if (btn.autoMatic) { + MKEmitter.addListener('triggerBtnPopSubmit', this.triggerBtnPopSubmit) + } } UNSAFE_componentWillReceiveProps (nextProps) { @@ -102,6 +107,15 @@ MKEmitter.removeListener('triggerBtnId', this.actionTrigger) MKEmitter.removeListener('triggerFormSubmit', this.actionSubmit) MKEmitter.removeListener('returnModuleParam', this.resetModuleParam) + MKEmitter.removeListener('triggerBtnPopSubmit', this.triggerBtnPopSubmit) + } + + triggerBtnPopSubmit = (id) => { + const { btn } = this.props + + if (btn.uuid !== id) return + + this.handleOk() } actionSubmit = (res) => { @@ -109,9 +123,7 @@ if (btn.uuid !== res.menuId) return - this.setState({ - loading: true - }) + this.setState({ loading: true }) this.execSubmit(this.state.tabledata, () => {}, res.form) } @@ -127,27 +139,22 @@ /** * @description 鎸夐挳鐘舵�佹敼鍙� */ - updateStatus = (type) => { - if (type === 'start') { - this.setState({ - loading: true - }) - } else if (type === 'over') { - this.setState({ - loading: false, - visible: false - }) - } + updateStatus = () => { + this.setState({ + loading: false, + visible: false, + confirmLoading: false + }) } /** * @description 瑙﹀彂鎸夐挳鎿嶄綔 */ - actionTrigger = (triggerId, record) => { + actionTrigger = (triggerId, record, type) => { const { Tab, BID, btn, selectedData, setting } = this.props - const { loading } = this.state + const { loading, disabled } = this.state - if ((triggerId && btn.uuid !== triggerId) || loading) return + if ((triggerId && btn.uuid !== triggerId) || loading || disabled) return if (((Tab && Tab.supMenu) || setting.supModule) && !BID) { notification.warning({ @@ -156,7 +163,13 @@ duration: 5 }) return + } else if (type === 'linkbtn' && selectedData && selectedData.length === 1) { + if (record[0].$Index !== selectedData[0].$Index) { + return + } } + + this.setState({autoMatic: type === 'autoMatic'}) let _this = this let data = record || selectedData || [] @@ -238,7 +251,7 @@ MKEmitter.emit('mkFormSubmit', btn.uuid) return } else if (btn.OpenType === 'prompt') { - this.updateStatus('start') + this.setState({loading: true}) confirm({ title: this.state.dict['main.action.confirm.tip'], onOk() { @@ -247,21 +260,20 @@ }) }, onCancel() { - _this.updateStatus('over') + _this.setState({loading: false}) } }) } else if (btn.OpenType === 'exec') { - this.updateStatus('start') + this.setState({loading: true}) this.execSubmit(data, () => { this.setState({loading: false})}) } else if (btn.OpenType === 'pop') { - this.updateStatus('start') - let modal = this.state.btnconfig if (!modal && btn.modal) { modal = this.handleModelConfig(btn.modal) } this.setState({ + loading: true, tabledata: data, btnconfig: modal }, () => { @@ -310,6 +322,9 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, '', param, data[0], columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions) // 鏁版嵁婧� + if (btn.output) { + param.key_back_type = 'Y' + } } if (sessionStorage.getItem('dataM') === 'true') { // 鏁版嵁鏉冮檺 @@ -352,7 +367,7 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, formdata, param, data[0], columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions) // 鏁版嵁婧� - if (btn.OpenType === 'formSubmit' && btn.output) { + if (btn.output) { param.key_back_type = 'Y' } } @@ -387,6 +402,9 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, formdata, param, data[0], columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions) // 鏁版嵁婧� + if (btn.output) { + param.key_back_type = 'Y' + } } if (sessionStorage.getItem('dataM') === 'true') { // 鏁版嵁鏉冮檺 @@ -422,6 +440,10 @@ param.menuname = btn.logLabel + if (window.GLOB.probation) { + param.s_debug_type = 'Y' + } + if (check_param) { check_param.menuname = btn.logLabel this.setState({checkParam: check_param}) @@ -449,6 +471,9 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, '', param, cell, columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions, Utils.getAllSearchOptions) // 鏁版嵁婧� + if (btn.output) { + param.key_back_type = 'Y' + } } if (sessionStorage.getItem('dataM') === 'true') { // 鏁版嵁鏉冮檺 @@ -482,6 +507,9 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, formdata, param, cell, columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions) // 鏁版嵁婧� + if (btn.output) { + param.key_back_type = 'Y' + } } if (sessionStorage.getItem('dataM') === 'true') { // 鏁版嵁鏉冮檺 @@ -505,6 +533,9 @@ param.$callbacksql = callbacksql } else { param.LText = getSysDefaultSql(btn, setting, formdata, param, cell, columns, this.props.Tab, false, this.moduleParams, Utils.getAllSearchOptions) // 鏁版嵁婧� + if (btn.output) { + param.key_back_type = 'Y' + } } if (sessionStorage.getItem('dataM') === 'true') { // 鏁版嵁鏉冮檺 @@ -528,6 +559,9 @@ if (param.func === 'sPC_TableData_InUpDe') { param.menuname = btn.logLabel + if (window.GLOB.probation) { + param.s_debug_type = 'Y' + } } return param @@ -657,14 +691,41 @@ } if (params.length <= 20) { - let deffers = params.map(param => { + let deffers = params.map((param, i) => { return new Promise(resolve => { - Api.genericInterface(param).then(res => { - resolve(res) - }, () => { - this.updateStatus('over') - _resolve() - }) + setTimeout(() => { + let _param = null + if (btn.preFunc) { + _param = fromJS(param).toJS() + param.func = btn.preFunc + } + Api.genericInterface(param).then(res => { + if (btn.preFunc && res.status && res.ErrCode !== '-1') { + _param = {..._param, ...res} + + delete _param.status + delete _param.ErrCode + delete _param.ErrMesg + delete _param.message + + setTimeout(() => { + Api.genericInterface(_param).then(result => { + if (!result.status) { + notification.warning({ + top: 92, + message: result.message, + duration: 5 + }) + } + }) + }, 600) + } + resolve(res) + }, () => { + this.updateStatus() + _resolve() + }) + }, 100 * i) }) }) Promise.all(deffers).then(result => { @@ -816,7 +877,7 @@ } resolve() }, () => { - _this.updateStatus('over') + _this.updateStatus() resolve() _resolve() }) @@ -833,7 +894,7 @@ _resolve() } }, () => { - this.updateStatus('over') + this.updateStatus() _resolve() }) } @@ -1044,6 +1105,10 @@ param.LText = Utils.formatOptions(param.LText) param.menuname = btn.logLabel + if (window.GLOB.probation) { + param.s_debug_type = 'Y' + } + if (this.props.menuType === 'HS') { // 鍑芥暟 sPC_TableData_InUpDe 浜戠楠岃瘉 param.open_key = Utils.encryptOpenKey(param.secretkey, param.timestamp) } @@ -1081,7 +1146,7 @@ _resolve() } }, () => { - this.updateStatus('over') + this.updateStatus() _resolve() }) } @@ -1096,8 +1161,35 @@ loadingNumber: params.length || '' }) + let _param = null + + if (btn.preFunc) { + _param = fromJS(param).toJS() + param.func = btn.preFunc + } + Api.genericInterface(param).then(res => { if (res.status) { + if (btn.preFunc && res.ErrCode !== '-1') { + _param = {..._param, ...res} + + delete _param.status + delete _param.ErrCode + delete _param.ErrMesg + delete _param.message + + setTimeout(() => { + Api.genericInterface(_param).then(result => { + if (!result.status) { + notification.warning({ + top: 92, + message: result.message, + duration: 5 + }) + } + }) + }, 600) + } if (params.length === 0) { this.execSuccess(res) _resolve() @@ -1109,7 +1201,7 @@ _resolve() } }, () => { - this.updateStatus('over') + this.updateStatus() _resolve() }) } @@ -1162,7 +1254,7 @@ _resolve() } }, () => { - this.updateStatus('over') + this.updateStatus() _resolve() }) } else { @@ -1268,9 +1360,9 @@ */ execSuccess = (res) => { const { btn } = this.props - const { btnconfig } = this.state + const { btnconfig, autoMatic } = this.state - if (res && res.ErrCode === 'S') { // 鎵ц鎴愬姛 + if ((res && res.ErrCode === 'S') || autoMatic) { // 鎵ц鎴愬姛 notification.success({ top: 92, message: res.ErrMesg || this.state.dict['main.action.confirm.success'], @@ -1284,7 +1376,14 @@ } - if (btn.OpenType !== 'pop' || !btnconfig || btnconfig.setting.finish !== 'unclose') { + if (autoMatic) { + this.setState({ + loading: false, + visible: false + }) + MKEmitter.emit('autoExecOver', btn.uuid, 'success') + return + } else if (btn.OpenType !== 'pop' || !btnconfig || btnconfig.setting.finish !== 'unclose') { this.setState({ loading: false, visible: false @@ -1300,8 +1399,37 @@ id = res.mk_b_id || res[btn.output] || '' } - if (btn.execSuccess !== 'never') { + if (btn.execSuccess === 'closetab') { + MKEmitter.emit('closeTabView', btn.$MenuID) + } else if (btn.execSuccess !== 'never') { MKEmitter.emit('refreshByButtonResult', btn.$menuId, btn.execSuccess, btn, id) + } + + if (btn.refreshTab && btn.refreshTab.length > 0) { + MKEmitter.emit('reloadMenuView', btn.refreshTab[btn.refreshTab.length - 1], 'table') + } + if (btn.switchTab && btn.switchTab.length > 0) { + let id = btn.switchTab[btn.switchTab.length - 1] + let node = document.getElementById('tab' + id) + node && node.click() + } + + if (btn.openmenu && btn.openmenu.length > 0 && btn.MenuID) { + let newtab = { + MenuID: btn.MenuID, + MenuName: btn.MenuName, + MenuNo: btn.MenuNo, + type: btn.tabType, + param: { + $BID: id + } + } + + if (['linkage_navigation', 'linkage', 'menu_board'].includes(window.GLOB.navBar)) { + MKEmitter.emit('modifyTabs', newtab, 'replace') + } else { + MKEmitter.emit('modifyTabs', newtab, 'plus', true) + } } } @@ -1421,12 +1549,13 @@ */ execError = (res) => { const { btn } = this.props + const { btnconfig, autoMatic } = this.state - if (res.ErrCode === 'E') { + if (res.ErrCode === 'E' && !autoMatic) { Modal.error({ title: res.message || res.ErrMesg, }) - } else if (res.ErrCode === 'N') { + } else if (res.ErrCode === 'N' || autoMatic) { notification.error({ top: 92, message: res.message || res.ErrMesg, @@ -1441,6 +1570,16 @@ }) } else if (res.ErrCode === 'NM') { message.error(res.message || res.ErrMesg) + } + + if (autoMatic) { + this.setState({ + loading: false, + loadingNumber: '', + visible: false + }) + MKEmitter.emit('autoExecOver', btn.uuid, 'error') + return } this.setState({ @@ -1490,6 +1629,10 @@ } } + if (btnconfig && btnconfig.setting && btnconfig.setting.errFocus) { + MKEmitter.emit('mkFC', 'focus', btnconfig.setting.errFocus) + } + if (btn.execError !== 'never') { MKEmitter.emit('refreshByButtonResult', btn.$menuId, btn.execError, btn) } @@ -1534,10 +1677,10 @@ */ improveAction = () => { const { btn } = this.props - const { btnconfig } = this.state + const { btnconfig, autoMatic } = this.state if (btnconfig) { - if (btnconfig.setting.display === 'prompt') { // 濡傛灉琛ㄥ崟浠ユ槸鍚︽灞曠ず + if (!autoMatic && btnconfig.setting.display === 'prompt') { // 濡傛灉琛ㄥ崟浠ユ槸鍚︽灞曠ず this.modelconfirm() } else { this.setState({ @@ -1566,14 +1709,14 @@ message: res.message, duration: 5 }) - this.updateStatus('over') + this.setState({ loading: false }) } else if (!_LongParam || (btn.OpenType === 'pop' && _LongParam.type !== 'Modal')) { notification.warning({ top: 92, message: '鏈幏鍙栧埌鎸夐挳閰嶇疆淇℃伅锛�', duration: 5 }) - this.updateStatus('over') + this.setState({ loading: false }) } else { _LongParam = updateForm(_LongParam) _LongParam = this.handleModelConfig(_LongParam) @@ -1581,7 +1724,7 @@ this.setState({ btnconfig: _LongParam }, () => { - if (_LongParam.setting.display === 'prompt') { // 濡傛灉琛ㄥ崟浠ユ槸鍚︽灞曠ず + if (!autoMatic && _LongParam.setting.display === 'prompt') { // 濡傛灉琛ㄥ崟浠ユ槸鍚︽灞曠ず this.modelconfirm() } else { this.setState({ @@ -1598,16 +1741,11 @@ * @description 妯℃�佹锛堣〃鍗曪級锛岀‘璁� */ handleOk = () => { + if (!this.formRef) return this.formRef.handleConfirm().then(res => { - this.setState({ - confirmLoading: true - }) + this.setState({ confirmLoading: true }) - this.execSubmit(this.state.tabledata, () => { - this.setState({ - confirmLoading: false - }) - }, res) + this.execSubmit(this.state.tabledata, () => { this.setState({ confirmLoading: false }) }, res) }) } @@ -1616,10 +1754,10 @@ */ handleCancel = () => { this.setState({ + loading: false, visible: false, confirmLoading: false }) - this.updateStatus('over') } modelconfirm = () => { @@ -1669,7 +1807,7 @@ result.push({ key: item.field, readonly: item.readonly === 'true', - readin: _readin, + readin: item.readin !== 'false' && item.readin !== 'top', fieldlen: _fieldlen, writein: item.writein !== 'false', type: _type, @@ -1685,7 +1823,7 @@ }) }, onCancel() { - _this.updateStatus('over') + _this.setState({ loading: false }) } }) } @@ -1694,7 +1832,7 @@ * @description 鏄剧ず妯℃�佹 */ getModels = () => { - const { setting, BID, btn } = this.props + const { setting, BID, btn, BData } = this.props const { btnconfig, visible } = this.state if (!btnconfig || !btnconfig.setting) return null @@ -1728,16 +1866,16 @@ action={btnconfig} inputSubmit={this.handleOk} data={this.state.tabledata[0]} - BData={this.props.BData} + BData={BData} wrappedComponentRef={(inst) => this.formRef = inst} /> <div style={{ position: 'absolute', zIndex: 1, right: 0, bottom: 0, width: '100%', borderTop: '1px solid #e9e9e9', padding: '10px 16px', background: '#fff', textAlign: 'right'}}> <Button onClick={this.handleCancel} style={{ marginRight: 8 }}> - 鍙栨秷 + {btnconfig.setting.formType !== 'check' ? '鍙栨秷' : '鍏抽棴'} </Button> - <Button onClick={this.handleOk} loading={this.state.confirmLoading} type="primary"> + {btnconfig.setting.formType !== 'check' ? <Button onClick={this.handleOk} loading={this.state.confirmLoading} type="primary"> 纭畾 - </Button> + </Button> : null} </div> </Drawer> ) @@ -1771,7 +1909,7 @@ action={btnconfig} inputSubmit={this.handleOk} data={this.state.tabledata[0]} - BData={this.props.BData} + BData={BData} wrappedComponentRef={(inst) => this.formRef = inst} /> </Modal> @@ -1841,7 +1979,6 @@ const mapStateToProps = (state) => { return { - tabviews: state.tabviews, menuType: state.editLevel } } -- Gitblit v1.8.0