From 1ed217be1abce1a1da18d90a1a9f358beef79acd Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期三, 30 十二月 2020 18:31:28 +0800
Subject: [PATCH] 2020-12-30

---
 src/tabviews/custom/components/share/normalTable/index.jsx |  212 +++++++++++++++++++++++++++++++----------------------
 1 files changed, 124 insertions(+), 88 deletions(-)

diff --git a/src/tabviews/custom/components/share/normalTable/index.jsx b/src/tabviews/custom/components/share/normalTable/index.jsx
index f31c53a..65f1256 100644
--- a/src/tabviews/custom/components/share/normalTable/index.jsx
+++ b/src/tabviews/custom/components/share/normalTable/index.jsx
@@ -3,14 +3,18 @@
 import md5 from 'md5'
 import { connect } from 'react-redux'
 import { is, fromJS } from 'immutable'
-import { Table, Typography, Icon, Col } from 'antd'
+import { Table, Typography, Icon, Col, Switch } from 'antd'
 
 import { modifyTabview } from '@/store/action'
+import asyncComponent from '@/utils/asyncComponent'
 import MKEmitter from '@/utils/events.js'
+import zhCN from '@/locales/zh-CN/main.js'
+import enUS from '@/locales/en-US/main.js'
 import '@/assets/css/table.scss'
 import './index.scss'
 
 const { Paragraph } = Typography
+const CardCellComponent = asyncComponent(() => import('@/tabviews/custom/components/card/cardcellList'))
 
 class BodyRow extends React.Component {
   shouldComponentUpdate (nextProps, nextState) {
@@ -18,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) {
@@ -85,7 +89,7 @@
       })
     }
 
-    return <tr {...resProps} className={className} style={style}/>
+    return <tr {...resProps} onDoubleClick={onDoubleClick} className={className} style={style}/>
   }
 }
 
@@ -166,7 +170,7 @@
   }
 
   render() {
-    let { col, record, className, style, triggerLink, ...resProps } = this.props
+    let { col, config, record, className, style, triggerLink, updateStatus, ...resProps } = this.props
 
     if (!col) return (<td {...resProps} className={className} style={style}/>)
     
@@ -201,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>
         )
@@ -247,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>
         )
@@ -340,6 +344,16 @@
           {content && _href ? <a href={_href} target="_blank" rel="noopener noreferrer">{content}</a> : null }
         </div>
       )
+    } else if (col.type === 'custom') {
+      style.padding = '0px'
+      resProps.children = (
+        <CardCellComponent data={record} cards={config} elements={col.elements} updateStatus={this.props.updateStatus}/>
+      )
+    } else if (col.type === 'action') {
+      style.padding = '0px 5px'
+      resProps.children = (
+        <CardCellComponent data={record} cards={config} elements={col.elements} updateStatus={this.props.updateStatus}/>
+      )
     }
 
     if (resProps.rowSpan === 0) return null
