king
2021-10-15 fa68a6c3053441e624d995d752efcf017aaad3c7
2021-10-15
4个文件已修改
17 ■■■■■ 已修改文件
src/templates/comtableconfig/index.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/sharecomponent/chartgroupcomponent/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/zshare/unattended/index.jsx 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/zshare/unattended/settingform/index.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/comtableconfig/index.jsx
@@ -29,7 +29,7 @@
const Versions = asyncComponent(() => import('@/menu/versions'))
const UrlFieldComponent = asyncComponent(() => import('@/menu/urlfieldcomponent'))
const ReplaceField = asyncComponent(() => import('@/menu/replaceField'))
// const Unattended = asyncComponent(() => import('@/templates/zshare/unattended'))
const Unattended = asyncComponent(() => import('@/templates/zshare/unattended'))
const EditComponent = asyncComponent(() => import('@/templates/zshare/editcomponent'))
const SettingComponent = asyncComponent(() => import('@/templates/sharecomponent/settingcomponent'))
const TableComponent = asyncComponent(() => import('@/templates/sharecomponent/tablecomponent'))
@@ -1261,7 +1261,7 @@
              </div>
            } bordered={false} extra={
              <div>
                {/* <Unattended config={config} updateConfig={this.updateconfig}/> */}
                <Unattended config={config} updateConfig={this.updateconfig}/>
                <Versions MenuId={menu.MenuID} open_edition={openEdition} updateConfig={this.refreshConfig}/>
                <ReplaceField type="table" config={config} updateConfig={this.updateconfig}/>
                <EditComponent dict={this.state.dict} type="table" options={['search', 'form', 'action', 'columns']} config={this.state.config} MenuID={this.props.menu.MenuID} thawButtons={this.state.thawButtons} refresh={this.editConfig}/>
src/templates/sharecomponent/chartgroupcomponent/index.jsx
@@ -259,7 +259,7 @@
    return (
      <div className="model-table-chartview-list">
        <Icon type="plus" onClick={() => this.handleChart()} />
        {/* <Icon type="plus" onClick={() => this.handleChart()} /> */}
        {chartlist.length > 1 ? <Icon type={config.expand ? 'up' : 'down'} title="展开/合并" onClick={this.onChartChange} /> : null}
        {chartlist.length > 1 ? <DragChartView
          activeKey={chartview}
src/templates/zshare/unattended/index.jsx
@@ -41,10 +41,13 @@
  }
  submit = () => {
    // let config = fromJS(this.props.config).toJS()
    const { config } = this.props
    this.settingRef.handleConfirm().then(res => {
      this.setState({
        visible: false
      })
      this.props.updateConfig({...config, autoMatic: res})
    })
  }
src/templates/zshare/unattended/settingform/index.jsx
@@ -4,7 +4,7 @@
// import './index.scss'
class SettingForm extends Component {
class UnattenSettingForm extends Component {
  static propTpyes = {
    autoMatic: PropTypes.object,
    actions: PropTypes.array
@@ -104,4 +104,4 @@
  }
}
export default Form.create()(SettingForm)
export default Form.create()(UnattenSettingForm)