king
2023-07-16 ba7c1ccc4e5cb111d957a5c63c2534b471580029
2023-07-16
4个文件已修改
13 ■■■■ 已修改文件
src/menu/components/form/formaction/actionform/index.jsx 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/share/actioncomponent/actionform/index.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/table/base-table/columns/index.jsx 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/actionList/normalbutton/index.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/form/formaction/actionform/index.jsx
@@ -377,6 +377,9 @@
    return new Promise((resolve, reject) => {
      this.props.form.validateFieldsAndScroll((err, values) => {
        if (!err) {
          if (values.outerBlacklist) {
            values.outerBlacklist = values.outerBlacklist.replace(/\s/ig, '')
          }
          resolve(values)
        } else {
          reject(err)
src/menu/components/share/actioncomponent/actionform/index.jsx
@@ -1065,6 +1065,10 @@
              })
            }
          }
          if (values.outerBlacklist) {
            values.outerBlacklist = values.outerBlacklist.replace(/\s/ig, '')
          }
          if (values.openmenu && Array.isArray(values.openmenu) && values.openmenu.length > 0) {
            let list = null
src/menu/components/table/base-table/columns/index.jsx
@@ -324,6 +324,8 @@
      col.subcols = []
    } else if (col.type === 'index') {
      col.label = '序号'
    } else if (col.type === 'number') {
      col.Width = 80
    }
    let hIndex = +hoverIndex
src/tabviews/zshare/actionList/normalbutton/index.jsx
@@ -1494,14 +1494,14 @@
          if (typeof(val) === 'string') {
            val = val.replace(/'/ig, '"')
          }
          keys.push(key)
          keys.push('[' + key + ']')
          vals.push(`'${val}'`)
        }
      })
      lines.push({
        table: tb,
        insert: `Insert into ${pre}${tb} (${keys.join(',')},mk_level,mk_id,mk_bid)`,
        insert: `Insert into ${pre}${tb} (${keys.join(',')},[mk_level],[mk_id],[mk_bid])`,
        select: `Select ${vals.join(',')},'${level}','${id}','${bid}'`
      })