From 102be577a7f8df2ae30045d55a1a5fc584f90363 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期一, 19 十二月 2022 18:31:38 +0800
Subject: [PATCH] 2022-12-19

---
 src/menu/components/share/actioncomponent/actionform/index.jsx | 1424 ++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 784 insertions(+), 640 deletions(-)

diff --git a/src/menu/components/share/actioncomponent/actionform/index.jsx b/src/menu/components/share/actioncomponent/actionform/index.jsx
index d328729..8cbf7ca 100644
--- a/src/menu/components/share/actioncomponent/actionform/index.jsx
+++ b/src/menu/components/share/actioncomponent/actionform/index.jsx
@@ -1,70 +1,53 @@
 import React, {Component} from 'react'
 import PropTypes from 'prop-types'
 import { fromJS } from 'immutable'
-import { Form, Row, Col, Input, Select, Radio, notification, Tooltip, InputNumber, Cascader } from 'antd'
+import { Form, Row, Col, Input, Select, Radio, Tooltip, InputNumber, Cascader, Checkbox, Typography } from 'antd'
 import { QuestionCircleOutlined } from '@ant-design/icons'
-import { btnCustomClasses, formRule } from '@/utils/option.js'
+import { formRule } from '@/utils/option.js'
 
 import asyncComponent from '@/utils/asyncComponent'
+import KeyInterface from '@/components/keyInterface'
 import './index.scss'
 
 const { TextArea } = Input
+const { Paragraph } = Typography
 const MkEditIcon = asyncComponent(() => import('@/components/mkIcon'))
