userLibrary.jsx 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. import { Component } from 'react';
  2. import { Input, Select, Spin, Table, message, Button } from 'antd';
  3. class UserLibrary extends Component {
  4. constructor(props) {
  5. super(props);
  6. this.state = {
  7. loading: false,
  8. dataSource: [],
  9. pagination: {
  10. defaultCurrent: 1,
  11. defaultPageSize: 10,
  12. showQuickJumper: true,
  13. pageSize: 10,
  14. onChange: function(page) {
  15. this.loadData(page);
  16. this.setState({
  17. selectedRowKeys: []
  18. });
  19. }.bind(this),
  20. showTotal: function(total) {
  21. return '共' + total + '条数据';
  22. }
  23. },
  24. columns: [
  25. {
  26. <<<<<<< HEAD
  27. title: '用户名',
  28. =======
  29. title: '客户名称',
  30. >>>>>>> 27804543ec9e998d961332721678873174a185dd
  31. dataIndex: 'nickname',
  32. key: 'nickname'
  33. },
  34. {
  35. title: '手机号码',
  36. dataIndex: 'mobile',
  37. key: 'mobile'
  38. },
  39. {
  40. title: '用户类型',
  41. dataIndex: 'type',
  42. key: 'type',
  43. render: (text) => {
  44. return text == '1' ? '企业用户':text=='0'? '个人用户':'未认证';
  45. }
  46. },
  47. {
  48. title: '注册时间',
  49. dataIndex: 'createTime',
  50. key: 'createTime'
  51. }
  52. ]
  53. };
  54. }
  55. loadData(pageNo) {
  56. this.state.data = [];
  57. this.setState({
  58. page:pageNo,
  59. loading: true
  60. });
  61. $.ajax({
  62. method: "get",
  63. dataType: "json",
  64. crossDomain: false,
  65. url: globalConfig.context + "/api/admin/user/info",
  66. data: {
  67. pageNo: pageNo || 1,
  68. pageSize: this.state.pagination.pageSize,
  69. type: this.state.type, //需求名称
  70. username: this.state.username,
  71. mobile:this.state.mobile
  72. },
  73. success: function (data) {
  74. let theArr = [];
  75. if (!data.data || !data.data.list) {
  76. if (data.error && data.error.length) {
  77. message.warning(data.error[0].message);
  78. };
  79. } else {
  80. for (let i = 0; i < data.data.list.length; i++) {
  81. let thisdata = data.data.list[i];
  82. theArr.push({
  83. key: i,
  84. id: thisdata.id,
  85. type: thisdata.type, //编号
  86. nickname: thisdata.nickname,
  87. username:thisdata.username,
  88. mobile: thisdata.mobile,
  89. email:thisdata.email,
  90. createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():''
  91. });
  92. };
  93. };
  94. this.state.pagination.current = data.data.pageNo;
  95. this.state.pagination.total = data.data.totalCount;
  96. if(data.data&&data.data.list&&!data.data.list.length){
  97. this.state.pagination.current=0
  98. this.state.pagination.total=0
  99. };
  100. this.setState({
  101. total:data.data.totalCount,
  102. dataSource: theArr,
  103. pagination: this.state.pagination
  104. });
  105. }.bind(this),
  106. }).always(function () {
  107. this.setState({
  108. loading: false
  109. });
  110. }.bind(this));
  111. }
  112. search() {
  113. this.loadData();
  114. }
  115. reset() {
  116. this.state.username = '';
  117. this.state.type = undefined;
  118. this.state.mobile = '';
  119. this.loadData();
  120. }
  121. componentWillMount() {
  122. this.loadData();
  123. }
  124. render() {
  125. const rowSelection = {
  126. selectedRowKeys: this.state.selectedRowKeys,
  127. onChange: (selectedRowKeys, selectedRows) => {
  128. this.setState({
  129. selectedRows: selectedRows.slice(-1),
  130. selectedRowKeys: selectedRowKeys.slice(-1)
  131. });
  132. }
  133. };
  134. return (
  135. <div className="user-content">
  136. <div className="content-title">
  137. <div className="content-title">
  138. <span>用户库</span>
  139. </div>
  140. <div className="user-search">
  141. <Input
  142. style={{ marginRight: 10 }}
  143. value={this.state.username}
  144. placeholder="用户名称"
  145. onChange={(e) => {
  146. this.setState({ username: e.target.value });
  147. }}
  148. />
  149. <Input
  150. style={{ marginRight: 10 }}
  151. value={this.state.mobile}
  152. placeholder="手机号码"
  153. onChange={(e) => {
  154. this.setState({ mobile: e.target.value });
  155. }}
  156. />
  157. <Select
  158. value={this.state.type}
  159. style={{ width: 150 }}
  160. placeholder="用户类型"
  161. onChange={(e) => {
  162. this.setState({ type: e });
  163. }}
  164. >
  165. <Select.Option value="0">个人用户</Select.Option>
  166. <Select.Option value="1">企业用户</Select.Option>
  167. </Select>
  168. <Button type="primary" onClick={this.search.bind(this)} style={{ marginRight: 10 }}>
  169. 搜索
  170. </Button>
  171. <Button onClick={this.reset.bind(this)}>重置</Button>
  172. </div>
  173. <div className="patent-table">
  174. <Spin spinning={this.state.loading}>
  175. <Table
  176. columns={this.state.columns}
  177. dataSource={this.state.dataSource}
  178. rowSelection={rowSelection}
  179. pagination={this.state.pagination}
  180. />
  181. </Spin>
  182. </div>
  183. </div>
  184. </div>
  185. );
  186. }
  187. }
  188. export default UserLibrary;