| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 | 
							- import React from 'react';
 
- import { Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal } from 'antd';
 
- import ajax from 'jquery/src/ajax/xhr.js';
 
- import $ from 'jquery/src/ajax';
 
- import moment from 'moment';
 
- import './userList.less';
 
- import OrgDesc from './orgDesc.jsx';
 
- import UserDesc from './userDesc.jsx';
 
- import { auditStatusList } from '../../dataDic.js';
 
- import { getAuditState, getSearchUrl } from '../../tools.js';
 
- const OrgAdd = React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             visible: false,
 
-             loading: false
 
-         };
 
-     },
 
-     showModal() {
 
-         this.state.mobile = undefined;
 
-         this.state.unitName = undefined;
 
-         this.setState({
 
-             visible: true,
 
-         });
 
-     },
 
-     handleCancel(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-     },
 
-     handleOk() {
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "post",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/addNewUser",
 
-             data: {
 
-                 mobile: this.state.mobile,
 
-                 unitName: this.state.unitName,
 
-                 type: 1
 
-             }
 
-         }).done(function (data) {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-             if (!data.error.length) {
 
-                 message.success('新增成功!');
 
-                 this.setState({
 
-                     visible: false,
 
-                 });
 
-                 this.props.closeDesc(false, true);
 
-             } else {
 
-                 message.warning(data.error[0].message);
 
-             };
 
-         }.bind(this));
 
-     },
 
-     render() {
 
-         return (
 
-             <div className="patent-desc" style={{ float: 'right', marginRight: '20px' }}>
 
-                 <Button type="primary" onClick={this.showModal}>添加团体用户</Button>
 
-                 <Modal maskClosable={false} title="新增团体用户" visible={this.state.visible}
 
-                     onCancel={this.handleCancel}
 
-                     width='350px'
 
-                     footer={[
 
-                         <Button key="submit" type="primary" loading={this.state.loading} onClick={this.handleOk}>提交</Button>,
 
-                         <Button key="back" onClick={this.handleCancel}>返回</Button>
 
-                     ]}
 
-                     className="admin-desc-content">
 
-                     <div className='orgAdd-input'>
 
-                         <span>用户手机号码:</span>
 
-                         <Input
 
-                             value={this.state.mobile}
 
-                             onChange={(e) => { this.setState({ mobile: e.target.value }); }} />
 
-                     </div>
 
-                     <div className='orgAdd-input'>
 
-                         <span>公司名称:</span>
 
-                         <Input
 
-                             value={this.state.unitName}
 
-                             onChange={(e) => { this.setState({ unitName: e.target.value }); }} />
 
-                     </div>
 
-                 </Modal>
 
-             </div>
 
-         );
 
-     }
 
- });
 
- const UserAdd = React.createClass({
 
-     getInitialState() {
 
-         return {
 
-             visible: false,
 
-             loading: false
 
-         };
 
-     },
 
-     showModal() {
 
-         this.state.mobile;
 
-         this.setState({
 
-             visible: true,
 
-         });
 
-     },
 
-     handleCancel(e) {
 
-         this.setState({
 
-             visible: false,
 
-         });
 
-     },
 
-     handleOk() {
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "post",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/addNewUser",
 
-             data: {
 
-                 mobile: this.state.mobile,
 
-                 type: 0
 
-             }
 
-         }).done(function (data) {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-             if (!data.error.length) {
 
-                 message.success('新增成功!');
 
-                 this.setState({
 
-                     visible: false,
 
-                 });
 
-                 this.props.closeDesc(false, true);
 
-             } else {
 
-                 message.warning(data.error[0].message);
 
-             };
 
-         }.bind(this));
 
-     },
 
-     render() {
 
-         return (
 
-             <div className="patent-desc" style={{ float: 'right', marginRight: '20px' }}>
 
-                 <Button type="primary" onClick={this.showModal}>添加个人用户</Button>
 
-                 <Modal maskClosable={false} title="新增个人用户" visible={this.state.visible}
 
-                     onCancel={this.handleCancel}
 
-                     width='350px'
 
-                     footer={[
 
-                         <Button key="submit" type="primary" loading={this.state.loading} onClick={this.handleOk}>提交</Button>,
 
-                         <Button key="back" onClick={this.handleCancel}>返回</Button>
 
-                     ]}
 
-                     className="admin-desc-content">
 
-                     <div className='orgAdd-input'>
 
-                         <span>用户手机号码:</span>
 
-                         <Input
 
-                             value={this.state.mobile}
 
-                             onChange={(e) => { this.setState({ mobile: e.target.value }); }} />
 
-                     </div>
 
-                 </Modal>
 
-             </div>
 
-         );
 
-     }
 
