From c18f79e01a2705d34d5ac2923a26913dba07ea14 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期六, 03 八月 2024 16:04:18 +0800
Subject: [PATCH] 2024-08-03

---
 src/tabviews/custom/components/card/cardcellList/index.jsx | 1704 +++++++++++++++++++++++++++++++++++++---------------------
 1 files changed, 1,077 insertions(+), 627 deletions(-)

diff --git a/src/tabviews/custom/components/card/cardcellList/index.jsx b/src/tabviews/custom/components/card/cardcellList/index.jsx
index 1d12717..f585b93 100644
--- a/src/tabviews/custom/components/card/cardcellList/index.jsx
+++ b/src/tabviews/custom/components/card/cardcellList/index.jsx
@@ -1,18 +1,18 @@
 import React, {Component} from 'react'
 import PropTypes from 'prop-types'
 import { is, fromJS } from 'immutable'
-import { Col, Tooltip, notification, Typography } from 'antd'
+import { Col, Tooltip, notification, Typography, message } from 'antd'
 import moment from 'moment'
 
 // import Api from '@/api'
-import asyncComponent from './asyncButtonComponent'
-import asyncElementComponent from '@/utils/asyncComponent'
+import asyncComponent from '@/utils/asyncComponent'
 import { getMark } from '@/utils/utils.js'
 import MkIcon from '@/components/mk-icon'
 import MKEmitter from '@/utils/events.js'
-import LostPng from '@/assets/img/lost.png'
+import Encrypts from '@/components/encrypts'
 import './index.scss'
 
+moment.suppressDeprecationWarnings = true
 const { Paragraph } = Typography
 const NormalButton = asyncComponent(() => import('@/tabviews/zshare/actionList/normalbutton'))
 const ExcelInButton = asyncComponent(() => import('@/tabviews/zshare/actionList/excelInbutton'))
@@ -23,14 +23,50 @@
 const ChangeUserButton = asyncComponent(() => import('@/tabviews/zshare/actionList/changeuserbutton'))
 const PrintButton = asyncComponent(() => import('@/tabviews/zshare/actionList/printbutton'))
 const FuncMegvii = asyncComponent(() => import('@/tabviews/zshare/actionList/funcMegvii'))
-const BarCode = asyncElementComponent(() => import('@/components/barcode'))
-const QrCode = asyncElementComponent(() => import('@/components/qrcode'))
-const MkProgress = asyncElementComponent(() => import('@/components/mkProgress'))
+const FuncZip = asyncComponent(() => import('@/tabviews/zshare/actionList/funczip'))
+const ExportPdf = asyncComponent(() => import('@/tabviews/zshare/actionList/exportPdf'))
+const FuncButton = asyncComponent(() => import('@/tabviews/zshare/actionList/funcbutton'))
+const EditLine = asyncComponent(() => import('@/tabviews/zshare/actionList/editLine'))
+const BarCode = asyncComponent(() => import('@/components/barcode'))
+const QrCode = asyncComponent(() => import('@/components/qrcode'))
+const MkProgress = asyncComponent(() => import('@/components/mkProgress'))
 const Video = asyncComponent(() => import('@/components/video'))
+const MkPicture = asyncComponent(() => import('@/components/mkPicture'))
 const PicRadio = {
   '4:3': '75%', '3:2': '66.67%', '16:9': '56.25%', '2:1': '50%', '3:1': '33.33%', '4:1': '25%',
   '5:1': '20%', '6:1': '16.67%', '7:1': '14.29%', '8:1': '12.5%', '9:1': '11.11%',
   '10:1': '10%', '3:4': '133.33%', '2:3': '150%', '9:16': '177.78%'
+}
+
+class TextCell extends Component {
+  componentDidMount() {
+    if (this.node && this.node.scrollHeight > this.node.offsetHeight) {
+      this.node.style.display = 'block'
+    }
+  }
+
+  componentDidUpdate() {
+    if (this.node) {
+      if (this.node.scrollHeight > this.node.offsetHeight) {
+        this.node.style.display = 'block'
+      } else {
+        this.node.style.display = 'flex'
+      }
+    }
+  }
+
+  render() {
+    const { card, className, value } = this.props
+
+    let lineStyle = {height: card.innerHeight}
+    lineStyle.display = 'flex'
+    lineStyle.alignItems = card.alignItems
+    lineStyle.justifyContent = card.style.textAlign || 'left'
+  
+    return (
+      <div ref={ref => this.node = ref} className={className} style={lineStyle}>{value}</div>
+    )
+  }
 }
 
 class CardCellComponent extends Component {
@@ -42,24 +78,8 @@
     elements: PropTypes.array,       // 鍏冪礌闆�
   }
 
