| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 | import React,{Component} from "react";import {Form, Button, DatePicker, Input, message, Select, Spin, Table, Tabs} from "antd";import {    ShowModal,} from "@/tools";import {ChooseList} from "../../manageCenter/order/orderNew/chooseList";import $ from "jquery/src/ajax";import moment from "moment";const {TabPane} = Tabs;const { RangePicker } = DatePicker;const FormItem = Form.Itemclass TabelContent extends Component{    constructor(props) {        super(props);        this.state={            changeList:[],            dataSource:[],            pagination: {                defaultCurrent: 1,                defaultPageSize: 10,                showQuickJumper: true,                pageSize: 10,                onChange: function(page) {                    this.loadData(page);                }.bind(this),                showTotal: function(total) {                    return "共" + total + "条数据";                }            },            searchValues:{},            contactsOption:[]        }        this.loadData= this.loadData.bind(this);        this.exportExec= this.exportExec.bind(this);        this.selectSuperId= this.selectSuperId.bind(this);    }    loadData(pageNo) {        this.setState({            loading:true        })        $.ajax({            method: "get",            dataType: "json",            crossDomain: false,            url: globalConfig.context + this.props.tabelApi,            data: {                pageNo: pageNo || 1,                pageSize: this.state.pagination.pageSize,            },            success: function(data) {                ShowModal(this);                this.setState({                    loading:false                })                if (data.error && data.error.length === 0) {                    this.state.pagination.current = data.data.pageNo;                    this.state.pagination.total = data.data.totalCount;                    if (data.data && data.data.list && !data.data.list.length) {                        this.state.pagination.current = 0;                        this.state.pagination.total = 0;                    }                    this.setState({                        dataSource: this.props.dataProcessing ? this.props.dataProcessing(data) : data.data.list,                        pagination: this.state.pagination,                        pageNo:data.data.pageNo                    });                }else{                    message.warning(data.error[0].message);                }            }.bind(this)        }).always(            function() {                this.setState({                    loading: false                });            }.bind(this)        );    }    exportExec(){        let data = {            clockStart:this.state.releaseDate[0],            clockEnd:this.state.releaseDate[1],            createStart:this.state.createReleaseDate[0],            createEnd:this.state.createReleaseDate[1],            depId:this.state.superId,            aid:this.state.theTypes        };        for(let i of Object.keys(data)){            if(!data[i]){                delete data[i]            }        }        window.location.href =            globalConfig.context +            this.props.exportApi + "?" +            $.param(data);    }    //获取上级组织    selectSuperId() {        this.setState({            departmentLoading: true        });        $.ajax({            method: "get",            dataType: "json",            crossDomain: false,            url: globalConfig.context + "/api/admin/organization/selectSuperId",            data:{},            success: function (data) {                let theArr = [];                if (data.error && data.error.length === 0) {                    for(let i=0;i<data.data.length;i++){                        let theData = data.data[i];                        theArr.push(                            {                                value:theData.id,                                label:theData.name                            }                        );                    };                    this.setState({                        contactsOption: theArr,                    });                }else{                    message.warning(data.error[0].message);                }            }.bind(this),        }).always(function () {            this.setState({                departmentLoading: false            });        }.bind(this));    }    componentDidMount() {        this.loadData();        if(this.props.searchList){            let arr = this.props.searchList.filter(v=>v.type === 'departmentSelect')            let arr1 = this.props.searchList.filter(v=>v.defaultValue)            if(arr.length > 0){                this.selectSuperId();            }            if(arr1.length > 0){                for(let i of arr1){                    this.state.searchValues[i.dataKey] = i.defaultValue                }            }        }    }    render() {        const { searchValues } = this.state;        return (            <div>                <Tabs defaultActiveKey="1" className="test">                    <TabPane tab="搜索" key="1">                        <div className="user-search" style={{paddingTop:'10px'}}>                            <Form layout="inline">                                {                                    (this.props.searchList || []).map((v,k)=>(                                        v.type === 'text' ?                                            <FormItem label={v.title}>                                                <Input                                                    key={k}                                                    placeholder={v.placeholder}                                                    value={v.value ? v.value : (v.defaultValue || undefined)}                                                    style={v.style ? v.style : { width: 150, marginRight: 10}}                                                    onChange={(e) => {                                                        searchValues[v.dataKey] = e.target.value                                                        this.setState({                                                            searchValues:  searchValues                                                        });                                                    }}                                                />                                            </FormItem> :                                            v.type === 'select' || v.type === 'departmentSelect' ?                                                <FormItem label={v.title} style={{marginTop:'-8px'}}>                                                    <Spin spinning={this.state.departmentLoading}>                                                        {                                                            <Select                                                                key={k}                                                                placeholder={v.placeholder}                                                                style={v.style ? v.style : { width:200,marginRight: 10}}                                                                value={searchValues[v.dataKey] ? searchValues[v.dataKey] : (v.defaultValue || undefined)}                                                                onChange={(e) => {                                                                    searchValues[v.dataKey] = String(e);                                                                    this.setState({                                                                        searchValues:  searchValues                                                                    });                                                                }}>                                                                {                                                                    v.selectOptionList ?                                                                        v.selectOptionList():                                                                        (                                                                            v.type === 'departmentSelect' ?                                                                                this.state.contactsOption :                                                                                (v.selectList || [])                                                                        ).map((v)=>(                                                                            <Select.Option                                                                                key={v.value}                                                                                value={v.value}                                                                            >                                                                                {v.label}                                                                            </Select.Option>                                                                        ))                                                                }                                                            </Select>                                                        }                                                    </Spin>                                                </FormItem>: v.type === 'times' ?                                                <FormItem label={v.title}>                                                    <RangePicker                                                        style={{marginRight:'10px',marginTop: '2px'}}                                                        value={[                                                            searchValues[v.dataKey[0]]                                                                ? moment(searchValues[v.dataKey[0]])                                                                : null,                                                            searchValues[v.dataKey[1]]                                                                ? moment(searchValues[v.dataKey[1]])                                                                : null,                                                        ]}                                                        onChange={(data, dataString) => {                                                            searchValues[v.dataKey[0]] = String(dataString[0]);                                                            searchValues[v.dataKey[1]] = String(dataString[1]);                                                            this.setState({                                                                searchValues:  searchValues                                                            });                                                        }}                                                    />                                                </FormItem>: null                                    ))                                }                                <Button type="primary" onClick={()=>{                                    this.loadData();                                }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>                                <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>                            </Form>                        </div>                    </TabPane>                    <TabPane tab="更改表格显示数据" key="2">                        <div style={{ marginLeft: 10 }}>                            <ChooseList                                columns={this.props.columns}                                changeFn={this.changeList}                                changeList={this.state.changeList}                                top={55}                                margin={11}                            />                        </div>                    </TabPane>                    {this.props.exportApi && <TabPane tab="导出" key="3">                        <div style={{ float: "left" }}>                            <Button onClick={this.exportExec} style={{ margin: 10 }}>导出excel</Button>                        </div>                    </TabPane>}                </Tabs>                <div className="patent-table">                    <Spin spinning={this.state.loading}>                        <Table                            bordered                            size="middle"                            scroll={{ x: 800, y: 0 }}                            columns={                                this.state.changeList.length > 0                                    ? this.state.changeList                                    : this.props.columns                            }                            dataSource={this.state.dataSource}                            pagination={this.state.pagination}                        />                    </Spin>                </div>            </div>        )    }}export default TabelContent;
 |