order.jsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. /*
  2. update:2018/07/16
  3. author:liting
  4. */
  5. import React from 'react';
  6. import $ from 'jquery/src/ajax';
  7. import { Form, Button, Input, Select, Spin, Table, message, Modal, Tooltip, Switch, DatePicker } from 'antd';
  8. import { orderType } from '@/dataDic';
  9. import { getOrderType } from '@/tools.js';
  10. import moment from 'moment';
  11. //主体
  12. const Order = Form.create()(
  13. React.createClass({
  14. loadData(pageNo) {
  15. this.state.data = [];
  16. this.setState({
  17. loading: true,
  18. page: pageNo
  19. });
  20. $.ajax({
  21. method: 'get',
  22. dataType: 'json',
  23. crossDomain: false,
  24. url: globalConfig.context + '/portal/service/jtProject/list',
  25. data: {
  26. pageNo: pageNo || 1,
  27. pageSize: this.state.pagination.pageSize,
  28. number: this.state.numberSearch,
  29. type: this.state.typeSearch,
  30. entryName: this.state.entryNameSearch,
  31. companyName: this.state.companyNameSearch,
  32. start: this.state.releaseDate[0],
  33. end: this.state.releaseDate[1]
  34. },
  35. success: function(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. name: thisdata.name,
  48. number: thisdata.number,
  49. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : ''
  50. });
  51. }
  52. this.state.pagination.current = data.data.pageNo;
  53. this.state.pagination.total = data.data.totalCount;
  54. }
  55. this.setState({
  56. dataSource: theArr,
  57. pagination: this.state.pagination
  58. });
  59. }.bind(this)
  60. }).always(
  61. function() {
  62. this.setState({
  63. loading: false
  64. });
  65. }.bind(this)
  66. );
  67. },
  68. getInitialState() {
  69. return {
  70. searchMore: true,
  71. selectedRowKeys: [],
  72. selectedRows: [],
  73. loading: false,
  74. releaseDate: [],
  75. pagination: {
  76. defaultCurrent: 1,
  77. defaultPageSize: 10,
  78. showQuickJumper: true,
  79. pageSize: 10,
  80. onChange: function(page) {
  81. this.loadData(page);
  82. this.setState({
  83. selectedRowKeys: []
  84. });
  85. }.bind(this),
  86. showTotal: function(total) {
  87. return '共' + total + '条数据';
  88. }
  89. },
  90. columns: [
  91. {
  92. title: '订单编号',
  93. dataIndex: 'name',
  94. key: 'bname'
  95. },
  96. {
  97. title: '订单类型',
  98. dataIndex: 'cname',
  99. key: 'cname',
  100. render: (text) => {
  101. return getOrderType(text);
  102. }
  103. },
  104. {
  105. title: '订单日期',
  106. dataIndex: 'superName',
  107. key: 'superName'
  108. },
  109. {
  110. title: '订单金额',
  111. dataIndex: 'price',
  112. key: 'price'
  113. },
  114. {
  115. title: '公司名称',
  116. dataIndex: 'offset',
  117. key: 'offset',
  118. render: (text) => {
  119. return (
  120. <Tooltip title={text}>
  121. {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
  122. </Tooltip>
  123. );
  124. }
  125. },
  126. {
  127. title: '项目名称',
  128. dataIndex: 'memberPrice',
  129. key: 'memberPrice',
  130. render: (text) => {
  131. return (
  132. <Tooltip title={text}>
  133. {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
  134. </Tooltip>
  135. );
  136. }
  137. },
  138. {
  139. title: '联系人',
  140. dataIndex: 'activityFlag',
  141. key: 'activityFlag'
  142. },
  143. {
  144. title: '联系方式',
  145. dataIndex: 'activityFlag1',
  146. key: 'activityFlag1'
  147. },
  148. {
  149. title: '买方',
  150. dataIndex: 'activityFlag12',
  151. key: 'activityFlag12',
  152. render: (text) => {
  153. return (
  154. <Tooltip title={text}>
  155. {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
  156. </Tooltip>
  157. );
  158. }
  159. },
  160. {
  161. title: '卖方',
  162. dataIndex: 'activityFlag123',
  163. key: 'activityFlag123',
  164. render: (text) => {
  165. return (
  166. <Tooltip title={text}>
  167. {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
  168. </Tooltip>
  169. );
  170. }
  171. }
  172. ],
  173. dataSource: []
  174. };
  175. },
  176. componentWillMount() {
  177. this.loadData();
  178. },
  179. detailes(recard) {
  180. this.setState({
  181. loading: true
  182. });
  183. $.ajax({
  184. method: 'get',
  185. dataType: 'json',
  186. crossDomain: false,
  187. url: globalConfig.context + '/api/user/jtBusiness/project/detail',
  188. data: {
  189. id: recard.id
  190. },
  191. success: function(data) {
  192. let thisData = data.data;
  193. if (!thisData) {
  194. if (data.error && data.error.length) {
  195. message.warning(data.error[0].message);
  196. }
  197. thisData = {};
  198. }
  199. this.setState({
  200. id: thisData.id,
  201. data: thisData,
  202. createTime: thisData.createTime ? new Date(thisData.createTime).toLocaleString() : ''
  203. });
  204. }.bind(this)
  205. }).always(
  206. function() {
  207. this.setState({
  208. loading: false
  209. });
  210. }.bind(this)
  211. );
  212. },
  213. //项目列表整行点击
  214. tableRowClick(record, index) {
  215. this.state.RowData = record;
  216. this.setState({
  217. editvisible: true
  218. });
  219. this.detailes(record);
  220. },
  221. edithandleCancel(e) {
  222. this.setState({
  223. editvisible: false
  224. });
  225. },
  226. search() {
  227. this.loadData();
  228. },
  229. //搜索部分的清零
  230. reset() {
  231. this.state.numberSearch = '';
  232. this.state.typeSearch = undefined;
  233. this.state.companyNameSearch = '';
  234. this.state.entryNameSearch = '';
  235. this.state.releaseDate = [];
  236. this.state.searchMore=true;
  237. this.loadData();
  238. },
  239. searchSwitch() {
  240. this.setState({
  241. searchMore: !this.state.searchMore
  242. });
  243. },
  244. render() {
  245. const FormItem = Form.Item;
  246. const rowSelection = {
  247. selectedRowKeys: this.state.selectedRowKeys,
  248. onChange: (selectedRowKeys, selectedRows) => {
  249. this.setState({
  250. selectedRows: selectedRows.slice(-1),
  251. selectedRowKeys: selectedRowKeys.slice(-1)
  252. });
  253. }
  254. };
  255. const { RangePicker } = DatePicker;
  256. const theData = this.state.data || {};
  257. return (
  258. <div className="user-content">
  259. <div className="content-title">
  260. <span>我的订单</span>
  261. </div>
  262. <div className="user-search">
  263. <Input
  264. placeholder="订单编号"
  265. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  266. value={this.state.numberSearch}
  267. onChange={(e) => {
  268. this.setState({ numberSearch: e.target.value });
  269. }}
  270. />
  271. <Select
  272. placeholder="订单类型"
  273. style={{ width: '200px', marginRight: '10px' }}
  274. value={this.state.typeSearch}
  275. onChange={(e) => {
  276. this.setState({ typeSearch: e });
  277. }}
  278. >
  279. {orderType.map(function(item) {
  280. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  281. })}
  282. </Select>
  283. <Input
  284. placeholder="公司名称"
  285. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  286. value={this.state.companyNameSearch}
  287. onChange={(e) => {
  288. this.setState({ companyNameSearch: e.target.value });
  289. }}
  290. />
  291. <Input
  292. placeholder="项目名称"
  293. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  294. value={this.state.entryNameSearch}
  295. onChange={(e) => {
  296. this.setState({ entryNameSearch: e.target.value });
  297. }}
  298. />
  299. <Input
  300. style={{ width: 140, marginRight: 10 }}
  301. value={this.state.employerNameSearch}
  302. onChange={(e) => {
  303. this.setState({ employerNameSearch: e.target.value });
  304. }}
  305. placeholder="客户名称"
  306. />
  307. <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
  308. 搜索
  309. </Button>
  310. <Button onClick={this.reset} style={{ marginRight: '10px' }}>
  311. 重置
  312. </Button>
  313. <span>
  314. 更多搜索<Switch checked={!this.state.searchMore} onChange={this.searchSwitch} />
  315. </span>
  316. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  317. <span style={{ marginRight: 10 }}>发布时间 :</span>
  318. <RangePicker
  319. value={[
  320. this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  321. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null
  322. ]}
  323. onChange={(data, dataString) => {
  324. this.setState({ releaseDate: dataString });
  325. }}
  326. />
  327. </div>
  328. </div>
  329. <div className="patent-table">
  330. <Spin spinning={this.state.loading}>
  331. <Table
  332. columns={this.state.columns}
  333. dataSource={this.state.dataSource}
  334. rowSelection={rowSelection}
  335. pagination={this.state.pagination}
  336. onRowClick={this.tableRowClick}
  337. />
  338. </Spin>
  339. </div>
  340. <div className="patent-desc">
  341. <Modal
  342. className="customeDetails"
  343. title="订单详情"
  344. width="1000px"
  345. visible={this.state.editvisible}
  346. onOk={this.edithandleCancel}
  347. onCancel={this.edithandleCancel}
  348. footer=""
  349. >
  350. <Form layout="horizontal" onSubmit={this.edithandleSubmit} id="demand-form">
  351. <Spin spinning={this.state.loading}>
  352. <div className="clearfix">
  353. <FormItem
  354. className="half-item"
  355. labelCol={{ span: 8 }}
  356. wrapperCol={{ span: 12 }}
  357. label="订单编号"
  358. >
  359. <span>{theData.name}</span>
  360. </FormItem>
  361. <FormItem
  362. className="half-item"
  363. labelCol={{ span: 8 }}
  364. wrapperCol={{ span: 12 }}
  365. label="订单类型"
  366. >
  367. <span>{getOrderType(theData.type)}</span>
  368. </FormItem>
  369. </div>
  370. <div className="clearfix">
  371. <FormItem
  372. className="half-item"
  373. labelCol={{ span: 8 }}
  374. wrapperCol={{ span: 12 }}
  375. label="订单日期"
  376. >
  377. <span>{this.state.createTime}</span>
  378. </FormItem>
  379. <FormItem
  380. className="half-item"
  381. labelCol={{ span: 8 }}
  382. wrapperCol={{ span: 12 }}
  383. label="订单金额"
  384. >
  385. <span>{theData.isHot ? theData.isHot + '万元' : ''}</span>
  386. </FormItem>
  387. </div>
  388. <div className="clearfix">
  389. <FormItem
  390. className="half-item"
  391. labelCol={{ span: 8 }}
  392. wrapperCol={{ span: 12 }}
  393. label="项目名称"
  394. >
  395. <span>{theData.name}</span>
  396. </FormItem>
  397. </div>
  398. <div className="clearfix">
  399. <FormItem
  400. className="half-item"
  401. labelCol={{ span: 8 }}
  402. wrapperCol={{ span: 12 }}
  403. label="买方名称"
  404. >
  405. <span>{theData.memberPrice1}</span>
  406. </FormItem>
  407. <FormItem
  408. className="half-item"
  409. labelCol={{ span: 8 }}
  410. wrapperCol={{ span: 12 }}
  411. label="卖方名称"
  412. >
  413. <span>{theData.activityFlag1}</span>
  414. </FormItem>
  415. <FormItem
  416. className="half-item"
  417. labelCol={{ span: 8 }}
  418. wrapperCol={{ span: 12 }}
  419. label="买方联系人"
  420. >
  421. <span>{theData.activityPrice}</span>
  422. </FormItem>
  423. <FormItem
  424. className="half-item"
  425. labelCol={{ span: 8 }}
  426. wrapperCol={{ span: 12 }}
  427. label="卖方联系人"
  428. >
  429. <span>{theData.offset}</span>
  430. </FormItem>
  431. <FormItem
  432. className="half-item"
  433. labelCol={{ span: 8 }}
  434. wrapperCol={{ span: 12 }}
  435. label="买方联系方式"
  436. >
  437. <span>{theData.memberPrice}</span>
  438. </FormItem>
  439. <FormItem
  440. className="half-item"
  441. labelCol={{ span: 8 }}
  442. wrapperCol={{ span: 12 }}
  443. label="卖方联系方式"
  444. >
  445. <span>{theData.activityFlag}</span>
  446. </FormItem>
  447. </div>
  448. </Spin>
  449. </Form>
  450. </Modal>
  451. </div>
  452. </div>
  453. );
  454. }
  455. })
  456. );
  457. export default Order;