123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- /*
- update:2018/07/16
- author:liting
- */
- import React from 'react';
- import $ from 'jquery/src/ajax';
- import { Form, Button, Input, Select, Spin, Table, message, Modal, Tooltip, Switch, DatePicker } from 'antd';
- import { orderType } from '@/dataDic';
- import { getOrderType } from '@/tools.js';
- import moment from 'moment';
- //主体
- const Order = Form.create()(
- React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- loading: true,
- page: pageNo
- });
- $.ajax({
- method: 'get',
- dataType: 'json',
- crossDomain: false,
- url: globalConfig.context + '/api/user/jtOrder/list',
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- orderNo: this.state.numberSearch,
- userType:1,
- orderType:3,
- commodityName: this.state.entryNameSearch,
- buyerName: this.state.companyNameSearch,
- startCreateDate: this.state.releaseDate[0],
- endCreateDate: this.state.releaseDate[1]
- },
- success: function(data) {
- let theArr = [];
- if (!data.data || !data.data.list) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- } else {
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- theArr.push({
- key: i,
- sellerId: thisdata.sellerId,
- buyerId:thisdata.buyerId,
- orderNo:thisdata.orderNo,
- commodityType:thisdata.commodityType,
- orderAmount:thisdata.orderAmount,
- commodityName:thisdata.commodityName,
- buyerName:thisdata.buyerName,
- buyerMobile:thisdata.buyerMobile,
- createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : ''
- });
- }
- this.state.pagination.current = data.data.pageNo;
- this.state.pagination.total = data.data.totalCount;
- }
- this.setState({
- dataSource: theArr,
- pagination: this.state.pagination
- });
- }.bind(this)
- }).always(
- function() {
- this.setState({
- loading: false
- });
- }.bind(this)
- );
- },
- getInitialState() {
- return {
- searchMore: true,
- selectedRowKeys: [],
- selectedRows: [],
- loading: false,
- releaseDate: [],
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function(page) {
- this.loadData(page);
- this.setState({
- selectedRowKeys: []
- });
- }.bind(this),
- showTotal: function(total) {
- return '共' + total + '条数据';
- }
- },
- columns: [
- {
- title: '订单编号',
- dataIndex: 'orderNo',
- key: 'orderNo'
- },
- {
- title: '订单类型',
- dataIndex: 'commodityType',
- key: 'commodityType',
- render: (text) => {
- return getOrderType(text);
- }
- },
- {
- title: '订单日期',
- dataIndex: 'createTime',
- key: 'createTime'
- },
- {
- title: '订单金额(万元)',
- dataIndex: 'orderAmount',
- key: 'orderAmount',
- render:(text)=>{
- return text?text:'面议'
- }
- },
- {
- title: '项目名称',
- dataIndex: 'commodityName',
- key: 'commodityName',
- render: (text) => {
- return (
- <Tooltip title={text}>
- {text && text.length > 12 ? text.substr(0,12) + '...' : text}
- </Tooltip>
- );
- }
- },
- {
- title: '消费者',
- dataIndex: 'buyerName',
- key: 'buyerName',
-
- },
- {
- title: '联系方式',
- dataIndex: 'buyerMobile',
- key: 'buyerMobile'
- },
-
- ],
- dataSource: []
- };
- },
- componentWillMount() {
- this.loadData();
- },
- //项目列表整行点击
- tableRowClick(record, index) {
- this.state.RowData = record;
- this.setState({
- editvisible: true
- });
- },
- edithandleCancel(e) {
- this.setState({
- editvisible: false
- });
- },
- search() {
- this.loadData();
- },
- //搜索部分的清零
- reset() {
- this.state.numberSearch = '';
- this.state.typeSearch = undefined;
- this.state.companyNameSearch = '';
- this.state.entryNameSearch = '';
- this.state.releaseDate = [];
- this.state.searchMore=true;
- this.loadData();
- },
- searchSwitch() {
- this.setState({
- searchMore: !this.state.searchMore
- });
- },
- render() {
- const FormItem = Form.Item;
- const rowSelection = {
- selectedRowKeys: this.state.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.setState({
- selectedRows: selectedRows.slice(-1),
- selectedRowKeys: selectedRowKeys.slice(-1)
- });
- }
- };
- const { RangePicker } = DatePicker;
- const theData = this.state.RowData || {};
- return (
- <div className="user-content">
- <div className="content-title">
- <span>需求订单列表</span>
- </div>
- <div className="user-search">
- <Input
- placeholder="订单编号"
- style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
- value={this.state.numberSearch}
- onChange={(e) => {
- this.setState({ numberSearch: e.target.value });
- }}
- />
- <Input
- placeholder="消费者名称"
- style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
- value={this.state.companyNameSearch}
- onChange={(e) => {
- this.setState({ companyNameSearch: e.target.value });
- }}
- />
- <Input
- placeholder="项目名称"
- style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
- value={this.state.entryNameSearch}
- onChange={(e) => {
- this.setState({ entryNameSearch: e.target.value });
- }}
- />
- <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
- 搜索
- </Button>
- <Button onClick={this.reset} style={{ marginRight: '10px' }}>
- 重置
- </Button>
- <span>
- 更多搜索<Switch checked={!this.state.searchMore} onChange={this.searchSwitch} />
- </span>
- <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
- <span style={{ marginRight: 10 }}>订单时间 :</span>
- <RangePicker
- value={[
- this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
- this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null
- ]}
- onChange={(data, dataString) => {
- this.setState({ releaseDate: dataString });
- }}
- />
- </div>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table
- columns={this.state.columns}
- dataSource={this.state.dataSource}
- rowSelection={rowSelection}
- pagination={this.state.pagination}
- onRowClick={this.tableRowClick}
- />
- </Spin>
- </div>
- <div className="patent-desc">
- <Modal
- className="customeDetails"
- title="订单详情"
- width="1000px"
- visible={this.state.editvisible}
- onOk={this.edithandleCancel}
- onCancel={this.edithandleCancel}
- footer=""
- >
- <Form layout="horizontal" onSubmit={this.edithandleSubmit} id="demand-form">
- <Spin spinning={this.state.loading}>
- <div className="clearfix">
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="订单编号"
- >
- <span>{theData.orderNo}</span>
- </FormItem>
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="订单类型"
- >
- <span>{getOrderType(theData.commodityType)}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="订单日期"
- >
- <span>{theData.createTime}</span>
- </FormItem>
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="订单金额(万元)"
- >
- <span>{theData.orderAmount ? theData.orderAmount + '万元' : ''}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="项目名称"
- >
- <span>{theData.commodityName}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="消费者"
- >
- <span>{theData.buyerName}</span>
- </FormItem>
- <FormItem
- className="half-item"
- labelCol={{ span: 8 }}
- wrapperCol={{ span: 12 }}
- label="联系方式"
- >
- <span>{theData.buyerMobile}</span>
- </FormItem>
- </div>
- </Spin>
- </Form>
- </Modal>
- </div>
- </div>
- );
- }
- })
- );
- export default Order;
|