king
2021-02-02 a9717673fd0bf1644641c28107a483cbfcb03d15
2021-02-02
4个文件已修改
16 ■■■■■ 已修改文件
src/components/editor/index.scss 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/share/usercomponent/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/verupmanage/index.jsx 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/mutilform/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/editor/index.scss
@@ -2,6 +2,12 @@
  .bf-content {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 500px;
    padding-bottom: 0px;
    .public-DraftEditor-content {
      padding-bottom: 0;
    }
  }
  .bf-content::-webkit-scrollbar {
    width: 7px;
src/menu/components/share/usercomponent/index.jsx
@@ -212,7 +212,6 @@
      <div className="user-component-wrap">
        <Icon type="user" title="生成自定义组件" onClick={this.trigger} />
        <Modal
          wrapClassName="popview-modal"
          title="自定义组件"
          visible={visible}
          width={500}
src/tabviews/verupmanage/index.jsx
@@ -137,6 +137,7 @@
    }
    this.setState({
      selectedData: [],
      pickup: false
    })
@@ -285,7 +286,6 @@
    this.setState({
      loading: true,
      pageIndex: 1,
      selectedData: [],
      search: searches
    }, () => {
      this.loadmaindata()
@@ -306,7 +306,6 @@
    this.setState({
      loading: true,
      selectedData: [],
      pageIndex: pagination.current,
      pageSize: pagination.pageSize,
      orderBy: (sorter.field && sorter.order) ? `${sorter.field} ${sorter.order}` : ''
@@ -322,8 +321,7 @@
    MKEmitter.emit('resetTable', this.props.MenuID + 'mainTable') // 列表重置
    this.setState({
      pageIndex: 1,
      loading: true,
      selectedData: []
      loading: true
    }, () => {
      this.loadmaindata()
    })
@@ -333,6 +331,7 @@
   * @description 页面刷新,重新获取配置
   */
  reloadview = () => {
    MKEmitter.emit('resetTable', this.props.MenuID + 'mainTable') // 列表重置
    this.setState({
      config: {},
      searchlist: [],
src/tabviews/zshare/mutilform/index.jsx
@@ -1292,7 +1292,7 @@
              } else if (_item.value.format) {
                _item.value = _item.value.format(_format[item.type])
              }
            } else if (item.type === 'text' && _item.value) { // 特殊字段替换
            } else if (item.type === 'text' && _item.value && typeof(_item.value) === 'string') { // 特殊字段替换
              _item.value = _item.value.replace(/^(\s*)@appkey@(\s*)$/ig, window.GLOB.appkey)
              _item.value = _item.value.replace(/^(\s*)@SessionUid@(\s*)$/ig, (localStorage.getItem('SessionUid') || ''))
              _item.value = _item.value.replace(/^(\s*)@bid@(\s*)$/ig, (this.props.BID || ''))