index.js 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/**
 * 打印配置
 * 2020年5月29日 09:52:44
 * 钟是志
 * */

import React, { Component } from 'react';
import pageSetting from './PageSetting';
import pageButton from './PageButton';
import pageSearch from './PageSearch';
import PageTypeMatching from '@/highOrderComponent/PageTypeMatching';
import { getInfo } from '@/highOrderComponent/Service';

class Index extends Component {
  constructor(props) {
    super(props);
    this.state = {
      configAll: {
        config: [],
      },
    };
  }

  changeConfigAll = (configAll) => {
    this.setState({
      configAll,
    });
  };

  componentDidMount() {

  }

  render() {
    const { configAll } = this.state;
    const { location  } = this.props;
    return (
        <PageTypeMatching
          pageSetting={pageSetting}
          pageButton={pageButton({
            configAll,
            location,
          })}
          pageSearch={pageSearch({
            changeConfigAll: this.changeConfigAll,
            configAll,
            location,
          })}
        />
    );
  }
}

export default Index;