index.jsx 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import React, { Component } from "react";
  2. import {
  3. Form,
  4. Button,
  5. message,
  6. Spin,
  7. Input,
  8. DatePicker,
  9. Select,
  10. Tabs,
  11. Table,
  12. Modal,
  13. AutoComplete,
  14. } from "antd";
  15. import { ChooseList } from "../../../manageCenter/order/orderNew/chooseList";
  16. import { provinceList } from "../../../NewDicProvinceList";
  17. import $ from "jquery/src/ajax";
  18. import { ShowModal } from "@/tools";
  19. import ShowModalDiv from "@/showModal.jsx";
  20. const { TabPane } = Tabs;
  21. const FormItem = Form.Item;
  22. const Option = Select.Option;
  23. const { RangePicker } = DatePicker;
  24. class Fundpool extends Component {
  25. constructor(props) {
  26. super(props);
  27. this.state = {
  28. loading: false,
  29. searchValues: {},
  30. };
  31. }
  32. componentWillMount() {
  33. }
  34. render() {
  35. const { searchValues } = this.state
  36. return (
  37. <div className="user-content">
  38. <ShowModalDiv ShowModal={this.state.showModal} onClose={() => { this.setState({ showModal: false }) }} />
  39. <div className="content-title" style={{ marginBottom: 10 }}>
  40. <span style={{ fontWeight: 900, fontSize: 16 }}>待开放 阿米巴-资金池</span>
  41. </div>
  42. <Tabs
  43. defaultActiveKey="1"
  44. onChange={() => { }}
  45. >
  46. <TabPane tab="搜索" key="1">
  47. </TabPane>
  48. <TabPane tab="操作" key="2">
  49. </TabPane>
  50. <TabPane tab="更改表格显示数据" key="3">
  51. </TabPane>
  52. </Tabs>
  53. </div>
  54. );
  55. }
  56. }
  57. export default Fundpool;