orgList.jsx 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. import React from 'react';
  2. import { Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker } from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import './userList.less';
  7. import OrgDesc from './orgDesc.jsx';
  8. import { auditStatusList } from '../../dataDic.js';
  9. const OrgList = React.createClass({
  10. loadData(pageNo) {
  11. this.state.data = [];
  12. this.setState({
  13. loading: true
  14. });
  15. $.ajax({
  16. method: "post",
  17. dataType: "json",
  18. crossDomain: false,
  19. url: globalConfig.context + "/api/admin/orgList",
  20. data: {
  21. pageNo: pageNo || 1,
  22. pageSize: this.state.pagination.pageSize,
  23. mobile: this.state.searchLoginId, //登录名
  24. email: this.state.searchEmail,
  25. createTime: this.state.searchTime,
  26. number: this.state.searchAftId, //阿凡提号
  27. aftUsername: this.state.searchAftUsername,
  28. auditStatus: this.state.searchAuditStatus
  29. },
  30. success: function (data) {
  31. if (data.error.length || !data.data || !data.data.list) {
  32. message.warning(data.error[0].message);
  33. return;
  34. }
  35. for (let i = 0; i < data.data.list.length; i++) {
  36. let thisdata = data.data.list[i];
  37. this.state.data.push({
  38. key: i,
  39. id: thisdata.id,
  40. mobile: thisdata.mobile,
  41. email: thisdata.email,
  42. createTime: thisdata.createTime,
  43. aftUsername: thisdata.aftUsername,
  44. number: thisdata.number,
  45. auditStatus: thisdata.auditStatus,
  46. createTimeFormattedDate: thisdata.createTimeFormattedDate,
  47. adminName: thisdata.adminName,
  48. unitName: thisdata.unitName
  49. });
  50. };
  51. this.state.pagination.current = data.data.pageNo;
  52. this.state.pagination.total = data.data.totalCount;
  53. this.setState({
  54. dataSource: this.state.data,
  55. pagination: this.state.pagination
  56. });
  57. }.bind(this),
  58. }).always(function () {
  59. this.setState({
  60. loading: false
  61. });
  62. }.bind(this));
  63. },
  64. getInitialState() {
  65. return {
  66. searchMore: true,
  67. data: [],
  68. loading: false,
  69. searchTime: [,],
  70. pagination: {
  71. defaultCurrent: 1,
  72. defaultPageSize: 10,
  73. showQuickJumper: true,
  74. pageSize: 10,
  75. onChange: function (page) {
  76. this.loadData(page);
  77. }.bind(this),
  78. showTotal: function (total) {
  79. return '共' + total + '条数据';
  80. }
  81. },
  82. columns: [
  83. {
  84. title: '阿凡提号',
  85. dataIndex: 'number',
  86. key: 'number',
  87. }, {
  88. title: '登录名',
  89. dataIndex: 'mobile',
  90. key: 'mobile',
  91. }, {
  92. title: '公司名称',
  93. dataIndex: 'unitName',
  94. key: 'unitName',
  95. }, {
  96. title: '认证状态',
  97. dataIndex: 'auditStatus',
  98. key: 'auditStatus',
  99. render: text => {
  100. switch (String(text)) {
  101. case "0":
  102. return "未提交审核";
  103. case "1":
  104. return "提交审核";
  105. case "2":
  106. return "审核未打款";
  107. case "3":
  108. return "审核已打款";
  109. case "4":
  110. return "认证未通过";
  111. case "5":
  112. return "已认证";
  113. }
  114. },
  115. }, {
  116. title: '注册时间',
  117. dataIndex: 'createTimeFormattedDate',
  118. key: 'createTimeFormattedDate',
  119. }, {
  120. title: '认证名称',
  121. dataIndex: 'aftUsername',
  122. key: 'aftUsername',
  123. }, {
  124. title: '联系方式',
  125. dataIndex: 'email',
  126. key: 'email',
  127. }, {
  128. title: '业务员',
  129. dataIndex: 'adminName',
  130. key: 'adminName',
  131. }
  132. ],
  133. dataSource: []
  134. };
  135. },
  136. componentWillMount() {
  137. this.loadData();
  138. },
  139. tableRowClick(record, index) {
  140. this.state.RowData = record;
  141. this.setState({
  142. showDesc: true
  143. });
  144. },
  145. closeDesc(e) {
  146. this.state.showDesc = e;
  147. this.loadData();
  148. },
  149. search() {
  150. this.loadData();
  151. },
  152. reset() {
  153. this.state.searchAftId = "";
  154. this.state.searchLoginId = "";
  155. this.state.searchAuditStatus = "";
  156. this.state.searchAftUsername = "";
  157. this.state.searchEmail = "";
  158. this.state.searchTime = [,];
  159. this.loadData();
  160. },
  161. searchSwitch() {
  162. this.setState({
  163. searchMore: !this.state.searchMore
  164. });
  165. },
  166. searchcreateTime(date, dateString) {
  167. this.state.createTime = dateString;
  168. },
  169. render() {
  170. const { RangePicker } = DatePicker;
  171. return (
  172. <div className="user-content" >
  173. <div className="content-title">
  174. <span>组织用户管理</span>
  175. </div>
  176. <div className="user-search">
  177. <Input placeholder="阿凡提号" value={this.state.searchAftId}
  178. onChange={(e) => { this.setState({ searchAftId: e.target.value }); }} />
  179. <Input placeholder="登录号" value={this.state.searchLoginId}
  180. onChange={(e) => { this.setState({ searchLoginId: e.target.value }); }} />
  181. <Select placeholder="选择认证状态" style={{ width: 140 }}
  182. value={this.state.searchAuditStatus}
  183. onChange={(e) => { this.setState({ searchAuditStatus: e }) }}>
  184. {
  185. auditStatusList.map(function (item, i) {
  186. return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
  187. })
  188. }
  189. </Select>
  190. <Input placeholder="认证名称" value={this.state.searchAftUsername}
  191. onChange={(e) => { this.setState({ searchAftUsername: e.target.value }); }} />
  192. <Input placeholder="联系方式" value={this.state.searchEmail}
  193. onChange={(e) => { this.setState({ searchEmail: e.target.value }); }} />
  194. <Button type="primary" onClick={this.search}>搜索</Button>
  195. <Button onClick={this.reset}>重置</Button>
  196. <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  197. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  198. <p>
  199. <span>注册时间:</span>
  200. <RangePicker value={[moment(this.state.searchTime[0]), moment(this.state.searchTime[1])]}
  201. onChange={(data, dataString) => { this.setState({ searchTime: dataString }); }} />
  202. </p>
  203. </div>
  204. </div>
  205. <div className="patent-table">
  206. <Spin spinning={this.state.loading}>
  207. <Table columns={this.state.columns}
  208. dataSource={this.state.dataSource}
  209. pagination={this.state.pagination}
  210. onRowClick={this.tableRowClick} />
  211. </Spin>
  212. </div>
  213. <OrgDesc data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  214. </div >
  215. );
  216. }
  217. });
  218. export default OrgList;