-const actionTypeOptions = {
-  pop: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'resetPageIndex', 'syncComponent', 'switchTab', 'width', 'openmenu', 'open', 'output', 'refreshTab', 'reload'],
-  prompt: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'resetPageIndex', 'syncComponent', 'switchTab', 'width', 'openmenu', 'open', 'output', 'refreshTab', 'reload'],
-  exec: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'resetPageIndex', 'syncComponent', 'switchTab', 'width', 'openmenu', 'open', 'output', 'refreshTab', 'reload'],
-  excelIn: ['label', 'Ot', 'OpenType', 'intertype', 'show', 'icon', 'class', 'color', 'sheet', 'execSuccess', 'execError', 'resetPageIndex', 'syncComponent', 'switchTab', 'width'],
-  excelOut: ['label', 'OpenType', 'intertype', 'show', 'icon', 'class', 'color', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'resetPageIndex', 'pagination', 'search', 'width'],
-  popview: ['label', 'Ot', 'OpenType', 'show', 'icon', 'class', 'color', 'popClose', 'resetPageIndex', 'width', 'display', 'ratio', 'syncComponent', 'clickouter'],
-  tab: ['label', 'Ot', 'OpenType', 'show', 'icon', 'class', 'color', 'linkmenu', 'width'],
-  innerpage: ['label', 'Ot', 'OpenType', 'pageTemplate', 'show', 'swipe', 'icon', 'class', 'color', 'width', 'open'],
-  funcbutton: ['label', 'OpenType', 'funcType', 'show', 'swipe', 'icon', 'class', 'color', 'width']
+const acTyOptions = {
+  pop: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'anchors', 'width', 'openmenu', 'refreshTab', 'position', 'tipTitle', 'hidden'],
+  prompt: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'anchors', 'width', 'openmenu', 'refreshTab', 'position', 'tipTitle', 'hidden'],
+  exec: ['label', 'OpenType', 'intertype', 'Ot', 'show', 'swipe', 'icon', 'class', 'color', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'anchors', 'width', 'openmenu', 'refreshTab', 'hidden'],
+  excelIn: ['label', 'Ot', 'OpenType', 'intertype', 'show', 'icon', 'class', 'color', 'sheet', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'width', 'hidden'],
+  excelOut: ['label', 'OpenType', 'intertype', 'show', 'icon', 'class', 'color', 'execSuccess', 'execError', 'syncComponent', 'switchTab', 'pagination', 'search', 'width', 'hidden'],
+  popview: ['label', 'Ot', 'OpenType', 'show', 'icon', 'class', 'color', 'popClose', 'width', 'display', 'ratio', 'syncComponent', 'clickouter', 'hidden'],
+  tab: ['label', 'Ot', 'OpenType', 'show', 'icon', 'class', 'color', 'linkmenu', 'width', 'hidden'],
+  innerpage: ['label', 'Ot', 'OpenType', 'pageTemplate', 'show', 'swipe', 'icon', 'class', 'color', 'width', 'hidden'],
+  funcbutton: ['label', 'OpenType', 'funcType', 'show', 'swipe', 'icon', 'class', 'color', 'width', 'hidden'],
+  form: ['label', 'OpenType', 'formType', 'intertype', 'Ot', 'execSuccess', 'execError', 'syncComponent', 'width', 'refreshTab', 'title', 'hidden']
 }
 
 class ActionForm extends Component {
   static propTpyes = {
-    dict: PropTypes.object,      // 瀛楀吀椤�
     type: PropTypes.any,         // type涓�"card"鏃讹紝鍙彲閫夊崟琛屾垨涓嶉�夎
     setting: PropTypes.object,   // 椤甸潰璁剧疆
     formlist: PropTypes.any,     // 琛ㄥ崟淇℃伅
     card: PropTypes.any,         // 鎸夐挳淇℃伅
-    inputSubmit: PropTypes.any   // 鍥炶溅鎻愪氦浜嬩欢
+    inputSubmit: PropTypes.func, // 鍥炶溅鎻愪氦浜嬩欢
+    updRecord: PropTypes.func    // 鏇存柊淇℃伅
   }
 
   state = {
     formlist: null,  // 琛ㄥ崟淇℃伅
-    openType: null,  // 鎵撳紑鏂瑰紡
-    interType: null, // 鎺ュ彛绫诲瀷锛氬唴閮ㄣ�佸閮�
-    funcType: null,  // 鍔熻兘绫诲瀷
-    procMode: null,  // 鍙傛暟鏂瑰紡
-    control: '',
-    display: '',
-    pageTemplate: null,
     appType: sessionStorage.getItem('appType'),
-    Ot: null,
-    requireOptions: [{
-      value: 'notRequired',
-      text: this.props.dict['header.form.notRequired']
-    }, {
-      value: 'requiredSgl',
-      text: this.props.dict['header.form.requiredSgl']
-    }, {
-      value: 'required',
-      text: this.props.dict['header.form.required']
-    }, {
-      value: 'requiredOnce',
-      text: this.props.dict['header.form.requiredOnce']
-    }],
+    requireOptions: [],
     insertUpdateOptions: [{
       value: 'insert',
-      text: this.props.dict['header.form.action.insert']
+      text: '娣诲姞'
     }, {
       value: 'update',
-      text: this.props.dict['header.form.action.update']
+      text: '淇敼'
     }, {
       value: 'audit',
-      text: this.props.dict['header.form.action.audit']
+      text: '瀹℃牳'
     }],
     deleteOptions: [{
       value: 'LogicDelete',
@@ -74,173 +57,465 @@
       text: '鐗╃悊鍒犻櫎'
     }, {
       value: 'custom',
-      text: this.props.dict['header.form.custom']
+      text: '鑷畾涔�'
     }],
     interTypeOptions: [{
       value: 'system',
-      text: this.props.dict['model.interface.system']
+      text: '绯荤粺'
     }, {
       value: 'inner',
-      text: this.props.dict['model.interface.inner']
+      text: '鍐呴儴'
     }, {
       value: 'outer',
-      text: this.props.dict['model.interface.outer']
+      text: '澶栭儴'
     }, {
       value: 'custom',
       text: '鑷畾涔�'
     }]
   }
 
+  record = {}
   
   UNSAFE_componentWillMount () {
-    const { card, type } = this.props
+    const { type } = this.props
 
-    let _opentype = card.OpenType                // 鎵撳紑鏂瑰紡
-    let _intertype = card.intertype || 'system'  // 鎺ュ彛绫诲瀷
-    let _funcType = card.funcType || ''          // 鍔熻兘鎸夐挳榛樿绫诲瀷
-    let _procMode = card.procMode || 'system'
-    let _display = card.display || 'modal'
-    let _Ot = card.Ot
-    let _pageTemplate = card.pageTemplate || ''
-    let control = card.control || ''
+    let requireOptions = [
+      { value: 'notRequired', text: '涓嶉�夋嫨琛�' },
+      { value: 'requiredSgl', text: '閫夋嫨鍗曡' },
+      { value: 'required', text: '閫夋嫨澶氳' },
+      { value: 'requiredOnce', text: '澶氳鎷兼帴' }
+    ]
 
-    let _options = this.getOptions(_opentype, _intertype, _funcType, _pageTemplate, _procMode, _Ot, control, _display)
+    if (type === 'card') {
+      requireOptions = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+    }
+
+    let hasclass = true
+    this.props.formlist.forEach(item => {
+      this.record[item.key] = item.initVal
+
+      if (item.key === 'class') {
+        hasclass = item.forbid !== true
+      }
+    })
+
+    let { shows, reOptions, reTypes, reTooltip, reRequired, reReadonly } = this.getMutilOptions(requireOptions)
 
     this.setState({
-      Ot: _Ot,
-      display: _display,
-      control: control,
-      openType: _opentype,
-      interType: _intertype,
-      procMode: _procMode,
-      funcType: _funcType,
-      pageTemplate: _pageTemplate,
+      hasclass,
+      requireOptions: requireOptions,
       formlist: this.props.formlist.map(item => {
-        if (item.key === 'class') {
-          item.options = btnCustomClasses
-        } else if (item.key === 'innerFunc' && _procMode === 'inner') {
-          item.required = true
-        } else if (item.key === 'linkmenu') {
-          if (_opentype === 'funcbutton' && _funcType === 'scan') {
-            item.required = false
-            item.tooltip = '浣跨敤鎵爜鐧诲綍鍔熻兘鎴栬彍鍗曡烦杞姛鑳芥椂锛岄渶閫夋嫨璺宠浆鐨勮彍鍗曘��'
-          } else {
-            item.tooltip = ''
-            item.required = true
-          }
-        } else if (item.key === 'intertype') {
-          let iscustom = ['pop', 'prompt', 'exec'].includes(_opentype)
-          item.options = this.state.interTypeOptions.filter(op => (iscustom || op.value !== 'custom'))
-        } else if (item.key === 'Ot') {
-          if (card.sqlType === 'insert') {
-            item.options = this.state.requireOptions.filter(op => ['notRequired'].includes(op.value))
-          } else if (type === 'card') {
-            item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-          } else if (_pageTemplate === 'pay') { // 琛岀骇鎸夐挳銆佹敮浠樻寜閽紝鍙兘閫夊崟琛�
-            item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
-          } else if (['innerpage', 'tab', 'popview', 'excelIn'].includes(_opentype)) {
-            item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-          } else {
-            item.options = this.state.requireOptions
-          }
-        } else if (item.key === 'sqlType') {
-          if (['prompt', 'exec'].includes(_opentype)) {
-            item.options = this.state.deleteOptions
-          } else {
-            item.options = this.state.insertUpdateOptions
-          }
-        } else if (item.key === 'OpenType') {
-          item.initVal = _opentype
+        item.hidden = !shows.includes(item.key)
+        item.initVal = this.record[item.key]
+
+        if (reOptions[item.key]) {
+          item.options = reOptions[item.key]
+        }
+        if (reTypes[item.key]) {
+          item.type = reTypes[item.key]
+        }
+        if (reTooltip[item.key] !== undefined) {
+          item.tooltip = reTooltip[item.key]
+        }
+        if (reRequired[item.key] !== undefined) {
+          item.required = reRequired[item.key]
+        }
+        if (reReadonly[item.key] !== undefined) {
+          item.readonly = reReadonly[item.key]
         }
 
-        item.hidden = !_options.includes(item.key)
         return item
       })
     })
-  }
-
-  getOptions = (_opentype, _intertype, _funcType, _pageTemplate, _procMode, _Ot, _control, _display) => {
-    let _options = actionTypeOptions[_opentype] ? fromJS(actionTypeOptions[_opentype]).toJS() : [] // 閫夐」鍒楄〃
-
-    if (_opentype === 'innerpage') {         // 鏂伴〉闈紝鍙�夋ā鏉�(鑷畾涔夋椂锛屽彲濉叆澶栭儴閾炬帴)
-      if (_pageTemplate === 'custom') {
-        _options.push('url', 'joint')
-      } else if (_pageTemplate === 'page') {
-        _options.push('copyMenuId', 'joint')
-      } else if (_pageTemplate === 'linkpage') {
-        _options.push('linkmenu', 'joint')
-      }
-    } else if (_opentype === 'excelOut') {    // 瀵煎叆瀵煎嚭
-      if (_intertype === 'outer') {
-        _options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc')
-      } else if (_intertype === 'inner') {
-        _options.push('innerFunc')
-      }
-    } else if (_opentype === 'excelIn') {    // 瀵煎叆瀵煎嚭
-      if (_intertype === 'outer') {
-        _options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
-      } else if (_intertype === 'inner') {
-        _options.push('innerFunc')
-      }
-    } else if (_opentype === 'funcbutton') {
-      if (_funcType === 'print') {
-        _options.push('execMode', 'intertype', 'Ot', 'execSuccess', 'execError', 'resetPageIndex')
-        if (_intertype === 'outer') {
-          _options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
-        } else if (_intertype === 'inner') {
-          _options.push('innerFunc')
-        }
-      } else if (_funcType === 'mkBinding' || _funcType === 'mkUnBinding') {
-        _options.push('execSuccess', 'execError')
-      } else if (_funcType === 'closetab') {
-        _options.push('refreshTab')
-      } else if (_funcType === 'scan') {
-        _options.push('linkmenu')
-      } else if (_funcType === 'goBack') {
-        _options.push('reload')
-      }
-    } else if (_opentype === 'popview') {
-      if (_display === 'drawer') {
-        _options.push('placement')
-      }
-    } else if (_opentype !== 'tab') {
-      if (_intertype === 'custom') {
-        _options = _options.filter(m => m !== 'output')
-        _options.push('procMode', 'interface', 'callbackType', 'cbTable', 'proInterface', 'method', 'cross')
-        if (_procMode === 'system') {
-          _options.push('sql', 'sqlType')
-        } else {
-          _options.push('innerFunc')
-        }
-      } else if (_intertype === 'outer') {
-        _options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
-      } else if (_intertype === 'inner') {
-        _options.push('innerFunc')
-      } else {
-        _options.push('sql', 'sqlType')
-      }
-    }
-
-    if (_Ot !== 'notRequired' && _opentype !== 'excelOut') {
-      _options.push('control')
-      if (_control) {
-        _options.push('controlField', 'controlVal')
-      }
-    }
-
-    return _options
   }
 
   componentDidMount () {
     const { card } = this.props
 
     if (card.focus) {
-      try {
-        let _form = document.getElementById('label')
-        _form && _form.select()
-      } catch (e) {
-        console.warn('琛ㄥ崟focus澶辫触锛�')
+      setTimeout(() => {
+        try {
+          let _form = document.getElementById('label')
+          _form && _form.select()
+        } catch (e) {
+          console.warn('琛ㄥ崟focus澶辫触锛�')
+        }
+      }, 100)
+    }
+    this.props.updRecord && this.props.updRecord(this.record)
+  }
+
+  getMutilOptions = (requireOptions) => {
+    const { appType } = this.state
+
+    let openType = this.record.OpenType
+    let Ot = this.record.Ot
+    let shows = fromJS(acTyOptions[openType] || []).toJS()
+    let reOptions = {}
+    let reTypes = {}
+    let reTooltip = {}
+    let reRequired = {}
+    let reReadonly = {}
+
+    if (openType === 'pop' || openType === 'prompt' || openType === 'exec') {
+      let intertype = this.record.intertype
+
+      reOptions.intertype = this.state.interTypeOptions
+
+      if (intertype === 'custom') {
+        shows.push('procMode', 'interface', 'callbackType', 'proInterface', 'method', 'cross')
+        if (this.record.procMode === 'system') {
+          shows.push('sql', 'sqlType')
+        } else if (this.record.procMode === 'inner') {
+          reRequired.innerFunc = true
+          shows.push('innerFunc')
+        }
+        if (this.record.callbackType === 'func') {
+          shows.push('callbackFunc')
+        } else if (this.record.callbackType !== 'none') {
+          shows.push('cbTable')
+        }
+        reReadonly.interface = false
+        reRequired.interface = true
+      } else if (intertype === 'outer') {
+        shows.push('procMode', 'sysInterface', 'outerFunc', 'callbackType', 'output')
+        if (this.record.procMode === 'system') {
+          shows.push('sql', 'sqlType')
+        } else if (this.record.procMode === 'inner') {
+          reRequired.innerFunc = true
+          shows.push('innerFunc')
+        }
+        if (this.record.callbackType === 'func') {
+          shows.push('callbackFunc')
+        } else if (this.record.callbackType !== 'none') {
+          shows.push('cbTable')
+        }
+
+        if (this.record.sysInterface === 'false') {
+          reReadonly.interface = false
+          reRequired.interface = true
+
+          shows.push('interface', 'proInterface')
+        } else if (this.record.sysInterface === 'true') {
+          reReadonly.interface = true
+          reRequired.interface = false
+
+          shows.push('interface')
+        } else if (this.record.sysInterface === 'external') {
+          shows.push('exInterface', 'exProInterface')
+        }
+      } else if (intertype === 'inner') {
+        shows.push('innerFunc', 'output')
+        reRequired.innerFunc = true
+      } else {
+        shows.push('sql', 'sqlType', 'output')
       }
+
+      if (Ot === 'required') {
+        shows.push('progress')
+      }
+      if (this.record.openmenu && this.record.openmenu !== 'goback') {
+        shows.push('open')
+      }
+      if (this.record.execSuccess === 'grid' || this.record.execError === 'grid') {
+        shows.push('resetPageIndex')
+      }
+
+      if (this.record.sqlType === 'insert') {
+        reOptions.Ot = requireOptions.filter(op => op.value === 'notRequired')
+      } else {
+        reOptions.Ot = requireOptions
+      }
+
+      if (openType === 'prompt' || openType === 'exec') {
+        reOptions.sqlType = this.state.deleteOptions
+      } else {
+        reOptions.sqlType = this.state.insertUpdateOptions
+      }
+      // if (this.record.execSuccess === 'goback') {
+        shows.push('reload')
+      // }
+    } else if (openType === 'form') {
+      let intertype = this.record.intertype
+
+      if (this.record.formType === 'switch') {
+        shows.push('field', 'size', 'openVal', 'closeVal', 'openText', 'closeText')
+      } else if (this.record.formType === 'radio') {
+        shows.push('field', 'openVal', 'closeVal')
+      } else {
+        shows.push('field')
+      }
+
+      reOptions.intertype = this.state.interTypeOptions.filter(item => item.value !== 'custom')
+
+      if (intertype === 'outer') {
+        shows.push('procMode', 'sysInterface', 'outerFunc', 'callbackType')
+        if (this.record.procMode === 'system') {
+          shows.push('sql', 'sqlType')
+        } else if (this.record.procMode === 'inner') {
+          reRequired.innerFunc = true
+          shows.push('innerFunc')
+        }
+        if (this.record.callbackType === 'func') {
+          shows.push('callbackFunc')
+        } else if (this.record.callbackType !== 'none') {
+          shows.push('cbTable')
+        }
+
+        if (this.record.sysInterface === 'false') {
+          reReadonly.interface = false
+          reRequired.interface = true
+
+          shows.push('interface', 'proInterface')
+        } else if (this.record.sysInterface === 'true') {
+          reReadonly.interface = true
+          reRequired.interface = false
+
+          shows.push('interface')
+        } else if (this.record.sysInterface === 'external') {
+          shows.push('exInterface', 'exProInterface')
+        }
+      } else if (intertype === 'inner') {
+        shows.push('innerFunc')
+        reRequired.innerFunc = true
+      } else {
+        shows.push('sql', 'sqlType')
+      }
+
+      if (this.record.execSuccess === 'goback') {
+        shows.push('reload')
+      }
+      if (this.record.execSuccess === 'grid' || this.record.execError === 'grid') {
+        shows.push('resetPageIndex')
+      }
+
+      reOptions.Ot = requireOptions
+      reOptions.sqlType = [{
+        value: 'update',
+        text: '淇敼'
+      }, {
+        value: 'custom',
+        text: '鑷畾涔�'
+      }]
+    } else if (openType === 'excelIn') {
+      reOptions.intertype = this.state.interTypeOptions.filter(op => op.value !== 'custom')
+      reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+
+      if (this.record.intertype === 'outer') {
+        shows.push('innerFunc', 'sysInterface', 'outerFunc', 'callbackFunc')
+        reRequired.innerFunc = false
+        reRequired.callbackFunc = false
+
+        if (this.record.sysInterface === 'false') {
+          reReadonly.interface = false
+          reRequired.interface = true
+
+          shows.push('interface', 'proInterface')
+        } else if (this.record.sysInterface === 'true') {
+          reReadonly.interface = true
+          reRequired.interface = false
+
+          shows.push('interface')
+        } else if (this.record.sysInterface === 'external') {
+          shows.push('exInterface', 'exProInterface')
+        }
+      } else if (this.record.intertype === 'inner') {
+        shows.push('innerFunc')
+        reRequired.innerFunc = true
+      }
+      if (this.record.execSuccess === 'grid' || this.record.execError === 'grid') {
+        shows.push('resetPageIndex')
+      }
+    } else if (openType === 'excelOut') {
+      reOptions.intertype = this.state.interTypeOptions.filter(op => op.value !== 'custom')
+
+      if (this.record.intertype === 'outer') {
+        shows.push('innerFunc', 'sysInterface', 'outerFunc')
+        reRequired.innerFunc = false
+
+        if (this.record.sysInterface === 'false') {
+          reReadonly.interface = false
+          reRequired.interface = true
+
+          shows.push('interface', 'proInterface')
+        } else if (this.record.sysInterface === 'true') {
+          reReadonly.interface = true
+          reRequired.interface = false
+
+          shows.push('interface')
+        } else if (this.record.sysInterface === 'external') {
+          shows.push('exInterface', 'exProInterface')
+        }
+      } else if (this.record.intertype === 'inner') {
+        shows.push('innerFunc')
+        reRequired.innerFunc = true
+      }
+      if (this.record.execSuccess === 'grid' || this.record.execError === 'grid') {
+        shows.push('resetPageIndex')
+      }
+    } else if (openType === 'popview') {
+      reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+
+      if (this.record.display === 'drawer') {
+        shows.push('placement')
+      }
+      if (this.record.popClose === 'grid') {
+        shows.push('resetPageIndex')
+      }
+    } else if (openType === 'tab') {
+      reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+
+      reRequired.linkmenu = true
+      reTooltip.linkmenu = ''
+    } else if (openType === 'innerpage') {
+      reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+
+      if (this.record.pageTemplate === 'custom') {
+        shows.push('url', 'joint', 'open')
+      } else if (this.record.pageTemplate === 'linkpage') {
+        shows.push('linkmenu', 'open')
+
+        if (Ot === 'requiredSgl') {
+          shows.push('joint')
+        }
+
+        reRequired.linkmenu = true
+        reTooltip.linkmenu = ''
+      } else if (this.record.pageTemplate === 'billprint') {
+        shows.push('printTemp')
+        reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
+      } else if (this.record.pageTemplate === 'pay') {
+        reOptions.Ot = requireOptions.filter(op => op.value === 'requiredSgl')
+      }
+    } else if (openType === 'funcbutton') {
+      reOptions.intertype = this.state.interTypeOptions.filter(op => op.value !== 'custom')
+      reOptions.Ot = requireOptions
+
+      let _funcType = this.record.funcType
+
+      if (_funcType === 'print') {
+        shows.push('execMode', 'intertype', 'Ot', 'execSuccess', 'execError')
+        if (this.record.intertype === 'outer') {
+          shows.push('innerFunc', 'sysInterface', 'outerFunc', 'callbackFunc')
+          reRequired.innerFunc = false
+          reRequired.callbackFunc = false
+
+          if (this.record.sysInterface === 'false') {
+            reReadonly.interface = false
+            reRequired.interface = true
+  
+            shows.push('interface', 'proInterface')
+          } else if (this.record.sysInterface === 'true') {
+            reReadonly.interface = true
+            reRequired.interface = false
+  
+            shows.push('interface')
+          } else if (this.record.sysInterface === 'external') {
+            shows.push('exInterface', 'exProInterface')
+          }
+        } else if (this.record.intertype === 'inner') {
+          shows.push('innerFunc')
+          reRequired.innerFunc = true
+        }
+        if (this.record.execSuccess === 'grid' || this.record.execError === 'grid') {
+          shows.push('resetPageIndex')
+        }
+      } else if (_funcType === 'mkBinding' || _funcType === 'mkUnBinding') {
+        shows.push('execSuccess', 'execError')
+      } else if (_funcType === 'closetab') {
+        shows.push('refreshTab')
+      } else if (_funcType === 'scan') {
+        shows.push('linkmenu')
+
+        reRequired.linkmenu = false
+        reTooltip.linkmenu = '浣跨敤鎵爜鐧诲綍鍔熻兘鎴栬彍鍗曡烦杞姛鑳芥椂锛岄渶閫夋嫨璺宠浆鐨勮彍鍗曘��'
+      } else if (_funcType === 'copyurl') {
+        shows.push('linkmenu')
+
+        reRequired.linkmenu = false
+        reTooltip.linkmenu = '鍙互鎸囧畾鍒嗕韩鐨勭洰鏍囧湴鍧�銆�'
+
+        if (this.record.linkmenu) {
+          shows.push('Ot')
+          reOptions.Ot = requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
+        }
+      } else if (_funcType === 'goBack') {
+        shows.push('reload')
+      } else if (_funcType === 'megvii') {
+        shows.push('subFunc', 'progress')
+      } else if (_funcType === 'filezip') {
+        reOptions.Ot = requireOptions
+        reRequired.innerFunc = false
+
+        shows.push('innerFunc', 'Ot', 'execSuccess', 'execError', 'urlkey')
+      } else if (_funcType === 'pay') {
+        shows.push('payType', 'Ot', 'execSuccess', 'execError', 'syncComponent', 'openmenu')
+        if (this.record.openmenu && this.record.openmenu !== 'goback') {
+          shows.push('open')
+        }
+        reOptions.Ot = requireOptions.filter(op => ['requiredSgl'].includes(op.value))
+      } else if (_funcType === 'refund') {
+        shows.push('Ot', 'execSuccess', 'execError', 'syncComponent', 'openmenu')
+        reOptions.Ot = requireOptions.filter(op => ['requiredSgl'].includes(op.value))
+      }
+    }
+    
+    if (appType === 'mob') {
+      if (Ot !== 'notRequired') {
+        shows.push('control')
+        reOptions.control = [
+          { value: '', text: '鏃�' },
+          { value: 'disabled', text: '绂佺敤' },
+          { value: 'hidden', text: '闅愯棌' },
+        ]
+        if (this.record.control) {
+          shows.push('controlField', 'controlVal')
+        }
+        if (this.record.control === 'disabled') {
+          shows.push('reason')
+        }
+      }
+    } else {
+      if (Ot !== 'notRequired') {
+        reOptions.control = [
+          { value: '', text: '鏃�' },
+          { value: 'disabled', text: '绂佺敤' },
+          { value: 'hidden', text: '闅愯棌' },
+          { value: 'parent', text: '涓婄骇' }
+        ]
+      } else {
+        reOptions.control = [
+          { value: '', text: '鏃�' },
+          { value: 'parent', text: '涓婄骇' }
+        ]
+      }
+      shows.push('control')
+      if (this.record.control === 'parent') {
+        reTypes.controlField = 'text'
+      } else {
+        reTypes.controlField = 'select'
+      }
+      if (this.record.control) {
+        shows.push('controlField', 'controlVal')
+      }
+      if (this.record.control === 'disabled') {
+        shows.push('reason')
+      }
+    }
+
+    if (this.record.show === 'icon') {
+      reRequired.icon = true
+    } else {
+      reRequired.icon = false
+    }
+
+    return {
+      shows,
+      reOptions,
+      reTypes,
+      reTooltip,
+      reRequired,
+      reReadonly
     }
   }
 
@@ -251,288 +526,189 @@
    * 3銆佸垏鎹㈡爣绛剧被鍨嬶紝閲嶇疆鍙�夋爣绛�
    */
   optionChange = (key, value) => {
-    const { type } = this.props
-    const { openType, procMode, Ot, pageTemplate, control, display } = this.state
+    const { hasclass, appType, requireOptions } = this.state
+
+    this.record[key] = value
+    let _fieldval = {}
 
     if (key === 'OpenType') {
-      let _options = this.getOptions(value, 'system', this.state.funcType, '', 'system', Ot, control, 'modal')
+      this.record.intertype = 'system'
+      this.record.procMode = 'system'
+      this.record.display = 'modal'
+      this.record.pageTemplate = ''
+      this.record.funcType = ''
+      this.record.sqlType = ''
 
-      let _fieldval = {}
-      let _formlist = this.state.formlist.map(item => {
-        item.hidden = !_options.includes(item.key)
+      if (value === 'pop' || value === 'prompt' || value === 'exec') {
+        _fieldval.intertype = 'system'
+        _fieldval.sqlType = ''
+      } else if (value === 'form') {
+        _fieldval.Ot = 'requiredSgl'
 
-        if (item.key === 'intertype') {
-          let iscustom = ['pop', 'prompt', 'exec'].includes(value)
-          item.options = this.state.interTypeOptions.filter(op => (iscustom || op.value !== 'custom'))
-        } else if (item.key === 'control') {
-          item.initVal = control
-        } else if (item.key === 'display') {
-          item.initVal = 'modal'
-        }
+        this.record.Ot = 'requiredSgl'
+      } else if (value === 'excelIn') {
+        _fieldval.intertype = 'system'
+        _fieldval.Ot = 'notRequired'
+        _fieldval.execSuccess = 'grid'
+        _fieldval.label = '瀵煎叆Excel'
+        _fieldval.class = 'dgreen'
+        this.record.Ot = 'notRequired'
+        this.record.label = '瀵煎叆Excel'
+        this.record.class = 'dgreen'
+        this.record.execSuccess = 'grid'
+      } else if (value === 'excelOut') {
+        _fieldval.intertype = 'system'
+        _fieldval.label = '瀵煎嚭Excel'
+        _fieldval.class = 'dgreen'
+        _fieldval.execSuccess = 'never'
+        this.record.Ot = 'notRequired'
+        this.record.label = '瀵煎嚭Excel'
+        this.record.class = 'dgreen'
+        this.record.execSuccess = 'never'
+  
+      } else if (value === 'popview') {
+        _fieldval.display = 'modal'
+        _fieldval.Ot = 'requiredSgl'
+        _fieldval.popClose = 'grid'
+        this.record.display = 'modal'
+        this.record.Ot = 'requiredSgl'
+        this.record.popClose = 'grid'
+  
+      } else if (value === 'tab') {
+        _fieldval.Ot = 'requiredSgl'
+        this.record.Ot = 'requiredSgl'
+  
+      } else if (value === 'innerpage') {
+        _fieldval.Ot = 'requiredSgl'
+        this.record.Ot = 'requiredSgl'
+        
+      } else if (value === 'funcbutton') {
+        // _fieldval.funcType = ''
+  
+      }
+      if (value === 'excelIn') {
+        _fieldval.label = '瀵煎叆Excel'
+        _fieldval.class = 'dgreen'
+      } else if (value === 'excelOut') {
+        _fieldval.label = '瀵煎嚭Excel'
+        _fieldval.class = 'dgreen'
+        _fieldval.control = ''
+        this.record.control = ''
+      }
 
-        if (item.hidden) return item
+      if (appType !== 'mob' && _fieldval.Ot === 'notRequired') {
+        this.record.control = ''
+        _fieldval.control = ''
+      }
 
-        if (item.key === 'intertype') {
-          _fieldval.intertype = 'system'
-        } else if (item.key === 'popClose' && value === 'popview') {
-          _fieldval.popClose = 'grid'
-        } else if (item.key === 'Ot') {
-          if (type === 'card') {
-            item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-          } else if (['innerpage', 'tab', 'popview'].includes(value)) {
-            item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            _fieldval.Ot = 'requiredSgl'
-          } else if (value === 'excelIn') {
-            item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            _fieldval.Ot = 'notRequired'
-          } else {
-            item.options = this.state.requireOptions
-          }
-        } else if (item.key === 'sqlType') {
-          if (['prompt', 'exec'].includes(value)) {
-            item.options = this.state.deleteOptions
-          } else {
-            item.options = this.state.insertUpdateOptions
-          }
-          _fieldval.sqlType = ''
-        } else if (item.key === 'pageTemplate') {
-          item.initVal = ''
-        } else if (item.key === 'linkmenu') {
-          if (value === 'funcbutton' && this.state.funcType === 'scan') {
-            item.required = false
-            item.tooltip = '浣跨敤鎵爜鐧诲綍鍔熻兘鎴栬彍鍗曡烦杞姛鑳芥椂锛岄渶閫夋嫨璺宠浆鐨勮彍鍗曘��'
-          } else {
-            item.tooltip = ''
-            item.required = true
-          }
-        }
-
-        return item
-      })
-
-      this.setState({
-        openType: value,
-        intertype: 'system',
-        procMode: 'system',
-        display: 'modal',
-        pageTemplate: '',
-        formlist: _formlist
-      }, () => {
-        if (value === 'excelIn') {
-          _fieldval.label = this.props.dict['model.form.excelIn']
-          _fieldval.class = 'dgreen'
-        } else if (value === 'excelOut') {
-          _fieldval.label = this.props.dict['model.form.excelOut']
-          _fieldval.class = 'dgreen'
-        }
-
-        this.props.form.setFieldsValue(_fieldval)
-      })
+      this.props.updRecord && this.props.updRecord(this.record)
     } else if (key === 'funcType') {
-      let _options = this.getOptions(openType, this.state.interType, value, pageTemplate, procMode, Ot, control, display)
-      let _fieldval = {}
-
       if (value === 'print') {
         _fieldval.label = '鎵撳嵃'
       } else if (value === 'closetab') {
         _fieldval.label = '鍏抽棴'
       }
-
-      this.setState({
-        funcType: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-
-          if (item.hidden) return item
-
-          if (item.key === 'intertype') {
-            _fieldval.intertype = this.state.interType
-          } else if (item.key === 'Ot' && value === 'print') {
-            if (type === 'card') {
-              item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            } else {
-              item.options = this.state.requireOptions
-            }
-          } else if (item.key === 'linkmenu') {
-            if (value === 'scan') {
-              item.required = false
-              item.tooltip = '浣跨敤鎵爜鐧诲綍鍔熻兘鎴栬彍鍗曡烦杞姛鑳芥椂锛岄渶閫夋嫨璺宠浆鐨勮彍鍗曘��'
-            } else {
-              item.tooltip = ''
-              item.required = true
-            }
-          }
-
-          return item
-        })
-      }, () => {
-        this.props.form.setFieldsValue(_fieldval)
-      })
     } else if (key === 'sqlType') {
-      let _fieldval = {}
-      let hasclass = true
-      this.setState({
-        formlist: this.state.formlist.map(item => {
-          if (item.key === 'Ot') {
-            if (value === 'insert') {
-              item.options = this.state.requireOptions.filter(op => ['notRequired'].includes(op.value))
-            } else if (type === 'card') {
-              item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            } else {
-              item.options = this.state.requireOptions
-            }
-          } else if (item.key === 'class') {
-            hasclass = item.forbid !== true
-          }
-          return item
-        })
-      }, () => {
-        if (value === 'insert') {
-          _fieldval.label = '娣诲姞'
-          _fieldval.Ot = 'notRequired'
-          if (hasclass) {
-            _fieldval.class = 'green'
-          } else {
-            _fieldval.color = 'success'
-          }
-        } else if (value === 'update') {
-          _fieldval.label = '淇敼'
-          _fieldval.Ot = 'requiredSgl'
+      if (value === 'insert') {
+        _fieldval.label = '娣诲姞'
+        _fieldval.Ot = 'notRequired'
+        if (hasclass) {
+          _fieldval.class = 'green'
+        } else {
+          _fieldval.color = 'success'
+        }
+      } else if (value === 'update') {
+        _fieldval.label = '淇敼'
+        _fieldval.Ot = 'requiredSgl'
+        if (this.record.OpenType !== 'form') {
           if (hasclass) {
             _fieldval.class = 'purple'
           } else {
             _fieldval.color = 'primary'
           }
-          
-        } else if (value === 'audit') {
-          _fieldval.label = '瀹℃牳'
-          _fieldval.Ot = 'requiredSgl'
-          if (hasclass) {
-            _fieldval.class = 'primary'
-          } else {
-            _fieldval.color = 'warning'
-          }
-        } else if (value === 'LogicDelete' || value === 'delete') {
-          _fieldval.label = '鍒犻櫎'
-          _fieldval.Ot = 'requiredSgl'
-          if (hasclass) {
-            _fieldval.class = 'danger'
-          } else {
-            _fieldval.color = 'danger'
-          }
         }
+      } else if (value === 'audit') {
+        _fieldval.label = '瀹℃牳'
+        _fieldval.Ot = 'required'
+        if (hasclass) {
+          _fieldval.class = 'primary'
+        } else {
+          _fieldval.color = 'warning'
+        }
+      } else if (value === 'LogicDelete' || value === 'delete') {
+        _fieldval.label = '鍒犻櫎'
+        _fieldval.Ot = 'required'
+        if (hasclass) {
+          _fieldval.class = 'danger'
+        } else {
+          _fieldval.color = 'danger'
+        }
+      } else if (value === 'custom') {
+        _fieldval.Ot = 'required'
+      }
 
-        this.props.form.setFieldsValue(_fieldval)
-      })
-    } else if (key === 'pageTemplate') {
-      let _fieldval = {}
-      let _options = this.getOptions(openType, this.state.interType, this.state.funcType, value, procMode, Ot, control, display)
+      if (this.props.type === 'card' && _fieldval.Ot === 'required') { // 鍗$墖涓棤澶氳閫夐」
+        _fieldval.Ot = 'requiredSgl'
+      }
 
-      this.setState({
-        pageTemplate: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
+      this.record.label = _fieldval.label || this.record.label || ''
+      this.record.Ot = _fieldval.Ot || this.record.Ot || ''
+      this.record.class = _fieldval.class || this.record.class || ''
+      this.record.color = _fieldval.color || this.record.color || ''
 
-          if (item.key === 'Ot') {
-            if (value === 'pay') {
-              item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
-              _fieldval.Ot = 'requiredSgl'
-            } else if (type === 'card') {
-              item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            } else {
-              item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            }
-          }
-  
-          return item
-        })
-      }, () => {
-        this.props.form.setFieldsValue(_fieldval)
-      })
-    } else if (key === 'intertype') {
-      let _options = this.getOptions(openType, value, this.state.funcType, pageTemplate, procMode, Ot, control, display)
-
-      this.setState({
-        interType: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-
-          if (item.key === 'interface') {
-            item.readonly = false
-          } else if (item.key === 'sysInterface') {
-            item.initVal = 'false'
-          } else if (item.key === 'Ot') {
-            if (type === 'card') {
-              item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
-            } else {
-              item.options = this.state.requireOptions
-            }
-          }
-          return item
-        })
-      })
-    } else if (key === 'procMode') {
-      let _options = this.getOptions(openType, this.state.interType, this.state.funcType, pageTemplate, value, Ot, control, display)
-
-      this.setState({
-        procMode: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-
-          if (item.key === 'innerFunc') {
-            item.required = true
-          }
-          return item
-        })
-      })
+      if (appType !== 'mob' && _fieldval.Ot === 'notRequired') {
+        this.record.control = ''
+        _fieldval.control = ''
+      }
     } else if (key === 'Ot') {
-      let _options = this.getOptions(openType, this.state.interType, this.state.funcType, pageTemplate, procMode, value, control, display)
-
-      this.setState({
-        Ot: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-          return item
-        })
-      })
-    } else if (key === 'control') {
-      let _options = this.getOptions(openType, this.state.interType, this.state.funcType, pageTemplate, procMode, Ot, value, display)
-
-      this.setState({
-        control: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-          return item
-        })
-      })
-    } else if (key === 'display') {
-      let _options = this.getOptions(openType, this.state.interType, this.state.funcType, pageTemplate, procMode, Ot, control, value)
-
-      this.setState({
-        display: value,
-        formlist: this.state.formlist.map(item => {
-          item.hidden = !_options.includes(item.key)
-          return item
-        })
-      })
+      if (appType !== 'mob' && value === 'notRequired') {
+        this.record.control = ''
+        _fieldval.control = ''
+      }
+    } else if (key === 'pageTemplate') {
+      if (value === 'pay') {
+        _fieldval.Ot = 'requiredSgl'
+        this.record.Ot = 'requiredSgl'
+      }
+    } else if (key === 'intertype') {
+      this.record.sysInterface = 'false'
+      
+      this.props.updRecord && this.props.updRecord(this.record)
     } else if (key === 'sysInterface') {
       if (value === 'true') {
-        this.props.form.setFieldsValue({
-          interface: window.GLOB.mainSystemApi || ''
-        })
+        _fieldval.interface = window.GLOB.mainSystemApi || ''
+        this.record.interface = window.GLOB.mainSystemApi || ''
       }
-      this.setState({
-        formlist: this.state.formlist.map(item => {
-          if (item.key === 'interface' && value === 'true') {
-            item.readonly = true
-          } else if (item.key === 'interface') {
-            item.readonly = false
-          }
-
-          return item
-        })
-      })
     }
