king
2020-02-05 b4744510a44b2f59b7ecece75085d4b70da2b059
src/tabviews/tableshare/mutilform/index.jsx
@@ -588,20 +588,19 @@
                key: key,
                value: vals.join(',')
              })
            } else if (this.state.datatype[key] === 'funcvar') {
            } else if (this.state.datatype[key] === 'text') {
              search.push({
                type: this.state.datatype[key],
                readonly: this.state.readtype[key],
                key: key,
                value: values[key]
                value: values[key].replace(/(^\s*|\s*$) | \t* | \v*/ig, '')
              })
            } else {
              search.push({
                type: this.state.datatype[key],
                readonly: this.state.readtype[key],
                key: key,
                value: values[key].replace(/(^\s*|\s*$)/ig, '')
                // value: values[key].replace(/[\x00-\xff]+/ig, '')
                value: values[key]
              })
            }
          })