@@ -349,47 +363,41 @@
 
 class NormalTable extends Component {
   static propTpyes = {
-    tableId: PropTypes.string,       // 鍒楄〃Id
     statFValue: PropTypes.any,       // 鍚堣瀛楁鏁版嵁
-    pageSize: PropTypes.any,         // 姣忛〉鏁版嵁
-    MenuName: PropTypes.any,         // 鑿滃崟鍚嶇О
-    dict: PropTypes.object,          // 瀛楀吀椤�
     MenuID: PropTypes.string,        // 鑿滃崟Id
     setting: PropTypes.object,       // 琛ㄦ牸鍏ㄥ眬璁剧疆锛歵ableType锛堣〃鏍兼槸鍚﹀彲閫夈�佸崟閫夈�佸閫夛級銆乧olumnfixed锛堝垪鍥哄畾锛夈�乤ctionfixed锛堟寜閽浐瀹氾級
-    pickup: PropTypes.any,           // 鏁版嵁鏀惰捣
     columns: PropTypes.array,        // 琛ㄦ牸鍒�
     lineMarks: PropTypes.array,      // 琛屾爣璁�
     fields: PropTypes.array,         // 缁勪欢瀛楁闆�
-    BID: PropTypes.any,              // 涓昏〃Id
     ContainerId: PropTypes.any,      // 鏍囩椤靛灞侷d
     BData: PropTypes.any,            // 涓昏〃鏁版嵁
     data: PropTypes.any,             // 琛ㄦ牸鏁版嵁
     total: PropTypes.any,            // 鎬绘暟
     loading: PropTypes.bool,         // 琛ㄦ牸鍔犺浇涓�
     refreshdata: PropTypes.func,     // 琛ㄦ牸涓帓搴忓垪銆侀〉鐮佺殑鍙樺寲鏃跺埛鏂�
-    handleTableId: PropTypes.func,   // 鏁版嵁鍒囨崲
     chgSelectData: PropTypes.func,   // 鏁版嵁鍒囨崲
     refreshbyaction: PropTypes.func, // 鎸夐挳鎵ц瀹屾垚鍚庡埛鏂�
   }
 
   state = {
+    dict: sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS,
+    tableId: '',          // 琛ㄦ牸ID
     selectedRowKeys: [],  // 琛ㄦ牸涓�変腑琛�
     pageIndex: 1,         // 鍒濆椤甸潰绱㈠紩
     pageSize: 10,         // 姣忛〉鏁版嵁鏉℃暟
     columns: null,        // 鏄剧ず鍒�
-    imgShow: false,       // 鍥剧墖鏀惧ぇ妯℃�佹
-    imgSrc: '',           // 鍥剧墖璺緞
     activeIndex: null,    // 鏍囪褰撳墠閫変腑琛�
-    rowspans: null        // 琛屽悎骞跺瓧娈典俊鎭�
+    rowspans: null,       // 琛屽悎骞跺瓧娈典俊鎭�
+    pickup: false,        // 鏀惰捣鏈�夋嫨椤�
+    orderfields: {}       // 鎺掑簭id涓巉ield杞崲
   }
 
   UNSAFE_componentWillMount () {
-    const { menuType, memberLevel, pageSize } = 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
@@ -401,75 +409,76 @@
       }
     }
 
-    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: item,
-              triggerLink: this.triggerLink
+              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,
-            triggerLink: this.triggerLink
-          })
-        }
-      }
-
-      _columns.push(cell)
-    })
+    let _columns = getColumns(columns)
 
     if (rowspans.length === 0) {
       rowspans = null
     }
 
+    let tableId = (() => {
+      let uuid = []
+      let _options = 'abcdefghigklmnopqrstuv'
+      for (let i = 0; i < 19; i++) {
+        uuid.push(_options.substr(Math.floor(Math.random() * 0x20), 1))
+      }
+      return uuid.join('')
+    }) ()
+
+    if (setting.borderColor) { // 杈规棰滆壊
+      let style = `#${tableId} table, #${tableId} tr, #${tableId} th, #${tableId} td {border-color: ${setting.borderColor}}`
+      let ele = document.createElement('style')
+      ele.innerHTML = style
+      document.getElementsByTagName('head')[0].appendChild(ele)
+    }
+
     this.setState({
       columns: _columns,
-      pageSize: pageSize ? pageSize : 10,
-      rowspans
+      rowspans,
+      tableId,
+      orderfields
     })
   }
 
@@ -498,8 +507,9 @@
   }
 
   // 瀛楁閫忚