+
+    let { shows, reOptions, reTypes, reTooltip, reRequired, reReadonly } = this.getMutilOptions(requireOptions)
+
+    this.setState({
+      formlist: this.state.formlist.map(item => {
+        item.hidden = !shows.includes(item.key)
+        item.initVal = this.record[item.key]
+
+        if (reOptions[item.key]) {
+          item.options = reOptions[item.key]
+        }
+        if (reTypes[item.key]) {
+          item.type = reTypes[item.key]
+        }
+        if (reTooltip[item.key] !== undefined) {
+          item.tooltip = reTooltip[item.key]
+        }
+        if (reRequired[item.key] !== undefined) {
+          item.required = reRequired[item.key]
+        }
+        if (reReadonly[item.key] !== undefined) {
+          item.readonly = reReadonly[item.key]
+        }
+
+        return item
+      })
+    }, () => {
+      this.props.form.setFieldsValue(_fieldval)
+    })
   }
 
   handleSubmit = (e) => {
@@ -550,212 +726,185 @@
     this.state.formlist.forEach((item, index) => {
       if (item.hidden || item.forbid) return
 
-      if (item.type === 'text') { // 鏂囨湰鎼滅储
-        let _rules = []
-        if (item.key === 'innerFunc') {
-          let str = '^(' + item.fields.join('|') + ')'
-          let _patten = new RegExp(str + formRule.func.innerPattern + '$', 'g')
-          _rules = [{
-            pattern: _patten,
-            message: formRule.func.innerMessage
-          }, {
-            max: formRule.func.max,
-            message: formRule.func.maxMessage
-          }]
-        } else if (item.key === 'outerFunc' || item.key === 'callbackFunc') {
-          _rules = [{
-            pattern: formRule.func.pattern,
-            message: formRule.func.message
-          }, {
-            max: formRule.func.max,
-            message: formRule.func.maxMessage
-          }]
-        } else {
-          _rules = [{
-            max: formRule.input.max,
-            message: formRule.input.message
-          }]
-        }
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.tooltip ?
-              <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
-                <QuestionCircleOutlined className="mk-form-tip" />
-                {item.label}
-              </Tooltip> : item.label
-            }>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal || '',
-                rules: [
-                  {
-                    required: item.readonly ? false : !!item.required,
-                    message: this.props.dict['form.required.input'] + item.label + '!'
-                  },
-                  ..._rules
-                ]
-              })(<Input placeholder="" autoComplete="off" disabled={item.readonly} onPressEnter={this.handleSubmit} />)}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'tip') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.label}>
-              {item}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'number') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.tooltip ?
-              <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
-                <QuestionCircleOutlined className="mk-form-tip" />
-                {item.label}
-              </Tooltip> : item.label
-            }>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal,
-                rules: [
-                  {
-                    required: item.readonly ? false : !!item.required,
-                    message: this.props.dict['form.required.input'] + item.label + '!'
-                  }
-                ]
-              })(<InputNumber min={0} max={10000} precision={0} />)}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'select') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.tooltip ?
-              <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
-                <QuestionCircleOutlined className="mk-form-tip" />
-                {item.label}
-              </Tooltip> : item.label
-            }>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal || '',
-                rules: [
-                  {
-                    required: !!item.required,
-                    message: this.props.dict['form.required.select'] + item.label + '!'
-                  }
-                ]
-              })(
-                <Select
-                  showSearch
-                  allowClear={item.allowClear === true}
-                  filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
-                  onChange={(value) => {this.optionChange(item.key, value)}}
-                  getPopupContainer={() => document.getElementById('winter')}
-                >
-                  {item.options.map((option, index) =>
-                    <Select.Option key={index} value={(option.value || option.field)}>
-                      {(option.text || option.label)}
-                    </Select.Option>
-                  )}
-                </Select>
-              )}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'radio') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.tooltip ?
-              <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
-                <QuestionCircleOutlined className="mk-form-tip" />
-                {item.label}
-              </Tooltip> : item.label
-            }>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal,
-                rules: [
-                  {
-                    required: !!item.required,
-                    message: this.props.dict['form.required.select'] + item.label + '!'
-                  }
-                ]
-              })(
-                <Radio.Group onChange={(e) => {this.optionChange(item.key, e.target.value)}} disabled={item.readonly}>
-                  {
-                    item.options.map(option => {
-                      return (
-                        <Radio key={option.value} value={option.value}>{option.text}</Radio>
-                      )
-                    })
-                  }
-                </Radio.Group>
-              )}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'textarea') {
+      let span = 12
+      let rules = []
+      let className = ''
+      let content = null
+      let initVal = item.initVal || ''
+
+      if (item.type === 'splitLine') {
         fields.push(
           <Col span={24} key={index}>
-            <Form.Item label={item.label} className="textarea">
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal,
-                rules: [
-                  {
-                    required: item.readonly ? false : !!item.required,
-                    message: this.props.dict['form.required.input'] + item.label + '!'
-                  }
-                ]
-              })(<TextArea rows={2} readOnly={item.readonly}/>)}
-            </Form.Item>
+            <p style={{borderBottom: '1px solid #e9e9e9', color: '#1890ff', textAlign: 'center'}}>{item.label}</p>
           </Col>
         )