- });
 
- const CustomerList = React.createClass({
 
-     loadData(pageNo) {
 
-         this.state.data = [];
 
-         this.setState({
 
-             loading: true
 
-         });
 
-         $.ajax({
 
-             method: "get",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/api/admin/customer",
 
-             data: {
 
-                 pageNo: pageNo || 1,
 
-                 pageSize: this.state.pagination.pageSize,
 
-                 mobile: this.state.searchLoginId, //登录名
 
-                 email: this.state.searchEmail,
 
-                 createTime: this.state.searchTime,
 
-                 number: this.state.searchAftId, //阿凡提号
 
-                 unitName: this.state.searchUnitName,
 
-                 auditStatus: this.state.searchAuditStatus
 
-             },
 
-             success: function (data) {
 
-                 if (!data.data) {
 
-                     if (data.error && data.error.length) {
 
-                         message.warning(data.error[0].message);
 
-                     }
 
-                     return;
 
-                 };
 
-                 for (let i = 0; i < data.data.length; i++) {
 
-                     let thisdata = data.data[i];
 
-                     this.state.data.push({
 
-                         key: i,
 
-                         id: thisdata.id,
 
-                         type: thisdata.type,
 
-                         mobile: thisdata.mobile,
 
-                         email: thisdata.email,
 
-                         createTime: thisdata.createTime,
 
-                         aftUsername: thisdata.aftUsername,
 
-                         number: thisdata.number,
 
-                         auditStatus: thisdata.auditStatus,
 
-                         createTimeFormattedDate: thisdata.createTimeFormattedDate,
 
-                         adminName: thisdata.adminName,
 
-                         unitName: thisdata.unitName
 
-                     });
 
-                 };
 
-                 this.state.pagination.current = data.data.pageNo;
 
-                 this.state.pagination.total = data.data.totalCount;
 
-                 this.setState({
 
-                     dataSource: this.state.data,
 
-                     pagination: this.state.pagination
 
-                 });
 
-             }.bind(this),
 
-         }).always(function () {
 
-             this.setState({
 
-                 loading: false
 
-             });
 
-         }.bind(this));
 
-     },
 
-     getInitialState() {
 
-         return {
 
-             searchMore: true,
 
-             data: [],
 
-             loading: false,
 
-             searchTime: [,],
 
-             pagination: {
 
-                 defaultCurrent: 1,
 
-                 defaultPageSize: 10,
 
-                 showQuickJumper: true,
 
-                 pageSize: 10,
 
-                 onChange: function (page) {
 
-                     this.loadData(page);
 
-                 }.bind(this),
 
-                 showTotal: function (total) {
 
-                     return '共' + total + '条数据';
 
-                 }
 
-             },
 
-             columns: [
 
-                 {
 
-                     title: '阿凡提号',
 
-                     dataIndex: 'number',
 
-                     key: 'number',
 
-                 }, {
 
-                     title: '登录名',
 
-                     dataIndex: 'mobile',
 
-                     key: 'mobile',
 
-                 }, {
 
-                     title: '公司名称',
 
-                     dataIndex: 'unitName',
 
-                     key: 'unitName',
 
-                 }, {
 
-                     title: '认证状态',
 
-                     dataIndex: 'auditStatus',
 
-                     key: 'auditStatus',
 
-                     render: text => { return getAuditState(text); }
 
-                 }, {
 
-                     title: '注册时间',
 
-                     dataIndex: 'createTimeFormattedDate',
 
-                     key: 'createTimeFormattedDate',
 
-                 }, {
 
-                     title: '认证名称',
 
-                     dataIndex: 'aftUsername',
 
-                     key: 'aftUsername',
 
-                 }, {
 
-                     title: '联系方式',
 
-                     dataIndex: 'email',
 
-                     key: 'email',
 
-                 }, {
 
-                     title: '业务员',
 
-                     dataIndex: 'adminName',
 
-                     key: 'adminName',
 
-                 }
 
-             ],
 
-             dataSource: []
 
-         };
 
-     },
 
-     componentWillMount() {
 
-         this.loadData();
 
-         if (window.location.search) {
 
-             let theArr = getSearchUrl(window.location.search);
 
-             if (theArr.length > 1) {
 
-                 let theObj = {};
 
-                 theObj.id = theArr[0];
 
-                 theObj.type = theArr[1];
 
-                 if (theObj.id != 'null' && theObj.type != 'null') {
 
-                     this.tableRowClick(theObj);
 
-                 };
 
-             };
 
-         };
 
-     },
 
-     tableRowClick(record, index) {
 
-         this.state.RowData = record;
 
-         switch (record.type) {
 
-             case '0':
 
-                 this.setState({
 
-                     userShowDesc: true
 
-                 });
 
-                 break;
 
-             case '1':
 
-                 this.setState({
 
-                     orgShowDesc: true
 
-                 });
 
-                 break;
 
-         };
 
-     },
 
-     closeDesc(e, s) {
 
-         this.state.userShowDesc = e;
 
-         this.state.orgShowDesc = e;
 
-         if (s) {
 
-             this.loadData();
 
-         };
 
-     },
 
-     search() {
 
-         this.loadData();
 
-     },
 
-     reset() {
 
-         this.state.searchAftId = undefined;
 
-         this.state.searchLoginId = undefined;
 
-         this.state.searchAuditStatus = undefined;
 
-         this.state.searchUnitName = undefined;
 
-         this.state.searchEmail = undefined;
 
-         this.state.searchTime = [];
 
-         this.loadData();
 
-     },
 
-     searchSwitch() {
 
-         this.setState({
 
-             searchMore: !this.state.searchMore
 
-         });
 
-     },
 
-     searchcreateTime(date, dateString) {
 
-         this.state.createTime = dateString;
 
-     },
 
-     render() {
 
-         const { RangePicker } = DatePicker;
 
-         return (
 
-             <div className="user-content" >
 
-                 <div className="content-title">
 
-                     <span>我的客户管理</span>
 
-                     <OrgAdd closeDesc={this.closeDesc} />
 
-                     <UserAdd closeDesc={this.closeDesc} />
 
-                 </div>
 
-                 <div className="user-search">
 
-                     <Input placeholder="阿凡提号" value={this.state.searchAftId}
 
-                         onChange={(e) => { this.setState({ searchAftId: e.target.value }); }} />
 
-                     <Input placeholder="登录号" value={this.state.searchLoginId}
 
-                         onChange={(e) => { this.setState({ searchLoginId: e.target.value }); }} />
 
-                     <Select placeholder="选择认证状态" style={{ width: 140 }}
 
-                         value={this.state.searchAuditStatus}
 
-                         onChange={(e) => { this.setState({ searchAuditStatus: e }) }}>
 
-                         {
 
-                             auditStatusList.map(function (item, i) {
 
-                                 return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
 
-                             })
 
-                         }
 
-                     </Select>
 
-                     <Input placeholder="公司名称" value={this.state.searchUnitName}
 
-                         onChange={(e) => { this.setState({ searchUnitName: e.target.value }); }} />
 
-                     <Input placeholder="联系方式" value={this.state.searchEmail}
 
-                         onChange={(e) => { this.setState({ searchEmail: e.target.value }); }} />
 
-                     <Button type="primary" onClick={this.search}>搜索</Button>
 
-                     <Button onClick={this.reset}>重置</Button>
 
-                     <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
 
-                     <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
 
-                         <p>
 
-                             <span>注册时间:</span>
 
-                             <RangePicker
 
-                                 allowClear={false}
 
-                                 value={[this.state.searchTime[0] ? moment(this.state.searchTime[0]) : null,
 
-                                 this.state.searchTime[1] ? moment(this.state.searchTime[1]) : null]}
 
-                                 onChange={(data, dataString) => { this.setState({ searchTime: dataString }); }} />
 
-                         </p>
 
-                     </div>
 
-                 </div>
 
-                 <div className="patent-table">
 
-                     <Spin spinning={this.state.loading}>
 
-                         <Table columns={this.state.columns}
 
-                             dataSource={this.state.dataSource}
 
-                             pagination={this.state.pagination}
 
-                             onRowClick={this.tableRowClick} />
 
-                     </Spin>
 
-                 </div>
 
-                 <UserDesc data={this.state.RowData} showDesc={this.state.userShowDesc} closeDesc={this.closeDesc} />
 
-                 <OrgDesc data={this.state.RowData} showDesc={this.state.orgShowDesc} closeDesc={this.closeDesc} />
 
-             </div >
 
-         );
 
-     }
 
- });
 
- export default CustomerList;
 
 
  |