From e843aabbda5e8761b6a8af0fe85119bdcf5b3fe8 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 25 十二月 2020 15:09:06 +0800 Subject: [PATCH] bms 登录 --- src/tabviews/custom/components/share/normalTable/index.jsx | 120 +++++++++++++++++++++++++++++------------------------------- 1 files changed, 58 insertions(+), 62 deletions(-) diff --git a/src/tabviews/custom/components/share/normalTable/index.jsx b/src/tabviews/custom/components/share/normalTable/index.jsx index e203f3d..5d403fe 100644 --- a/src/tabviews/custom/components/share/normalTable/index.jsx +++ b/src/tabviews/custom/components/share/normalTable/index.jsx @@ -22,7 +22,7 @@ } render() { - let { lineMarks, data, className, ...resProps } = this.props + let { lineMarks, onDoubleClick, data, className, ...resProps } = this.props let style = {} if (lineMarks && lineMarks.length > 0) { @@ -89,7 +89,7 @@ }) } - return <tr {...resProps} className={className} style={style}/> + return <tr {...resProps} onDoubleClick={onDoubleClick} className={className} style={style}/> } } @@ -205,7 +205,7 @@ if (col.linkThdMenu || col.linkurl) { content = ( <div> - <div className="link-menu" onDoubleClick={() => this.triggerLink(col, record)}></div> + <div className="link-menu" onDoubleClick={(e) => this.triggerLink(e, col, record)}></div> {content} </div> ) @@ -251,7 +251,7 @@ if (col.linkThdMenu || col.linkurl) { content = ( <div> - <div className="link-menu" onDoubleClick={() => this.triggerLink(col, record)}></div> + <div className="link-menu" onDoubleClick={(e) => this.triggerLink(e, col, record)}></div> {content} </div> ) @@ -387,16 +387,16 @@ columns: null, // 鏄剧ず鍒� activeIndex: null, // 鏍囪褰撳墠閫変腑琛� rowspans: null, // 琛屽悎骞跺瓧娈典俊鎭� - pickup: false + pickup: false, // 鏀惰捣鏈�夋嫨椤� + orderfields: {} // 鎺掑簭id涓巉ield杞崲 } UNSAFE_componentWillMount () { - const { menuType, memberLevel, setting, fields } = this.props - let columns = fromJS(this.props.columns).toJS() - let _columns = [] + const { menuType, memberLevel, setting, fields, columns } = this.props let radio = 5 // 铏氬寲姣斾緥 let _format = false // 鏄惁铏氬寲澶勭悊 let rowspans = [] + let orderfields = {} if (window.GLOB.dataFormat && menuType !== 'HS' && memberLevel) { _format = true @@ -408,70 +408,50 @@ } } - columns.forEach(item => { - if (item.hidden === true || item.Hide === 'true') return - let cell = null - - if (item.type === 'colspan') { - cell = {title: item.label, children: []} - - item.subcols.forEach(col => { - if (col.rowspan === 'true') { - rowspans.push(col.field) + let getColumns = (cols) => { + return cols.map(item => { + let cell = null + + if (item.type === 'colspan') { + cell = { title: item.label, align: item.Align } + cell.children = getColumns(item.subcols) + } else { + if (item.rowspan === 'true') { + rowspans.push(item.field) } if (_format && !Math.floor(Math.random() * radio)) { - col.blur = true + item.blur = true + } + + if (item.marks && item.marks.length === 0) { + item.marks = '' } - if (col.marks && col.marks.length === 0) { - col.marks = '' + if (item.field) { + orderfields[item.uuid] = item.field } - cell.children.push({ - align: col.Align, - title: col.label, - dataIndex: col.field || col.uuid, - key: col.uuid, - width: col.Width || 120, + cell = { + align: item.Align, + dataIndex: item.uuid, + title: item.label, + sorter: item.field && item.IsSort === 'true', + width: item.Width || 120, onCell: record => ({ record, - col, - config: col.type === 'custom' ? {setting, columns: fields} : null, + col: item, + config: item.type === 'custom' || item.type === 'action' ? {setting, columns: fields} : null, triggerLink: this.triggerLink, updateStatus: this.updateStatus }) - }) - }) - } else { - if (item.rowspan === 'true') { - rowspans.push(item.field) + } } - if (_format && !Math.floor(Math.random() * radio)) { - item.blur = true - } + + return cell + }) + } - if (item.marks && item.marks.length === 0) { - item.marks = '' - } - - cell = { - align: item.Align, - dataIndex: item.field || item.uuid, - title: item.label, - sorter: item.field && item.IsSort === 'true', - width: item.Width || 120, - onCell: record => ({ - record, - col: item, - config: item.type === 'custom' || item.type === 'action' ? {setting, columns: fields} : null, - triggerLink: this.triggerLink, - updateStatus: this.updateStatus - }) - } - } - - _columns.push(cell) - }) + let _columns = getColumns(columns) if (rowspans.length === 0) { rowspans = null @@ -479,7 +459,8 @@ this.setState({ columns: _columns, - rowspans + rowspans, + orderfields }) } @@ -508,8 +489,9 @@ } // 瀛楁閫忚 - triggerLink = (item, record) => { + triggerLink = (e, item, record) => { const { tabviews, MenuID } = this.props + e.stopPropagation() if (item.linkThdMenu) { let tabmenu = item.linkThdMenu @@ -631,6 +613,8 @@ } changeTable = (pagination, filters, sorter) => { + const { orderfields } = this.state + this.setState({ pageIndex: pagination.current, pageSize: pagination.pageSize, @@ -638,6 +622,9 @@ activeIndex: null, pickup: false }) + + sorter.field = orderfields[sorter.field] || '' + this.props.refreshdata(pagination, filters, sorter) } @@ -736,6 +723,14 @@ }) } + doubleClickLine = (record) => { + const { setting } = this.props + + if (!setting.doubleClick) return + + MKEmitter.emit('triggerBtnId', setting.doubleClick, [record]) + } + render() { const { setting, statFValue, lineMarks, data } = this.props const { selectedRowKeys, activeIndex, pickup } = this.state @@ -803,7 +798,8 @@ lineMarks, data: record, className: index === activeIndex ? ' mk-row-active ' : '', - onClick: () => {this.changeRow(record, index)} + onClick: () => {this.changeRow(record, index)}, + onDoubleClick: () => {this.doubleClickLine(record)} } }} onChange={this.changeTable} -- Gitblit v1.8.0