-      } else if (item.type === 'cascader') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.tooltip ?
-              <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
-                <QuestionCircleOutlined className="mk-form-tip" />
-                {item.label}
-              </Tooltip> : item.label
-            }>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal || [],
-                rules: [
-                  {
-                    required: !!item.required,
-                    message: this.props.dict['form.required.select'] + item.label + '!'
-                  }
-                ]
-              })(
-                <Cascader options={item.options || []} expandTrigger="hover" placeholder=""/>
-              )}
-            </Form.Item>
-          </Col>
-        )
-      } else if (item.type === 'icon') {
-        fields.push(
-          <Col span={12} key={index}>
-            <Form.Item label={item.label}>
-              {getFieldDecorator(item.key, {
-                initialValue: item.initVal,
-                rules: [
-                  {
-                    required: !!item.required,
-                    message: this.props.dict['form.required.select'] + item.label + '!'
-                  }
-                ]
-              })(
-                <MkEditIcon options={['edit', 'hint', 'direction', 'normal', 'data']} allowClear/>
-              )}
-            </Form.Item>
-          </Col>
-        )
+        return
       }
+      if (item.type === 'text') {
+        rules = [
+          { required: item.required, message: '璇疯緭鍏�' + item.label + '!' }
+        ]
+  
+        if (item.key === 'innerFunc') {
+          let str = item.fields && item.fields.length ? '^(' + item.fields.join('|') + ')' : '^'
+          let _patten = new RegExp(str + formRule.func.innerPattern + '$', 'g')
+          rules.push(
+            { pattern: _patten, message: formRule.func.innerMessage },
+            { max: formRule.func.max, message: formRule.func.maxMessage }
+          )
+        } else if (item.key === 'sql' || item.key === 'sheet') {
+          rules.push(
+            { pattern: /^[a-zA-Z0-9@_]+$/, message: '琛ㄥ悕鍙彲浣跨敤瀛楁瘝銆佹暟瀛椾互鍙奯' },
+            { max: formRule.func.max, message: formRule.func.maxMessage }
+          )
+        } else if (item.key === 'outerFunc' || item.key === 'callbackFunc') {
+          rules.push(
+            { pattern: formRule.func.pattern, message: formRule.func.message },
+            { max: formRule.func.max, message: formRule.func.maxMessage }
+          )
+        } else if (item.key === 'output') {
+          if (this.record.intertype === 'system' || ((this.record.intertype === 'outer' || this.record.intertype === 'custom') && this.record.callbackType === 'script')) {
+            rules = [{
+              pattern: /^@[0-9a-zA-Z_]+@?$/,
+              message: '鍙橀噺浠绗﹀紑澶达紝鍙娇鐢ㄥ瓧姣嶃�佹暟瀛椾互鍙奯'
+            }, {
+              max: 100,
+              message: '鏈�澶�100涓瓧绗︺��'
+            }]
+          } else {
+            rules = [{
+              pattern: /^[0-9a-zA-Z_]*$/,
+              message: '瀛楁鍙娇鐢ㄥ瓧姣嶃�佹暟瀛椾互鍙奯'
+            }, {
+              max: 100,
+              message: '鏈�澶�100涓瓧绗︺��'
+            }]
+          }
+        } else {
+          rules.push({ max: formRule.input.max, message: formRule.input.message })
+        }
+
+        content = <Input placeholder="" autoComplete="off" onPressEnter={this.handleSubmit} />
+      } else if (item.type === 'number') {
+        rules = [
+          { required: item.required, message: '璇疯緭鍏�' + item.label + '!' }
+        ]
+
+        content = <InputNumber min={item.min} max={item.max} precision={item.precision} onPressEnter={this.handleSubmit}/>
+      } else if (item.type === 'select') {
+        rules = [
+          { required: item.required, message: '璇烽�夋嫨' + item.label + '!' }
+        ]
+
+        if (item.extendName) {
+          content = <Select
+            showSearch
+            allowClear={item.allowClear === true || !item.required}
+            filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 ||
+              option.props.extend.toLowerCase().indexOf(input.toLowerCase()) >= 0}
+            onChange={(value) => {this.optionChange(item.key, value)}}
+            getPopupContainer={() => document.getElementById('winter')}
+          >
+            {item.options.map((option, index) =>
+              <Select.Option key={index} title={option.text || option.label} extend={option[item.extendName] || ''} value={(option.value || option.field)}>
+                {(option.text || option.label)}
+              </Select.Option>
+            )}
+          </Select>
+        } else {
+          content = <Select
+            showSearch
+            allowClear={item.allowClear === true || !item.required}
+            filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
+            onChange={(value) => {this.optionChange(item.key, value)}}
+            getPopupContainer={() => document.getElementById('winter')}
+          >
+            {item.options.map((option, index) =>
+              <Select.Option key={index} title={option.text || option.label} value={(option.value || option.field)}>
+                {(option.text || option.label)}
+              </Select.Option>
+            )}
+          </Select>
+        }
+      } else if (item.type === 'radio') {
+        rules = [
+          { required: item.required, message: '璇烽�夋嫨' + item.label + '!' }
+        ]
+
+        content = <Radio.Group onChange={(e) => {this.optionChange(item.key, e.target.value)}}>
+          {item.options.map(option => <Radio key={option.value} value={option.value}>{option.text}</Radio>)}
+        </Radio.Group>
+      } else if (item.type === 'checkbox') {
+        rules = [
+          { required: item.required, message: '璇烽�夋嫨' + item.label + '!' }
+        ]
+
+        content = <Checkbox.Group>
+          {item.options.map(option => <Checkbox key={option.value} value={option.value}>{option.text}</Checkbox>)}
+        </Checkbox.Group>
+      } else if (item.type === 'cascader') {
+        initVal = item.initVal || []
+        rules = [
+          { required: item.required, message: '璇烽�夋嫨' + item.label + '!' }
+        ]
+
+        content = <Cascader options={item.options || []} expandTrigger="hover" placeholder=""/>
+      } else if (item.type === 'icon') {
+        rules = [
+          { required: item.required, message: '璇烽�夋嫨' + item.label + '!' }
+        ]
+
+        content = <MkEditIcon options={['edit', 'hint', 'direction', 'normal', 'data']} allowClear/>
+      } else if (item.type === 'textarea') {
+        span = 24
+        className = 'textarea'
+        rules = [
+          { required: item.readonly ? false : item.required, message: '璇疯緭鍏�' + item.label + '!' }
+        ]
+
+        content = <TextArea rows={2} readOnly={item.readonly}/>
+      } else if (item.type === 'keyinterface') {
+        span = 24
+        className = 'textarea'
+        rules = [
+          { required: item.required, message: '璇疯緭鍏�' + item.label + '!' }
+        ]
+
+        content = <KeyInterface type={item.key === 'exInterface' ? 'develop' : 'product'}/>
+      }
+
+      fields.push(
+        <Col span={span} key={index}>
+          <Form.Item className={className} help={item.help} label={item.tooltip ?
+            <Tooltip placement="topLeft" title={item.tooltip}>
+              <QuestionCircleOutlined className="mk-form-tip" />
+              {item.label}
+            </Tooltip> : item.label
+          }>
+            {getFieldDecorator(item.key, {
+              initialValue: initVal,
+              rules: rules
+            })(content)}
+          </Form.Item>
+        </Col>
+      )
     })
