index.jsx 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. };
  30. }
  31. componentWillMount() {
  32. }
  33. render() {
  34. return (
  35. <div className="user-content">
  36. <ShowModalDiv ShowModal={this.state.showModal} />
  37. <div className="content-title" style={{ marginBottom: 10 }}>
  38. <span style={{ fontWeight: 900, fontSize: 16 }}>待开放 阿米巴-资金池</span>
  39. </div>
  40. <Tabs
  41. defaultActiveKey="1"
  42. onChange={() => {}}
  43. >
  44. <TabPane tab="搜索" key="1">
  45. </TabPane>
  46. <TabPane tab="操作" key="2">
  47. </TabPane>
  48. <TabPane tab="更改表格显示数据" key="3">
  49. </TabPane>
  50. </Tabs>
  51. </div>
  52. );
  53. }
  54. }
  55. export default Fundpool;