-  state = {
-    card: null,          // 缂栬緫涓厓绱�
-    elements: null,      // 鎸夐挳缁�
-  }
-
-  /**
-   * @description 鎼滅储鏉′欢鍒濆鍖�
-   */
-  UNSAFE_componentWillMount () {
-    const { elements } = this.props
-
-    this.setState({
-      elements: fromJS(elements).toJS()
-    })
-  }
-
   shouldComponentUpdate (nextProps, nextState) {
-    return !is(fromJS(this.state), fromJS(nextState)) || !is(fromJS(this.props), fromJS(nextProps))
+    return !is(fromJS(this.props.data), fromJS(nextProps.data)) || (nextProps.syncData ? !is(fromJS(this.props.syncData), fromJS(nextProps.syncData)) : false)
   }
 
   /**
@@ -74,16 +94,40 @@
   openNewView = (e, card) => {
     const { cardCell, data, cards } = this.props
 
-    if (data.$disabled) return
+    e.stopPropagation()
 
-    if (card.anchors && card.anchors.length > 0) {
+    if (card.anchors) {
       let id = card.anchors[card.anchors.length - 1]
       let node = document.getElementById('anchor' + id)
       node && node.scrollIntoView({behavior: 'smooth', block: 'center', inline: 'nearest'})
     }
 
-    if (!card.link) return
-    e.stopPropagation()
+    if (card.linkType === 'qywx') return
+    if (card.linkType === 'linkmenu') {
+      if (card.linkThdMenu) {
+        let __param = {
+          $BID: data.$$uuid || ''
+        }
+  
+        if (card.field) {
+          __param.$searchkey = card.field.toLowerCase()
+          __param.$searchval = data[card.field] || ''
+        }
+      
+        Object.keys(data).forEach(key => {
+          if (/^\$/.test(key)) return
+          if (key === 'children') return
+          __param[key] = data[key]
+        })
+
+        let tabmenu = card.linkThdMenu
+    
+        tabmenu.param = __param
+    
+        MKEmitter.emit('modifyTabs', tabmenu, true)
+      }
+      return
+    }
     
     let url = ''
 
@@ -112,6 +156,8 @@
         _url = _url + `?subject=鏉ヨ嚜${fullName}鐨勯偖浠禶
       }
       window.open(_url)
+      return
+    } else if (card.linkType === 'other' && /^@menuid@/ig.test(url)) {
       return
     }
 
@@ -178,25 +224,46 @@
     //   })
     //   return
     // }
-
-    let Id = ''
-    let con = '?'
-
-    if (/\?/ig.test(url)) {
-      con = '&'
-    }
-
-    if (cards.subtype === 'propcard' && cardCell) {
-      Id = cardCell.setting.primaryId || ''
-    } else {
-      Id = data[cards.setting.primaryKey] || ''
-    }
     
-    if (card.joint === 'true') {
-      url = url + `${con}id=${Id}&appkey=${window.GLOB.appkey}&userid=${sessionStorage.getItem('UserID')}&LoginUID=${sessionStorage.getItem('LoginUID') || ''}`
-    }
+    if (/^http.+(.txt|.doc|.docx|.pdf|.xlsx|.xls|.zip|.rar|.ppt)$/i.test(url)) {
+      let name = url.replace(/.+\//g, '').replace(/\.{1}[^.]*$/g, '')
+      let d = document.createElement('a')
+      d.href = url
+      d.setAttribute('download', name)
+      d.setAttribute('target', '_blank')
+      document.body.appendChild(d)
+      d.click()
+      d.remove()
+    } else {
+      let Id = data.$$uuid || ''
 
-    window.open(url)
+      if (cards.subtype === 'propcard' && cardCell) {
+        Id = cardCell.setting.primaryId || ''
+      }
+
+      if (card.joint === 'true') {
+        let con = '?'
+  
+        if (/\?/ig.test(url)) {
+          con = '&'
+        }
+  
+        url = url + `${con}id=${Id}&appkey=${window.GLOB.appkey}&userid=${sessionStorage.getItem('UserID')}&LoginUID=${sessionStorage.getItem('LoginUID') || ''}`
+      } else if (/@/.test(url)) {
+        url = url.replace(/@id@/ig, Id)
+        url = url.replace(/@appkey@/ig, window.GLOB.appkey)
+        url = url.replace(/@userid@/ig, sessionStorage.getItem('UserID'))
+        url = url.replace(/@LoginUID@/ig, sessionStorage.getItem('LoginUID'))
+
+        Object.keys(data).forEach(key => {
+          if (/^\$/.test(key)) return
+          let reg = new RegExp('@' + key + '@', 'ig')
+          url = url.replace(reg, data[key])
+        })
+      }
+  
+      window.open(url)
+    }
   }
 
   getColor = (marks) => {
@@ -235,668 +302,1051 @@
     return color
   }
 
-  getContent = (card) => {
-    const { data, cards } = this.props
+  getContent = () => {
+    const { data, cards, elements } = this.props
 
-    if (card.eleType === 'sequence') {
-      let _style = {}
-      if (card.marks) {
-        _style.width = card.innerHeight
-        _style.height = card.innerHeight
-        _style.lineHeight = card.innerHeight + 'px'
+    let contents = []
 
-        let mark = getMark(card.marks, data, _style)
+    elements.forEach(card => {
+      let _style_ = null
 
-        _style = mark.style
+      if (card.style && card.style.clear === 'left') {
+        _style_ = {clear: 'left'}
+      } else if (card.style && card.style.clear === 'right') {
+        _style_ = {float: 'right'}
       }
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            <div className="ant-mk-text"><span className="sequence-wrap" style={_style}>{data.$Index || ''}</span></div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'text') {
-      let val = ''
-      let _style = card.style ? {...card.style} : {}
 
-      if (card.datatype === 'static') {
-        val = card.value || ''
-        if (/@username@|@fullName@|@login_city@/ig.test(val)) {
-          let userName = sessionStorage.getItem('User_Name') || ''
-          let fullName = sessionStorage.getItem('Full_Name') || ''
-          let city = sessionStorage.getItem('city') || ''
-          val = val.replace(/@username@/ig, userName).replace(/@fullName@/ig, fullName).replace(/@login_city@/ig, city)
+      if (card.eleType === 'sequence') {
+        let _style = {}
+        let className = ''
+        if (card.marks) {
+          _style.width = card.innerHeight
+          _style.height = card.innerHeight
+          _style.lineHeight = card.innerHeight + 'px'
+  
+          let mark = getMark(card.marks, data, _style)
+
+          className = mark.signType
         }
-      } else if (data.hasOwnProperty(card.field)) {
-        val = data[card.field]
-      }
-
-      if (val === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      if (val !== '' && card.format) {
-        let _val = null
-
-        if (card.format === 'calendar1') {
-          _val = moment(val).calendar(null, {
-            sameDay: '[浠婂ぉ] ahh:mm',
-            nextDay: '[鏄庡ぉ] ahh:mm',
-            nextWeek: 'MM鏈圖D鏃� ahh:mm',
-            lastDay: '[鏄ㄥぉ] ahh:mm',
-            lastWeek: 'dddd ahh:mm',
-            sameElse: 'MM鏈圖D鏃� ahh:mm'
-          })
-        } else if (card.format === 'calendar2') {
-          let time = new Date(val).getTime()
-          if (!isNaN(time)) {
-            time = parseInt(time / 60000)                                     // 鏃堕棿鍊�
-            let now = parseInt(new Date().getTime() / 60000)                  // 褰撳墠鏃堕棿鍊�
-            let start = new Date(new Date().toDateString()).getTime() / 60000 // 浠婂ぉ闆剁偣鏃堕棿鍊�
-            let split = now - time
-
-            if (split < 0) { // 鏃堕棿鍊煎湪褰撳墠鏃堕棿涔嬪悗
-              _val = moment(val).format('MM鏈圖D鏃� HH:mm')
-            } else if (split < 3) {
-              _val = '鍒氬垰'
-            } else if (split < 5) {
-              _val = '3鍒嗛挓鍓�'
-            } else if (split < 10) {
-              _val = '5鍒嗛挓鍓�'
-            } else if (split < 20) {
-              _val = '10鍒嗛挓鍓�'
-            } else if (split < 30) {
-              _val = '20鍒嗛挓鍓�'
-            } else if (split < 60) {
-              _val = '30鍒嗛挓鍓�'
-            } else if (split < 420 || time > start) { // 7灏忔椂鍐呮垨鏃堕棿鍊煎湪浠婂ぉ闆剁偣鍚�
-              _val = parseInt(split / 60) + '灏忔椂鍓�'
-            } else {                                  // 鏃堕棿鍊煎湪浠婂ぉ闆剁偣涔嬪墠
-              let _day = parseInt((start - time) / (24 * 60)) + 1
-              if (_day === 1) {
-                _val = '鏄ㄥぉ'
-              } else if (_day <= 30) {
-                _val = _day + '澶╁墠'
-              } else {
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={card.style}>
+              <div className={'ant-mk-text line1' + className} style={{height: card.innerHeight || 'auto'}}><span className="sequence-wrap" style={_style}>{card.prefix || ''}{data.$Index || ''}{card.postfix || ''}</span></div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'text') {
+        let val = ''
+        let _style = {...card.style}
+  
+        if (card.datatype === 'static') {
+          val = card.value || ''
+          if (/@.+@/g.test(val)) {
+            if (/@username@|@fullName@|@mk_city@|@appname@|@bid@/ig.test(val)) {
+              let userName = sessionStorage.getItem('User_Name') || ''
+              let fullName = sessionStorage.getItem('Full_Name') || ''
+              let city = sessionStorage.getItem('city') || ''
+              let appname = sessionStorage.getItem('appname') || ''
+              let bid = data.$$BID || ''
+              val = val.replace(/@username@/ig, userName).replace(/@fullName@/ig, fullName).replace(/@mk_city@/ig, city).replace(/@appname@/ig, appname).replace(/@bid@/ig, bid)
+            } else if (/@month@/ig.test(val)) {
+              val = val.replace(/@month@/ig, new Date().toLocaleString('en-US', { month: 'long' }))
+            } else if (/@week@/ig.test(val)) {
+              val = val.replace(/@week@/ig, (() => {
+                let day = new Date().getDay()
+                let weeks = ['鏄熸湡鏃�', '鏄熸湡涓�', '鏄熸湡浜�', '鏄熸湡涓�', '鏄熸湡鍥�', '鏄熸湡浜�', '鏄熸湡鍏�']
+                return weeks[day]
+              })())
+            } else if (/@day@/ig.test(val)) {
+              val = val.replace(/@day@/ig, (() => {
+                let day = new Date().getDate()
+                return day < 10 ? '0' + day : day
+              })())
+            }
+          }
+        } else if (data.hasOwnProperty(card.field)) {
+          val = data[card.field] + ''
+        }
+  
+        if (val && card.format && card.format !== 'encryption') {
+          let _val = null
+  
+          if (val < '1949-10-02') {
+            val = ''
+          } else if (card.format === 'calendar1') {
+            _val = moment(val).calendar(null, {
+              sameDay: '[浠婂ぉ] ahh:mm',
+              nextDay: '[鏄庡ぉ] ahh:mm',
+              nextWeek: 'MM鏈圖D鏃� ahh:mm',
+              lastDay: '[鏄ㄥぉ] ahh:mm',
+              lastWeek: 'dddd ahh:mm',
+              sameElse: 'MM鏈圖D鏃� ahh:mm'
+            })
+          } else if (card.format === 'calendar2') {
+            let time = new Date(val).getTime()
+            if (!isNaN(time)) {
+              time = parseInt(time / 60000)                                     // 鏃堕棿鍊�
+              let now = parseInt(new Date().getTime() / 60000)                  // 褰撳墠鏃堕棿鍊�
+              let start = new Date(new Date().toDateString()).getTime() / 60000 // 浠婂ぉ闆剁偣鏃堕棿鍊�
+              let split = now - time
+  
+              if (split < 0) { // 鏃堕棿鍊煎湪褰撳墠鏃堕棿涔嬪悗
                 _val = moment(val).format('MM鏈圖D鏃� HH:mm')
+              } else if (split < 3) {
+                _val = '鍒氬垰'
+              } else if (split < 5) {
+                _val = '3鍒嗛挓鍓�'
+              } else if (split < 10) {
+                _val = '5鍒嗛挓鍓�'
+              } else if (split < 20) {
+                _val = '10鍒嗛挓鍓�'
+              } else if (split < 30) {
+                _val = '20鍒嗛挓鍓�'
+              } else if (split < 60) {
+                _val = '30鍒嗛挓鍓�'
+              } else if (split < 420 || time > start) { // 7灏忔椂鍐呮垨鏃堕棿鍊煎湪浠婂ぉ闆剁偣鍚�
+                _val = parseInt(split / 60) + '灏忔椂鍓�'
+              } else {                                  // 鏃堕棿鍊煎湪浠婂ぉ闆剁偣涔嬪墠
+                let _day = parseInt((start - time) / (24 * 60)) + 1
+                if (_day === 1) {
+                  _val = '鏄ㄥぉ'
+                } else if (_day <= 30) {
+                  _val = _day + '澶╁墠'
+                } else {
+                  _val = moment(val).format('MM鏈圖D鏃� HH:mm')
+                }
+              }
+            }
+          } else {
+            _val = moment(val).format(card.format)
+          }
+
+          if (_val && _val !== 'Invalid date') {
+            val = _val
+          }
+        }
+
+        if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        if (val !== '') {
+          let orival = val
+
+          if (card.linkType === 'download') {
+            let url = ''
+  
+            if (card.link === 'static') {
+              url = card.linkurl
+            } else {
+              url = data[card.linkurl]
+            }
+  
+            if (/^http.+(.txt|.doc|.docx|.pdf|.xlsx|.xls|.zip|.rar)$/i.test(url)) {
+              if (/pdf$/i.test(url)) {
+                val = <><img src="./media/pdf.png" className="file-image" alt=""/> {val}</>
+              } else if (/(.doc|.docx)$/i.test(url)) {
+                val = <><img src="./media/word.png" className="file-image" alt=""/> {val}</>
+              } else if (/(.xlsx|.xls)$/i.test(url)) {
+                val = <><img src="./media/excel.png" className="file-image" alt=""/> {val}</>
+              } else if (/(.zip|.rar)$/i.test(url)) {
+                val = <><img src="./media/rar.png" className="file-image" alt=""/> {val}</>
+              } else {
+                val = <><img src="./media/txt.png" className="file-image" alt=""/> {val}</>
               }
             }
           }
-        } else {
-          _val = moment(val).format(card.format)
-        }
-        
-        // if (card.format === 'YYYY-MM-DD' && /^[1-9]\d{3}(-|\/)(0[1-9]|1[0-2])(-|\/)(0[1-9]|[1-2][0-9]|3[0-1])/.test(val)) {
-        //   val = `${val.substr(0, 4)}-${val.substr(5, 2)}-${val.substr(8, 2)}`
-        // }
-        if (_val && _val !== 'Invalid date') {
-          val = _val
-        }
-      }
 
-      if (val !== '') {
-        let orival = val
-        if (card.fixStyle === 'alone') {
-          let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
-          val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
-        } else {
-          val = `${card.prefix || ''}${val}${card.postfix || ''}`
-        }
-        if (card.copyable === 'true') {
-          val = <Paragraph copyable={{ text: orival }}>{val}</Paragraph>
-        }
-      }
-
-      if (card.marks) {
-        let mark = getMark(card.marks, data, _style)
-
-        _style = mark.style
-
-        if (mark.icon) {
-          if (mark.position === 'front') {
-            val = <span><MkIcon style={{color: mark.color}} type={mark.icon} /> {val}</span>
-          } else {
-            val = <span>{val} <MkIcon style={{color: mark.color}} type={mark.icon} /></span>
+          if (card.format === 'encryption') {
+            val = <Encrypts value={val} />
           }
-        }
-      }
+          if (card.fixStyle === 'alone') {
+            let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+            val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
+          } else {
+            val = <span>{card.prefix || ''}{val}{card.postfix || ''}</span>
+          }
 
-      if (card.link || (card.anchors && card.anchors.length > 0)) {
-        _style.cursor = 'pointer'
-      }
+          if (card.copyable === 'true') {
+            if (card.link || card.anchors) {
+              let url = orival
+
+              if (card.link === 'static') {
+                url = card.linkurl
+              } else if (card.link === 'dynamic') {
+                url = data[card.linkurl]
+              }
+
+              val = <span>{val}<Paragraph style={{display: 'inline-block'}} onClick={(e) => e.stopPropagation()} copyable={{ text: url }}></Paragraph></span>
+            } else {
+              val = <Paragraph copyable={{ text: orival }}>{val}</Paragraph>
+            }
+          }
+        } else if (card.fixStyle === 'alone') {
+          let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+          val = <span style={_s}>{card.prefix || ''}{card.postfix || ''}</span>
+        }
   
-      if (card.bgImage && data[card.bgImage]) {
-        _style.backgroundImage = `url('${data[card.bgImage]}')`
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={_style} onClick={(e) => {this.openNewView(e, card)}}>
-            <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight || 'auto'}}>{val}</div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'number') {
-      let val = ''
-      let _style = card.style ? {...card.style} : {}
-
-      if (card.datatype === 'static') {
-        val = card.value
-      } else if (data.hasOwnProperty(card.field)) {
-        val = data[card.field]
-      }
-
-      if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      if (typeof(val) === 'number') {
-        if (card.format === 'percent') {
-          val = val * 100
-        } else if (card.format === 'abs') {
-          val = Math.abs(val)
+        let className = ''
+        if (card.marks) {
+          let mark = getMark(card.marks, data, _style)
+  
+          if (mark.icon) {
+            if (mark.position === 'front') {
+              val = <span><MkIcon style={mark.innerStyle} type={mark.icon} /> {val}</span>
+            } else {
+              val = <span>{val} <MkIcon style={mark.innerStyle} type={mark.icon} /></span>
+            }
+          } else if (mark.space) {
+            val = <><span style={{float: 'left'}} dangerouslySetInnerHTML={{__html: mark.space}}></span>{val}</>
+          } else if (mark.point) {
+            if (mark.position === 'front') {
+              val = <>{mark.point}{val}</>
+            } else {
+              val = <>{val}{mark.point}</>
+            }
+          }
+          className = mark.signType
+        }
+    
+        if (card.bgImage && data[card.bgImage]) {
+          _style.backgroundImage = `url('${data[card.bgImage]}')`
         }
 
-        if (typeof(card.decimal) === 'number') {
-          let decimal = card.decimal
-
-          if (card.format === 'percent') {
-            decimal = decimal - 2
-          }
-          if (decimal < 0) {
-            decimal = 0
-          }
-          
-          val = val.toFixed(decimal)
+        if (!data.$disabled && (card.link || card.anchors)) {
+          _style.cursor = 'pointer'
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={_style} onClick={(e) => {this.openNewView(e, card)}}>
+                {card.alignItems ? <TextCell card={card} className={'ant-mk-text line' + (card.height || '') + className} value={val}/> : 
+                <div className={'ant-mk-text line' + (card.height || '') + className} style={{height: card.innerHeight}}>{val}</div>}
+              </div>
+            </div>
+          )
         } else {
-          val = '' + val
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={_style}>
+                {card.alignItems ? <TextCell card={card} className={'ant-mk-text line' + (card.height || '') + className} value={val}/> : 
+                <div className={'ant-mk-text line' + (card.height || '') + className} style={{height: card.innerHeight}}>{val}</div>}
+              </div>
+            </div>
+          )
+        }
+      } else if (card.eleType === 'number') {
+        let val = ''
+        let _style = {...card.style}
+  
+        if (card.datatype === 'static') {
+          val = card.value
+        } else if (data.hasOwnProperty(card.field)) {
+          val = data[card.field]
+        }
+  
+        if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        if (!isNaN(val) && val !== '') {
+          val = +val
+          if (card.round) {
+            val = Math.round(val * card.round) / card.round
+          }
+          if (card.format === 'percent') {
+            val = val * 100
+          } else if (card.format === 'abs') {
+            val = Math.abs(val)
+          }
+  
+          if (card.round) {
+            val = val.toFixed(card.decimal)
+          } else {
+            val = '' + val
+          }
+
+          if (card.format === 'percent' && (!card.postfix || card.postfix.indexOf('%') === -1)) {
+            val = val + '%'
+          } else if (card.format === 'thdSeparator') {
+            val = val.replace(/\d{1,3}(?=(\d{3})+(\.\d*)?$)/g, '$&,')
+          }
+        }
+  
+        if (val !== '') {
+          if (card.fixStyle === 'alone') {
+            let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+            val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
+          } else {
+            val = `${card.prefix || ''}${val}${card.postfix || ''}`
+          }
+        } else if (card.fixStyle === 'alone') {
+          let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+          val = <span style={_s}>{card.prefix || ''}{card.postfix || ''}</span>
         }
         
-        if (card.format === 'percent' && (!card.postfix || card.postfix.indexOf('%') === -1)) {
-          val = val + '%'
-        } else if (card.format === 'thdSeparator') {
-          val = val.replace(/\d{1,3}(?=(\d{3})+(\.\d*)?$)/g, '$&,')
+        let className = ''
+        if (card.marks) {
+          let mark = getMark(card.marks, data, _style)
+  
+          if (mark.icon) {
+            if (mark.position === 'front') {
+              val = <span><MkIcon style={mark.innerStyle} type={mark.icon} /> {val}</span>
+            } else {
+              val = <span>{val} <MkIcon style={mark.innerStyle} type={mark.icon} /></span>
+            }
+          } else if (mark.space) {
+            val = <><span style={{float: 'left'}} dangerouslySetInnerHTML={{__html: mark.space}}></span>{val}</>
+          } else if (mark.point) {
+            if (mark.position === 'front') {
+              val = <>{mark.point}{val}</>
+            } else {
+              val = <>{val}{mark.point}</>
+            }
+          }
+          className = mark.signType
         }
-      }
 
-      if (val !== '') {
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={_style}>
+              {card.alignItems ? <TextCell card={card} className={'ant-mk-text line' + (card.height || '') + className} value={val}/> : 
+              <div className={'ant-mk-text line' + (card.height || '') + className} style={{height: card.innerHeight}}>{val}</div>}
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'icon') {
+        let val = ''
+        let icon = ''
+
+        if (card.datatype === 'dynamic') {
+          icon = data[card.field] || ''
+        } else if (card.tipType === 'text') {
+          icon = card.value
+        } else {
+          icon = card.icon
+        }
+
+        if (!icon && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        if (data.hasOwnProperty(card.tooltip)) {
+          val = data[card.tooltip]
+        } else {
+          val = card.tooltip
+        }
+
+        if (/\\n|\n/.test(val)) {
+          val = val.replace(/(\\n|\n)$/, '')
+        
+          if (val) {
+            val = val.split(/\\n|\n/)
+        
+            val = <div>{val.map((cell, i) => <div style={{marginBottom: 2}} key={i}>{cell}</div>)}</div>
+          }
+        }
+
+        if (card.tipType === 'text') {
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={card.style}>
+                {val ? <Tooltip title={val}>
+                  <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight}}>{icon}</div>
+                </Tooltip> : <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight}}>{icon}</div>}
+              </div>
+            </div>
+          )
+        } else {
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={card.style}>
+                {val ? <Tooltip title={val}>
+                  <MkIcon className="ant-mk-icon" style={{height: card.innerHeight}} type={icon}/>
+                </Tooltip> : <MkIcon className="ant-mk-icon" style={{height: card.innerHeight}} type={icon}/>}
+              </div>
+            </div>
+          )
+        }
+      } else if (card.eleType === 'slider') {
+        let val = 0
+        let color = card.color
+  
+        if (card.datatype === 'static') {
+          val = card.value
+        } else if (data.hasOwnProperty(card.field)) {
+          val = parseFloat(data[card.field])
+          if (isNaN(val)) {
+            val = 0
+          }
+        }
+  
+        val = val / card.maxValue * 100
+        val = parseInt(val * 100) / 100
+  
+        if (card.marks) {
+          let _color = this.getColor(card.marks)
+          color = _color ? _color : color
+        }
+  
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={card.style}>
+              <MkProgress value={val} config={card} color={color}/>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'picture') {
+        let _imagestyle = {}
+        let _style = {margin: '0 auto', ...card.style}
+        let url = ''
+        if (card.maxWidth) {
+          _style.maxWidth = card.maxWidth
+          if (_style.marginLeft === '0px' && _style.marginRight === '0px') {
+            delete _style.marginLeft
+            delete _style.marginRight
+          }
+        }
+  
+        if (card.datatype === 'static') {
+          url = card.url || ''
+          if (url === '@icon@') {
+            url = sessionStorage.getItem('avatar') || ''
+          }
+        } else {
+          url = data[card.field] || ''
+        }
+  
+        if (url === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        if (PicRadio[card.lenWidRadio]) {
+          _imagestyle.paddingTop = PicRadio[card.lenWidRadio]
+        } else {
+          _imagestyle.paddingTop = '100%'
+        }
+
+        _imagestyle.borderRadius = _style.borderRadius || 0
+        _imagestyle.backgroundSize = _style.backgroundSize || 'cover'
+        _imagestyle.backgroundPosition = _style.backgroundPosition || 'center'
+        _imagestyle.backgroundRepeat = _style.backgroundRepeat || 'no-repeat'
+  
+        if (_style.position === 'absolute') {
+          _style.width = '100%'
+        }
+        
+        let scale = url && card.scale === 'true'
+        let urls = url ? url.split(',').filter(Boolean) : ['']
+        
+        if (card.link && !data.$disabled) {
+          _style.cursor = 'pointer'
+          urls.forEach((u, i) => {
+            contents.push(<div className={'ant-col ant-col-' + card.width} key={card.uuid + i} style={_style_} span={card.width}>
+              <div style={_style} onClick={(e) => {this.openNewView(e, card)}}>
+                <MkPicture style={_imagestyle} lostTip={card.lostTip !== 'false'} scale={scale} url={u} urls={urls}/>
+              </div>
+            </div>)
+          })
+        } else {
+          urls.forEach((u, i) => {
+            contents.push(<div className={'ant-col ant-col-' + card.width} key={card.uuid + i} style={_style_} span={card.width}>
+              <div style={_style}>
+                <MkPicture style={_imagestyle} lostTip={card.lostTip !== 'false'} scale={scale} url={u} urls={urls}/>
+              </div>
+            </div>)
+          })
+        }
+      } else if (card.eleType === 'splitline') {
+        let _borderWidth = card.borderWidth === undefined ? 1 : card.borderWidth
+        _style_ = _style_ || {}
+        _style_.minHeight = _borderWidth
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} span={card.width} style={_style_}>
+            <div style={card.style}>
+              <div className="ant-mk-splitline" style={{borderColor: card.color, borderWidth: _borderWidth}}></div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'barcode') {
+        let val = ''
+  
+        if (card.datatype === 'static') {
+          val = card.value
+        } else if (data.hasOwnProperty(card.field)) {
+          val = data[card.field] || ''
+        }
+  
+        if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={card.style}>
+              <div style={{height: card.innerHeight || 25}}>
+                {val ? <BarCode card={card} value={val}/> : null}
+              </div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'video') {
+        let url = ''
+  
+        if (card.datatype === 'static') {
+          url = card.url
+        } else {
+          url = data[card.field] || ''
+        }
+  
+        if (!url && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        let poster = ''
+  
+        if (card.posterType === 'dynamic') {
+          poster = data[card.posterField] || ''
+        } else {
+          poster = card.posterUrl || ''
+        }
+
+        let urls = url.split(',').filter(Boolean)
+  
+        urls.forEach((u, i) => {
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid + i} style={_style_} span={card.width}>
+              <div className="video-wrap" style={card.style}>
+                <Video card={card} poster={poster} value={u}/>
+              </div>
+            </div>
+          )
+        })
+      } else if (card.eleType === 'qrcode') {
+        let val = ''
+  
+        if (card.datatype === 'static') {
+          val = card.value
+        } else if (data.hasOwnProperty(card.field)) {
+          val = data[card.field] || ''
+        }
+  
+        if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+  
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={card.style}>
+              <div style={{minHeight: card.qrWidth || 50}}>
+                {val ? <QrCode card={card} value={val}/> : null}
+              </div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'currentDate') {
+        let val = moment().format(card.dateFormat || 'YYYY-MM-DD')
+        
         if (card.fixStyle === 'alone') {
           let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
           val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
         } else {
           val = `${card.prefix || ''}${val}${card.postfix || ''}`
         }
-      }
-      
-      if (card.marks) {
-        let mark = getMark(card.marks, data, _style)
-
-        _style = mark.style
-
-        if (mark.icon) {
-          if (mark.position === 'front') {
-            val = <span><MkIcon style={{color: mark.color}} type={mark.icon} /> {val}</span>
-          } else {
-            val = <span>{val} <MkIcon style={{color: mark.color}} type={mark.icon} /></span>
+  
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div style={card.style}>
+              <div className="ant-mk-text line1" style={{height: card.innerHeight || 'auto'}}>{val}</div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'formula') {
+        let val = 0
+        let _style = {...card.style}
+        
+        if (card.eval === 'func') {
+          let _data = []
+          if (card.$sync) {
+            _data = this.props.syncData
+          } else if (data && !data.$$empty) {
+            _data = [data]
           }
-        }
-      }
 
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={_style}>
-            <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight || 'auto'}}>{val}</div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'icon') {
-      let val = ''
-
-      if (card.datatype === 'static') {
-        val = card.tooltip
-      } else if (data.hasOwnProperty(card.field)) {
-        val = data[card.field]
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            {val ? <Tooltip title={val}>
-              <MkIcon type={card.icon}/>
-            </Tooltip> : <MkIcon type={card.icon}/>}
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'slider') {
-      let val = 0
-      let color = card.color
-
-      if (card.datatype === 'static') {
-        val = card.value
-      } else if (data.hasOwnProperty(card.field)) {
-        val = parseFloat(data[card.field])
-        if (isNaN(val)) {
-          val = 0
-        }
-      }
-
-      val = val / card.maxValue * 100
-      val = parseInt(val * 100) / 100
-
-      if (card.marks) {
-        let _color = this.getColor(card.marks)
-        color = _color ? _color : color
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            <MkProgress value={val} config={card} color={color}/>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'picture') {
-      let _imagestyle = {}
-      let _style = card.style ? {margin: '0 auto', ...card.style} : {}
-      let url = ''
-      if (card.maxWidth) {
-        _style.maxWidth = card.maxWidth
-        if (_style.marginLeft === '0px') {
-          delete _style.marginLeft
-        }
-        if (_style.marginRight === '0px') {
-          delete _style.marginRight
-        }
-      }
-
-      if (card.datatype === 'static') {
-        url = card.url || ''
-      } else {
-        url = data[card.field] || ''
-      }
-
-      if (url === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-      
-      if (url) {
-        _imagestyle = {backgroundImage: `url('${url}')`}
-      } else {
-        _imagestyle = {backgroundImage: `url(${LostPng})`, backgroundSize: 'contain'}
-      }
-
-      if (_style.borderRadius) {
-        _imagestyle.borderRadius = _style.borderRadius
-      }
-
-      if (PicRadio[card.lenWidRadio]) {
-        _imagestyle.paddingTop = PicRadio[card.lenWidRadio]
-      } else {
-        _imagestyle.paddingTop = '100%'
-      }
-
-      if (card.link) {
-        _style.cursor = 'pointer'
-      }
-
-      let scale = url && card.scale === 'true'
-      
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={_style} onClick={(e) => {this.openNewView(e, card)}}>
-            <div
-              className={'ant-mk-picture' + (scale ? ' scale' : '')}
-              onClick={(e) => {
-                if (scale) {
-                  e.stopPropagation()
-                } else {
-                  return
-                }
-
-                MKEmitter.emit('mkImageScale', url)
-              }}
-              style={_imagestyle}
-            ></div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'splitline') {
-      let _borderWidth = card.borderWidth === undefined ? 1 : card.borderWidth
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            <div className="ant-mk-splitline" style={{borderColor: card.color, borderWidth: _borderWidth}}></div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'barcode') {
-      let val = ''
-
-      if (card.datatype === 'static') {
-        val = card.value
-      } else if (data.hasOwnProperty(card.field)) {
-        val = data[card.field] || ''
-      }
-
-      if (val === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            <div style={{height: card.innerHeight || 25}}>
-              {val ? <BarCode card={card} value={val}/> : null}
-            </div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'video') {
-      let url = ''
-
-      if (card.datatype === 'static') {
-        url = card.url
-      } else {
-        url = data[card.field] || ''
-      }
-
-      if (url === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      let poster = ''
-
-      if (card.posterType === 'dynamic') {
-        poster = data[card.posterField] || ''
-      } else {
-        poster = card.posterUrl || ''
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div className="video-wrap" style={card.style}>
-            <Video card={card} poster={poster} value={url}/>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'qrcode') {
-      let val = ''
-
-      if (card.datatype === 'static') {
-        val = card.value
-      } else if (data.hasOwnProperty(card.field)) {
-        val = data[card.field] || ''
-      }
-
-      if (val === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={card.style}>
-            <div style={{minHeight: card.qrWidth || 50}}>
-              {val ? <QrCode card={card} value={val}/> : null}
-            </div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'currentDate') {
-      let val = moment().format(card.dateFormat || 'YYYY-MM-DD')
-      
-      if (card.fixStyle === 'alone') {
-        let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
-        val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
-      } else {
-        val = `${card.prefix || ''}${val}${card.postfix || ''}`
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div className="ant-mk-date" style={card.style}>
-            {val}
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'formula') {
-      let val = 0
-      let _style = card.style ? {...card.style} : {}
-
-      if (card.$sync) {
-        if (card.eval === 'false') {
-          val = ''
-        }
-        this.props.syncData.forEach(item => {
           let _val = card.formula
-          Object.keys(item).forEach(key => {
-            let reg = new RegExp('@' + key + '@', 'ig')
-            _val = _val.replace(reg, item[key])
+          if (/@username@|@fullName@|@bid@/ig.test(_val)) {
+            _val = _val.replace(/@username@/ig, sessionStorage.getItem('User_Name') || '').replace(/@fullName@/ig, sessionStorage.getItem('Full_Name') || '').replace(/@bid@/ig, data.$$BID || '')
+          }
+
+          try {
+            // eslint-disable-next-line
+            let func = new Function('data', _val)
+            val = func(_data)
+          } catch (e) {
+            console.warn(e)
+            val = ''
+          }
+
+          if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
+            return null
+          } else if (typeof(val) === 'object' && val.type === 'linkmenu') {
+            // type: 'linkmenu', linkThdMenu: null, menuId: '', value: ``, defaultValue: '', onclick: 'inner'
+            let item = {linkType: 'linkmenu', linkThdMenu: val.linkThdMenu}
+            let _val_ = val.value || ''
+
+            if (!item.linkThdMenu && val.menuId) {
+              item.linkThdMenu = window.GLOB.mkThdMenus.get(val.menuId) || ''
+            }
+            if (!item.linkThdMenu && val.defaultValue) {
+              _val_ = val.defaultValue
+            }
+
+            if (val.onclick === 'inner') {
+              contents.push(
+                <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+                  <div style={_style}>
+                    <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight}}>
+                      <span onClick={(e) => {this.openNewView(e, item)}} dangerouslySetInnerHTML={{__html: _val_}}></span>
+                    </div>
+                  </div>
+                </div>
+              )
+            } else {
+              _style.cursor = 'pointer'
+              contents.push(
+                <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+                  <div style={_style} onClick={(e) => {this.openNewView(e, item)}}>
+                    <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight}} dangerouslySetInnerHTML={{__html: _val_}}></div>
+                  </div>
+                </div>
+              )
+            }
+          } else {
+            contents.push(
+              <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+                <div style={_style}>
+                  <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight}} dangerouslySetInnerHTML={{__html: val}}></div>
+                </div>
+              </div>
+            )
+          }
+          return
+        } else if (card.$sync) {
+          if (card.eval === 'false') {
+            val = ''
+          }
+          this.props.syncData.forEach(item => {
+            let _val = card.formula
+            Object.keys(item).forEach(key => {
+              let reg = new RegExp('@' + key + '@', 'ig')
+              _val = _val.replace(reg, item[key])
+            })
+            if (card.eval !== 'false') {
+              try {
+                // eslint-disable-next-line
+                _val = eval(_val)
+              } catch (e) {
+                window.mkInfo(_val)
+                console.warn(e)
+                _val = 0
+              }
+            }
+  
+            // if (!val) return
+  
+            val += _val
           })
+        } else if (data && data.$$empty && /@.*@/.test(card.formula)) {
+          val = ''
+        } else if (data) {
+          let _val = card.formula
+
+          if (card.$keys && card.noValue === 'hide') { // 绌哄�奸殣钘�
+            let _data = {}
+            let empty = true
+
+            Object.keys(data).forEach(key => {
+              _data[key.toLowerCase()] = data[key]
+            })
+            _data.username = sessionStorage.getItem('User_Name') || ''
+            _data.fullname = sessionStorage.getItem('Full_Name') || ''
+            _data.bid = data.$$BID || ''
+
+            card.$keys.forEach(key => {
+              if (!_data.hasOwnProperty(key)) {
+                empty = false
+              } else if (_data[key] && !/^1949-10-01/.test(_data[key])) {
+                empty = false
+              }
+            })
+
+            if (empty) return null
+          }
+
+          if (/@username@|@fullName@|@bid@/ig.test(_val)) {
+            _val = _val.replace(/@username@/ig, sessionStorage.getItem('User_Name') || '').replace(/@fullName@/ig, sessionStorage.getItem('Full_Name') || '').replace(/@bid@/ig, data.$$BID || '')
+          }
+          Object.keys(data).forEach(key => {
+            let reg = new RegExp('@' + key + '@', 'ig')
+            _val = _val.replace(reg, data[key])
+          })
+
           if (card.eval !== 'false') {
             try {
               // eslint-disable-next-line
               _val = eval(_val)
             } catch (e) {
-              _val = 0
+              window.mkInfo(_val)
+              console.warn(e)
+              _val = ''
             }
           }
-
-          // if (!val) return
-
-          val += _val
-        })
-      } else if (data) {
-        let _val = card.formula
-        Object.keys(data).forEach(key => {
-          let reg = new RegExp('@' + key + '@', 'ig')
-          _val = _val.replace(reg, data[key])
-        })
-
-        if (card.eval !== 'false') {
-          try {
-            // eslint-disable-next-line
-            _val = eval(_val)
-          } catch (e) {
-            _val = ''
-          }
+  
+          val = _val === undefined ? '' : _val
         }
 
-        val = _val === undefined ? '' : _val
-      }
-
-      if (val === '' && card.noValue === 'hide') { // 绌哄�奸殣钘�
-        return null
-      }
-
-      if (val !== '') {
-        if (val && typeof(val) === 'string') {
-          val = val.replace(/\n/ig, '<br/>').replace(/\s/ig, '&nbsp;')
-          val = <span dangerouslySetInnerHTML={{__html: val}}></span>
-        }
-
-        if (card.fixStyle === 'alone') {
-          let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
-          val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
-        } else {
-          val = `${card.prefix || ''}${val}${card.postfix || ''}`
-        }
-      }
-
-      if (card.marks) {
-        let mark = getMark(card.marks, data, _style)
-
-        _style = mark.style
-
-        if (mark.icon) {
-          if (mark.position === 'front') {
-            val = <span><MkIcon style={{color: mark.color}} type={mark.icon} /> {val}</span>
-          } else {
-            val = <span>{val} <MkIcon style={{color: mark.color}} type={mark.icon} /></span>
-          }
-        }
-      }
-
-      return (
-        <Col key={card.uuid} span={card.width}>
-          <div style={_style}>
-            <div className={'ant-mk-text line' + (card.height || '')} style={{height: card.innerHeight || 'auto'}}>{val}</div>
-          </div>
-        </Col>
-      )
-    } else if (card.eleType === 'button') {
-      let _disabled = data.$disabled
-      if (card.control === 'hidden') {
-        let s = data[card.controlField] !== undefined ? data[card.controlField] + '' : ''
-        if (s === card.controlVal || (card.controlVal && card.controlVal.split(',').includes(s))) {
+        if (!val && card.noValue === 'hide') { // 绌哄�奸殣钘�
           return null
         }
-      } else if (card.control === 'disabled') {
-        let s = data[card.controlField] !== undefined ? data[card.controlField] + '' : ''
-        if (s === card.controlVal || (card.controlVal && card.controlVal.split(',').includes(s))) {
-          _disabled = true
+
+        if (card.round && typeof(val) === 'number') {
+          val = Math.round(val * card.round) / card.round
+          val = val.toFixed(card.decimal)
         }
-      }
-      
-      let _data = [data]
+  
+        if (val !== '') {
+          if (val && typeof(val) === 'string') {
+            if (!card.evalchars || card.evalchars.includes('enter')) {
+              val = val.replace(/\n/ig, '<br/>')
+            }
+            if ((!card.evalchars || card.evalchars.includes('space')) && !/<(span|div|p|a|img)\s/g.test(val)) {
+              val = val.replace(/\s/ig, '&nbsp;')
+            }
 
-      if (data.$$type === 'extendCard') {
-        _data = data.$$selectedData || []
-      } else if (card.$sync) {
-        _data = this.props.syncData
-      } else if (data.$$empty) {
-        _data = []
-      }
+            val = <span dangerouslySetInnerHTML={{__html: val}}></span>
+          }
+  
+          if (card.fixStyle === 'alone') {
+            let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+            val = <><span style={_s}>{card.prefix || ''}</span>{val}<span style={_s}>{card.postfix || ''}</span></>
+          } else {
+            val = <>{card.prefix || ''}{val}{card.postfix || ''}</>
+          }
+        } else if (card.fixStyle === 'alone') {
+          let _s = {fontSize: card.fixSize, color: card.fixColor, marginLeft: card.fixLeft, marginRight: card.fixRight}
+          val = <span style={_s}>{card.prefix || ''}{card.postfix || ''}</span>
+        }
 
-      if (['exec', 'prompt', 'pop', 'form'].includes(card.OpenType)) {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <NormalButton
+        let className = ''
+        if (card.marks) {
+          let mark = getMark(card.marks, data, _style)
+  
+          if (mark.icon) {
+            if (mark.position === 'front') {
+              val = <span><MkIcon style={mark.innerStyle} type={mark.icon} /> {val}</span>
+            } else {
+              val = <span>{val} <MkIcon style={mark.innerStyle} type={mark.icon} /></span>
+            }
+          } else if (mark.space) {
+            val = <><span style={{float: 'left'}} dangerouslySetInnerHTML={{__html: mark.space}}></span>{val}</>
+          } else if (mark.point) {
+            if (mark.position === 'front') {
+              val = <>{mark.point}{val}</>
+            } else {
+              val = <>{val}{mark.point}</>
+            }
+          }
+          className = mark.signType
+        }
+
+        if (card.link && !data.$disabled) {
+          _style.cursor = 'pointer'
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={_style} onClick={(e) => {this.openNewView(e, card)}}>
+                {card.alignItems ? <TextCell card={card} className={'ant-mk-text line' + (card.height || '') + className} value={val}/> : 
+                <div className={'ant-mk-text line' + (card.height || '') + className} style={{height: card.innerHeight}}>{val}</div>}
+              </div>
+            </div>
+          )
+        } else {
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div style={_style}>
+                {card.alignItems ? <TextCell card={card} className={'ant-mk-text line' + (card.height || '') + className} value={val}/> : 
+                <div className={'ant-mk-text line' + (card.height || '') + className} style={{height: card.innerHeight}}>{val}</div>}
+              </div>
+            </div>
+          )
+        }
+      } else if (card.eleType === 'tag') {
+        let vals = ''
+  
+        if (card.datatype === 'static') {
+          vals = card.value
+        } else {
+          vals = data[card.field] || ''
+        }
+  
+        if (!vals && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+
+        vals = vals.split(',').filter(Boolean)
+  
+        if (card.signs) {
+          vals = vals.map(val => {
+            let sign = card.signs.filter(s => s.value === val)[0]
+            let cell = {value: val, style: {...card.style}}
+
+            if (sign) {
+              cell.style.backgroundColor = sign.background
+              cell.style.color = sign.color
+              cell.style.borderColor = sign.border
+
+              // delete cell.style.borderTopColor
+              // delete cell.style.borderBottomColor
+              // delete cell.style.borderLeftColor
+              // delete cell.style.borderRightColor
+            }
+
+            return cell
+          })
+
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div className="ant-mk-tag">
+                {vals.map((item, index) => <span key={index} className="tag-item" style={item.style}>{item.value}</span>)}
+              </div>
+            </div>
+          )
+        } else {
+          contents.push(
+            <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              <div className="ant-mk-tag">
+                {vals.map((val, index) => <span key={index} className="tag-item" style={card.style}>{val}</span>)}
+              </div>
+            </div>
+          )
+        }
+      } else if (card.eleType === 'color') {
+        let color = ''
+  
+        if (card.datatype === 'static') {
+          color = card.value
+        } else {
+          color = data[card.field] || ''
+        }
+  
+        if (!color && card.noValue === 'hide') { // 绌哄�奸殣钘�
+          return null
+        }
+
+        let _bgstyle = {backgroundColor: color}
+  
+        if (PicRadio[card.lenWidRadio]) {
+          _bgstyle.paddingTop = PicRadio[card.lenWidRadio]
+        } else {
+          _bgstyle.paddingTop = '100%'
+        }
+
+        if (card.copyable === 'true') {
+          _bgstyle.cursor = 'pointer'
+        }
+
+        contents.push(
+          <div className={'ant-col ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+            <div className="ant-mk-color" style={card.style}>
+              <div style={_bgstyle} onClick={(e) => {
+                if (card.copyable === 'true') {
+                  e.stopPropagation()
+
+                  let oInput = document.createElement('input')
+                  oInput.value = color
+                  document.body.appendChild(oInput)
+                  oInput.select()
+                  document.execCommand('Copy')
+                  document.body.removeChild(oInput)
+
+                  message.success('澶嶅埗鎴愬姛銆�')
+                }
+              }}></div>
+            </div>
+          </div>
+        )
+      } else if (card.eleType === 'button') {
+        let _disabled = data.$disabled
+        let _data = [data]
+  
+        if (data.$$type === 'extendCard') {
+          _data = data.$$selectedData || []
+          if (card.Ot === 'notRequired' && _data.length === 0) {
+            _data = [data]
+          }
+        } else if (card.$sync) {
+          _data = this.props.syncData || []
+        } else if (data.$$empty) {
+          _data = []
+        }
+        let name = ''
+        if (card.showName) {
+          name = data[card.showName] || ' '
+        }
+
+        _style_ = _style_ || {}
+        if (card.wrapStyle) {
+          _style_ = {..._style_, ...card.wrapStyle}
+        }
+
+        let MkButton = null
+        let lid = (data.$$uuid || '') + (data.$Index || '')
+  
+        if (['exec', 'prompt', 'pop', 'form'].includes(card.OpenType)) {
+          MkButton = <NormalButton
+            btn={card}
+            name={name}
+            BID={data.$$BID}
+            LID={lid}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            setting={cards.setting}
+            columns={cards.columns}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'excelIn') {
+          MkButton = <ExcelInButton
+            btn={card}
+            BID={data.$$BID}
+            LID={lid}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            setting={cards.setting}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'excelOut') {
+          MkButton = <ExcelOutButton
+            btn={card}
+            BID={data.$$BID}
+            LID={lid}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            setting={cards.setting}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'popview') {
+          MkButton = <PopupButton
+            btn={card}
+            name={name}
+            BID={data.$$BID}
+            LID={lid}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            setting={cards.setting}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'tab') {
+          MkButton = <TabButton
+            btn={card}
+            name={name}
+            BID={data.$$BID}
+            LID={lid}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'innerpage') {
+          MkButton = <NewPageButton
+            btn={card}
+            name={name}
+            BID={data.$$BID}
+            LID={lid}
+            columns={cards.columns}
+            BData={data.$$BData || ''}
+            disabled={_disabled}
+            selectedData={_data}
+          />
+        } else if (card.OpenType === 'funcbutton') {
+          if (card.funcType === 'changeuser' || card.funcType === 'closetab') {
+            MkButton = <ChangeUserButton
               btn={card}
               BID={data.$$BID}
+              LID={lid}
+              BData={data.$$BData || ''}
+              disabled={_disabled}
+              setting={cards.setting}
+              selectedData={_data}
+            />
+          } else if (card.funcType === 'print') {
+            MkButton = <PrintButton
+              btn={card}
+              BID={data.$$BID}
+              LID={lid}
               BData={data.$$BData || ''}
               disabled={_disabled}
               setting={cards.setting}
               columns={cards.columns}
               selectedData={_data}
             />
-          </Col>
-        )
-      } else if (card.OpenType === 'excelIn') {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <ExcelInButton
+          } else if (card.funcType === 'megvii') {
+            MkButton = <FuncMegvii
               btn={card}
               BID={data.$$BID}
-              BData={data.$$BData || ''}
+              LID={lid}
               disabled={_disabled}
               setting={cards.setting}
               selectedData={_data}
             />
-          </Col>
-        )
-      } else if (card.OpenType === 'excelOut') {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <ExcelOutButton
+          } else if (card.funcType === 'filezip') {
+            MkButton = <FuncZip
               btn={card}
               BID={data.$$BID}
+              LID={lid}
               BData={data.$$BData || ''}
               disabled={_disabled}
               setting={cards.setting}
               selectedData={_data}
             />
-          </Col>
-        )
-      } else if (card.OpenType === 'popview') {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <PopupButton
+          } else if (card.funcType === 'expPdf') {
+            MkButton = <ExportPdf
               btn={card}
+              LID={lid}
+            />
+          } else if (card.funcType === 'addline' || card.funcType === 'delline') {
+            MkButton = <EditLine
+              btn={card}
+              disabled={_disabled}
+              selectedData={_data}
+            />
+          } else {
+            MkButton = <FuncButton
               BID={data.$$BID}
-              BData={data.$$BData || ''}
               disabled={_disabled}
-              setting={cards.setting}
-              selectedData={_data}
-            />
-          </Col>
-        )
-      } else if (card.OpenType === 'tab') {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <TabButton
+              LID={lid}
               btn={card}
-              BData={data.$$BData || ''}
-              disabled={_disabled}
-              setting={cards.setting}
+              columns={cards.columns}
               selectedData={_data}
             />
-          </Col>
-        )
-      } else if (card.OpenType === 'innerpage') {
-        return (
-          <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-            <NewPageButton
-              btn={card}
-              BData={data.$$BData || ''}
-              disabled={_disabled}
-              setting={cards.setting}
-              selectedData={_data}
-            />
-          </Col>
-        )
-      } else if (card.OpenType === 'funcbutton') {
-        if (card.funcType === 'changeuser' || card.funcType === 'closetab') {
-          return (
-            <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-              <ChangeUserButton
-                btn={card}
-                BID={data.$$BID}
-                BData={data.$$BData || ''}
-                disabled={_disabled}
-                setting={cards.setting}
-                selectedData={_data}
-              />
-            </Col>
-          )
-        } else if (card.funcType === 'print') {
-          return (
-            <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-              <PrintButton
-                btn={card}
-                BID={data.$$BID}
-                BData={data.$$BData || ''}
-                disabled={_disabled}
-                setting={cards.setting}
-                selectedData={_data}
-              />
-            </Col>
-          )
-        } else if (card.funcType === 'megvii') {
-          return (
-            <Col key={card.uuid} className="mk-cell-btn" style={card.wrapStyle} span={card.width}>
-              <FuncMegvii
-                btn={card}
-                BID={data.$$BID}
-                disabled={_disabled}
-                setting={cards.setting}
-                selectedData={_data}
-              />
-            </Col>
+          }
+        }
+
+        if (MkButton) {
+          contents.push(
+            <div className={'ant-col mk-cell-btn ant-col-' + card.width} key={card.uuid} style={_style_} span={card.width}>
+              {MkButton}
+            </div>
           )
         }
       }
-    }
+    })
 
-    return null
+    return contents
   }
 
   render() {
-    const { elements } = this.state
-
+    const { cardCell } = this.props
+    
     return (
-      <div className="card-cell-list">
-        {elements.map(item => this.getContent(item))}
+      <div className={'card-cell-list ' + (cardCell && cardCell.setting && cardCell.setting.layout === 'flex' ? 'mk-flex' : '')}>
+        {this.getContent()}
+        <Col style={{display: 'none'}} span={24}></Col>
       </div>
     )
   }

--
Gitblit v1.8.0