-  triggerLink = (item, record) => {
-    const { tabviews, MenuID, setting } = this.props
+  triggerLink = (e, item, record) => {
+    const { tabviews, MenuID } = this.props
+    e.stopPropagation()
 
     if (item.linkThdMenu) {
       let tabmenu = item.linkThdMenu
@@ -507,7 +517,7 @@
       tabmenu.param = {
         searchkey: item.field,
         searchval: record[item.field] || '',
-        BID: record[setting.primaryKey]
+        BID: record.$$uuid
       }
   
       tabmenu.selected = true
@@ -543,7 +553,7 @@
           let dataparam = {
             searchkey: item.field,
             searchval: record[item.field] || '',
-            BID: record[setting.primaryKey]
+            BID: record.$$uuid
           }
           _param.UserID = sessionStorage.getItem('UserID')
           _param.LoginUID = sessionStorage.getItem('LoginUID')
@@ -588,9 +598,9 @@
    * @description 鐐瑰嚮鏁磋锛岃Е鍙戝垏鎹紝 鍒ゆ柇鏄惁鍙�夛紝鍗曢�夋垨澶氶�夛紝杩涜瀵瑰簲鎿嶄綔
    */
   changeRow = (record, index) => {
-    const { setting, pickup } = this.props
+    const { setting } = this.props
 
-    if (!setting.tableType || pickup) return
+    if (!setting.tableType || this.state.pickup) return
     
     let newkeys = fromJS(this.state.selectedRowKeys).toJS()
 
@@ -621,17 +631,23 @@
   }
 
   changeTable = (pagination, filters, sorter) => {
+    const { orderfields } = this.state
+
     this.setState({
       pageIndex: pagination.current,
       pageSize: pagination.pageSize,
       selectedRowKeys: [],
-      activeIndex: null
+      activeIndex: null,
+      pickup: false
     })
+
+    sorter.field = orderfields[sorter.field] || ''
+
     this.props.refreshdata(pagination, filters, sorter)
   }
 
   changedata = (index) => {
-    const { data, setting } = this.props
+    const { MenuID, data, setting } = this.props
 
     let _id = ''
     let _data = ''
@@ -641,24 +657,26 @@
       _data = data[index] || ''
     }
 
-    this.props.handleTableId(this.props.tableId, _id, _data)
+    MKEmitter.emit('resetSelectLine', MenuID, _id, _data)
   }
 
   resetTable = (id, repage) => {
-    const { MenuID, tableId } = this.props
+    const { MenuID } = this.props
 
-    if (id !== (MenuID + tableId)) return
+    if (id !== MenuID) return
 
     if (repage === 'false') {
       this.setState({
         selectedRowKeys: [],
-        activeIndex: null
+        activeIndex: null,
+        pickup: false
       })
     } else {
       this.setState({
         pageIndex: 1,
         selectedRowKeys: [],
-        activeIndex: null
+        activeIndex: null,
+        pickup: false
       })
     }
   }
@@ -717,9 +735,23 @@
     return data
   }
 
+  pickupChange = () => {
+    this.setState({
+      pickup: !this.state.pickup
+    })
+  }
+
+  doubleClickLine = (record) => {
+    const { setting } = this.props
+
+    if (!setting.doubleClick) return
+
+    MKEmitter.emit('triggerBtnId', setting.doubleClick, [record])
+  }
+
   render() {
-    const { setting, pickup, statFValue, lineMarks } = this.props
-    const { selectedRowKeys, activeIndex } = this.state
+    const { setting, statFValue, lineMarks, data } = this.props
+    const { selectedRowKeys, activeIndex, pickup, tableId } = this.state
 
     // 璁剧疆琛ㄦ牸閫夋嫨灞炴�э細鍗曢�夈�佸閫夈�佷笉鍙��
     let rowSelection = null
@@ -739,7 +771,7 @@
     }
 
     // 鏁版嵁鏀惰捣鏃讹紝杩囨护宸查�夋暟鎹�
-    let _data = this.props.data ? this.props.data : []
+    let _data = data || []
 
     if (pickup) {
       _data = _data.filter((item, index) => selectedRowKeys.includes(index))
@@ -755,7 +787,7 @@
         pageSizeOptions: ['10', '25', '50', '100', '500', '1000'],
         showSizeChanger: true,
         total: this.props.total || 0,
-        showTotal: (total, range) => `${range[0]}-${range[1]} ${this.props.dict['main.pagination.of']} ${total} ${this.props.dict['main.pagination.items']}`
+        showTotal: (total, range) => `${range[0]}-${range[1]} ${this.state.dict['main.pagination.of']} ${total} ${this.state.dict['main.pagination.items']}`
       }
     }
 
@@ -766,7 +798,10 @@
     }
 
     return (
-      <div className="normal-custom-table">
+      <div className={'normal-custom-table ' + setting.tableHeader} id={tableId}>
+        {(setting.tableType === 'radio' || setting.tableType === 'checkbox') && data && data.length > 0 ?
+          <Switch title="鏀惰捣" className="main-pickup" checkedChildren="寮�" unCheckedChildren="鍏�" defaultChecked={pickup} onChange={this.pickupChange} /> : null
+        }
         <Table
           size="middle"
           components={components}
@@ -781,7 +816,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