+
+    if (window.debugger && this.props.card.uuid) {
+      fields.push(
+        <Col span={12} key="uuid">
+          <Form.Item label="鎸夐挳ID">
+            <Paragraph copyable>{this.props.card.uuid}</Paragraph>
+          </Form.Item>
+        </Col>
+      )
+    }
+
     return fields
   }
 
   handleConfirm = () => {
-    const { setting, card } = this.props
+    const { card } = this.props
     // 琛ㄥ崟鎻愪氦鏃舵鏌ヨ緭鍏ュ�兼槸鍚︽纭�
     return new Promise((resolve, reject) => {
       this.props.form.validateFieldsAndScroll((err, values) => {
@@ -763,24 +912,19 @@
           values.uuid = card.uuid
           values.verify = card.verify || null
           values.modal = card.modal || null
+          values.config = card.config || null
 
-          if (values.show === 'icon' && !values.icon) {
-            notification.warning({
-              top: 92,
-              message: '璇烽�夋嫨鍥炬爣锛�',
-              duration: 5
-            })
-            return
-          } else if (values.OpenType === 'excelOut') {
-            if (values.intertype === 'system' && setting.interType !== 'system') {
-              notification.warning({
-                top: 92,
-                message: '琛ㄦ牸鏁版嵁鏌ヨ鏈娇鐢ㄦ暟鎹簮锛屽鍑篍xcel浣跨敤鍐呴儴鎺ュ彛鏃讹紝闇�鑷畾涔夊唴閮ㄥ嚱鏁帮紒',
-                duration: 5
-              })
-              return
+          if (values.OpenType === 'form') {
+            if (values.formType !== 'scan') {
+              if (/^(0|[1-9]\d*)$/.test(values.openVal) && /^(0|[1-9]\d*)$/.test(values.closeVal)) {
+                values.openVal = +values.openVal
+                values.closeVal = +values.closeVal
+              }
+            } else {
+              values.show = 'icon'
+              values.icon = 'scan'
             }
-            
+          } else if (values.OpenType === 'excelOut') {
             values.Ot = 'notRequired'
           } else if (['pop', 'prompt', 'exec'].includes(values.OpenType) && values.verify) {
             if ((values.Ot === 'requiredOnce' || card.Ot === 'requiredOnce') && card.Ot !== values.Ot) {

--
Gitblit v1.8.0