myClient.jsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. import React from 'react';
  2. import { Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload } from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import './myClient.less';
  7. import TechAchievementDesc from './myClientDesc.jsx';
  8. import { achievementCategoryList, techAuditStatusList,cityArr,customerStatus } from '../../dataDic.js';
  9. import { beforeUploadFile, companySearch, getAchievementCategory, getSearchUrl, getTechAuditStatus,getcustomerTyp,getcityArr,getcustomerStatue,getCompanyIntention,getfllowSituation} from '../../tools.js';
  10. import BatchImport from './batchImport';
  11. const AchievementList = React.createClass({
  12. loadData(pageNo, apiUrl) {
  13. this.state.data = [];
  14. this.setState({
  15. loading: true
  16. });
  17. $.ajax({
  18. method: "get",
  19. dataType: "json",
  20. crossDomain: false,
  21. url:globalConfig.context + '/api/admin/customer/searchCustomerList',
  22. data: {
  23. pageNo: pageNo || 1,
  24. pageSize: this.state.pagination.pageSize,
  25. companyName: this.state.companyName, //名称
  26. customerTyp: this.state.customerTyp, //客户类型
  27. province:this.state.province,//地区
  28. customerStatue:this.state.customerStatue,//客户状态
  29. customerName:this.state.customerName,//联系人姓名
  30. adminName:this.state.adminName,//跟单人
  31. //releaseDateStartDate: this.state.releaseDate[0],
  32. //releaseDateEndDate: this.state.releaseDate[1],
  33. },
  34. success: function (data) {
  35. console.log(data)
  36. let theArr = [];
  37. if (!data.data || !data.data.list) {
  38. if (data.error && data.error.length) {
  39. message.warning(data.error[0].message);
  40. };
  41. } else {
  42. for (let i = 0; i < data.data.list.length; i++) {
  43. let thisdata = data.data.list[i];
  44. theArr.push({
  45. key: i,
  46. id: thisdata.id,
  47. companyName:thisdata.companyName,
  48. customerTyp:thisdata.customerTyp,
  49. province:thisdata.province,
  50. customerName:thisdata.customerName,
  51. telNum:thisdata.telNum,
  52. customerStatue:thisdata.customerStatue,
  53. companyIntention:thisdata.companyIntention,
  54. fllowSituation:thisdata.fllowSituation,
  55. adminName:thisdata.adminName
  56. });
  57. };
  58. this.state.pagination.current = data.data.pageNo;
  59. this.state.pagination.total = data.data.totalCount;
  60. };
  61. this.setState({
  62. dataSource: theArr,
  63. pagination: this.state.pagination
  64. });
  65. }.bind(this),
  66. }).always(function () {
  67. this.setState({
  68. loading: false
  69. });
  70. }.bind(this));
  71. },
  72. getInitialState() {
  73. return {
  74. searchMore: true,
  75. searchType: 0,
  76. validityPeriodDate: [],
  77. releaseDate: [],
  78. selectedRowKeys: [],
  79. selectedRows: [],
  80. loading: false,
  81. pagination: {
  82. defaultCurrent: 1,
  83. defaultPageSize: 10,
  84. showQuickJumper: true,
  85. pageSize: 10,
  86. onChange: function (page) {
  87. this.loadData(page);
  88. }.bind(this),
  89. showTotal: function (total) {
  90. return '共' + total + '条数据';
  91. }
  92. },
  93. columns: [
  94. {
  95. title: '公司名称',
  96. dataIndex: 'companyName',
  97. key: 'companyName',
  98. }, {
  99. title: '客户类型',
  100. dataIndex: 'customerTyp',
  101. key: 'customerTyp',
  102. render: text => { return getcustomerTyp(text); }
  103. }, {
  104. title: '地区',
  105. dataIndex: 'province',
  106. key: 'province',
  107. render: text => { return getcityArr(text); }
  108. }, {
  109. title: '联系人姓名',
  110. dataIndex: 'customerName',
  111. key: 'customerName',
  112. },
  113. {
  114. title: '手机号',
  115. dataIndex: 'telNum',
  116. key:'telNum',
  117. },
  118. {
  119. title: '客户状态',
  120. dataIndex: 'customerStatue',
  121. key: 'customerStatue',
  122. render: text => { return getcustomerStatue(text) }
  123. },
  124. {
  125. title: '意向服务',
  126. dataIndex: 'companyIntention',
  127. key: 'companyIntention',
  128. render: text => { return getCompanyIntention(text) }
  129. },
  130. {
  131. title: '最新跟进',
  132. dataIndex: 'fllowSituation',
  133. key: 'fllowSituation',
  134. render: text => { return getfllowSituation(text) }
  135. },
  136. {
  137. title: '跟单人',
  138. dataIndex: 'adminName',
  139. key: 'adminName',
  140. }
  141. ],
  142. dataSource: [],
  143. searchTime: [,]
  144. };
  145. },
  146. componentWillMount() {
  147. let theArr = [];
  148. customerStatus.map(function (item) {
  149. theArr.push(
  150. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  151. )
  152. });
  153. let auditArr = [];
  154. cityArr.map(function (item) {
  155. auditArr.push(
  156. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  157. )
  158. });
  159. this.state.customerStatuarr = theArr;
  160. this.state.auditStatusOption = auditArr;
  161. if (window.location.search) {
  162. let theObj = getSearchUrl(window.location.search);
  163. if (theObj.rid) {
  164. theObj.id = theObj.rid;
  165. if (theObj.rid != 'null') {
  166. this.tableRowClick(theObj);
  167. };
  168. };
  169. };
  170. this.loadData();
  171. },
  172. tableRowClick(record, index) {
  173. this.state.RowData = record;
  174. this.setState({
  175. showDesc: true
  176. });
  177. },
  178. delectRow() {
  179. let deletedIds;
  180. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  181. let rowItem = this.state.selectedRows[idx];
  182. if (rowItem.id) {
  183. deletedIds=rowItem.id
  184. };
  185. };
  186. this.setState({
  187. selectedRowKeys: [],
  188. loading: deletedIds.length > 0
  189. });
  190. $.ajax({
  191. method: "GET",
  192. dataType: "json",
  193. crossDomain: false,
  194. url: globalConfig.context + "/api/admin/customer/deleteCustomer",
  195. data: {
  196. id: deletedIds
  197. }
  198. }).done(function (data) {
  199. if (!data.data.error.length) {
  200. message.success('删除成功!');
  201. this.setState({
  202. loading: false,
  203. });
  204. } else {
  205. message.warning(data.error[0].message);
  206. };
  207. this.loadData();
  208. }.bind(this));
  209. },
  210. addClick() {
  211. this.state.RowData = {};
  212. this.setState({
  213. showDesc: true
  214. });
  215. },
  216. closeDesc(e, s) {
  217. this.state.showDesc = e;
  218. if (s) {
  219. this.loadData();
  220. };
  221. },
  222. search() {
  223. this.loadData();
  224. },
  225. reset() {
  226. this.state.id = undefined;
  227. this.state.companyName = undefined;
  228. this.state.customerTyp = undefined;
  229. this.state.province = undefined;
  230. this.state.ownerType = undefined;
  231. this.state.customerStatue = undefined;
  232. this.state.auditStatus = undefined;
  233. this.state.adminName = undefined;
  234. this.state.customerName = undefined;
  235. this.state.releaseDate = [];
  236. this.loadData();
  237. },
  238. searchSwitch() {
  239. this.setState({
  240. searchMore: !this.state.searchMore
  241. });
  242. },
  243. render() {
  244. const rowSelection = {
  245. selectedRowKeys: this.state.selectedRowKeys,
  246. onChange: (selectedRowKeys, selectedRows) => {
  247. this.setState({
  248. selectedRows: selectedRows.slice(-1),
  249. selectedRowKeys: selectedRowKeys.slice(-1)
  250. });
  251. }
  252. };
  253. const hasSelected = this.state.selectedRowKeys.length > 0;
  254. const { RangePicker } = DatePicker;
  255. return (
  256. <div className="user-content" >
  257. <div className="content-title">
  258. <span>客户管理</span>
  259. <div className="patent-addNew clearfix">
  260. <Upload
  261. action={globalConfig.context + "/api/admin/achievement/uploadTemplate"}
  262. data={{ 'sign': 'achievement_template' }}
  263. beforeUpload={beforeUploadFile}
  264. showUploadList={false}
  265. onChange={(info) => {
  266. if (info.file.status !== 'uploading') {
  267. console.log(info.file, info.fileList);
  268. }
  269. if (info.file.status === 'done') {
  270. if (!info.file.response.error.length) {
  271. message.success(`${info.file.name} 文件上传成功!`);
  272. } else {
  273. message.warning(info.file.response.error[0].message);
  274. return;
  275. };
  276. } else if (info.file.status === 'error') {
  277. message.error(`${info.file.name} 文件上传失败。`);
  278. };
  279. }} >
  280. <Button>上传批量导入模板</Button>
  281. </Upload>
  282. <Button onClick={() => { window.open(globalConfig.context + '/api/admin/achievement/downloadTemplate?sign=achievement_template') }}>下载批量导入模板</Button>
  283. <Button type="primary" className="addButton" onClick={this.addClick}>新建客户<Icon type="plus" /></Button>
  284. <BatchImport closeDesc={this.closeDesc} />
  285. </div>
  286. </div>
  287. <div className="user-search">
  288. <Input placeholder="公司名称"
  289. value={this.state.companyName}
  290. onChange={(e) => { this.setState({ companyName: e.target.value }); }} />
  291. <Select placeholder="客户类型" style={{ width: 120 }}
  292. value={this.state.customerTyp }
  293. onChange={(e) => { this.setState({ customerTyp : e }) }}>
  294. <Select.Option value="0" >个人客户</Select.Option>
  295. <Select.Option value="1" >公司客户</Select.Option>
  296. </Select>
  297. <Select placeholder="地区"
  298. style={{ width: 160 }}
  299. value={this.state.province}
  300. onChange={(e) => { this.setState({ province: e }) }}>
  301. {this.state.auditStatusOption}
  302. </Select>
  303. <Select placeholder="客户状态" style={{ width: 120 }}
  304. value={this.state.customerStatue}
  305. onChange={(e) => { this.setState({ customerStatue: e }) }}>
  306. {this.state.customerStatuarr}
  307. </Select>
  308. <Button type="primary" onClick={this.search}>搜索</Button>
  309. <Button onClick={this.reset}>重置</Button>
  310. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  311. disabled={!hasSelected}
  312. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  313. <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  314. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  315. <Input placeholder="跟单人" style={{width:'140px',marginRight:'10px'}}
  316. value={this.state.adminName}
  317. onChange={(e) => { this.setState({ adminName: e.target.value }); }} />
  318. <Input placeholder="联系人姓名" style={{width:'140px',marginRight:'10px'}}
  319. value={this.state.customerName}
  320. onChange={(e) => { this.setState({ customerName: e.target.value }); }} />
  321. <span>发布时间 :</span>
  322. <RangePicker
  323. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  324. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  325. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
  326. </div>
  327. </div>
  328. <div className="patent-table">
  329. <Spin spinning={this.state.loading}>
  330. <Table columns={this.state.columns}
  331. dataSource={this.state.dataSource}
  332. rowSelection={rowSelection}
  333. pagination={this.state.pagination}
  334. onRowClick={this.tableRowClick} />
  335. </Spin>
  336. </div>
  337. <TechAchievementDesc
  338. data={this.state.RowData}
  339. detailApiUrl={this.props['data-detailApiUrl']}
  340. achievementCategoryOption={this.state.achievementCategoryOption}
  341. showDesc={this.state.showDesc}
  342. closeDesc={this.closeDesc} />
  343. </div >
  344. );
  345. }
  346. });
  347. export default AchievementList;