12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import React, { Component } from "react";
- import {
- Form,
- Button,
- message,
- Spin,
- Input,
- DatePicker,
- Select,
- Tabs,
- Table,
- Modal,
- AutoComplete,
- } from "antd";
- import { ChooseList } from "../../../manageCenter/order/orderNew/chooseList";
- import { provinceList } from "../../../NewDicProvinceList";
- import $ from "jquery/src/ajax";
- import { ShowModal } from "@/tools";
- import ShowModalDiv from "@/showModal.jsx";
- const { TabPane } = Tabs;
- const FormItem = Form.Item;
- const Option = Select.Option;
- const { RangePicker } = DatePicker;
- class Fundpool extends Component {
- constructor(props) {
- super(props);
- this.state = {
- loading: false,
- searchValues: {},
- };
- }
- componentWillMount() {
- }
- render() {
- const { searchValues } = this.state
- return (
- <div className="user-content">
- <ShowModalDiv ShowModal={this.state.showModal} onClose={() => { this.setState({ showModal: false }) }} />
- <div className="content-title" style={{ marginBottom: 10 }}>
- <span style={{ fontWeight: 900, fontSize: 16 }}>待开放 阿米巴-资金池</span>
- </div>
- <Tabs
- defaultActiveKey="1"
- onChange={() => { }}
- >
- <TabPane tab="搜索" key="1">
- </TabPane>
- <TabPane tab="操作" key="2">
- </TabPane>
- <TabPane tab="更改表格显示数据" key="3">
- </TabPane>
- </Tabs>
- </div>
- );
- }
- }
- export default Fundpool;
|