order.jsx 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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 + '/api/admin/jtOrder/list',
  25. data: {
  26. pageNo: pageNo || 1,
  27. pageSize: this.state.pagination.pageSize,
  28. orderNo: this.state.numberSearch,
  29. commodityName: this.state.entryNameSearch,
  30. sellerName: this.state.companyNameSearch,
  31. buyerName: this.state.employerNameSearch,
  32. startCreateDate: this.state.releaseDate[0],
  33. endCreateDate: 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. sellerId: thisdata.sellerId,
  47. buyerId:thisdata.buyerId,
  48. orderNo:thisdata.orderNo,
  49. commodityType:thisdata.commodityType,
  50. orderAmount:thisdata.orderAmount,
  51. commodityName:thisdata.commodityName,
  52. buyerName:thisdata.buyerName,
  53. buyerMobile:thisdata.buyerMobile,
  54. sellerName:thisdata.sellerName,
  55. sellerMobile:thisdata.sellerMobile,
  56. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : ''
  57. });
  58. }
  59. this.state.pagination.current = data.data.pageNo;
  60. this.state.pagination.total = data.data.totalCount;
  61. }
  62. this.setState({
  63. dataSource: theArr,
  64. pagination: this.state.pagination
  65. });
  66. }.bind(this)
  67. }).always(
  68. function() {
  69. this.setState({
  70. loading: false
  71. });
  72. }.bind(this)
  73. );
  74. },
  75. getInitialState() {
  76. return {
  77. searchMore: true,
  78. selectedRowKeys: [],
  79. selectedRows: [],
  80. loading: false,
  81. releaseDate: [],
  82. pagination: {
  83. defaultCurrent: 1,
  84. defaultPageSize: 10,
  85. showQuickJumper: true,
  86. pageSize: 10,
  87. onChange: function(page) {
  88. this.loadData(page);
  89. this.setState({
  90. selectedRowKeys: []
  91. });
  92. }.bind(this),
  93. showTotal: function(total) {
  94. return '共' + total + '条数据';
  95. }
  96. },
  97. columns: [
  98. {
  99. title: '订单编号',
  100. dataIndex: 'orderNo',
  101. key: 'orderNo'
  102. },
  103. {
  104. title: '订单类型',
  105. dataIndex: 'commodityType',
  106. key: 'commodityType',
  107. render: (text) => {
  108. return getOrderType(text);
  109. }
  110. },
  111. {
  112. title: '订单日期',
  113. dataIndex: 'createTime',
  114. key: 'createTime'
  115. },
  116. {
  117. title: '订单金额(万元)',
  118. dataIndex: 'orderAmount',
  119. key: 'orderAmount'
  120. },
  121. {
  122. title: '项目名称',
  123. dataIndex: 'commodityName',
  124. key: 'commodityName',
  125. render: (text) => {
  126. return (
  127. <Tooltip title={text}>
  128. {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
  129. </Tooltip>
  130. );
  131. }
  132. },
  133. {
  134. title: '消费者联系人',
  135. dataIndex: 'buyerName',
  136. key: 'buyerName',
  137. render:(text)=>{
  138. return text?text:'佚名'
  139. }
  140. },
  141. {
  142. title: '消费者联系方式',
  143. dataIndex: 'buyerMobile',
  144. key: 'buyerMobile',
  145. render:(text)=>{
  146. return text&&text.length>1?text:'暂无'
  147. }
  148. },
  149. {
  150. title: '服务商联系人',
  151. dataIndex: 'sellerName',
  152. key: 'sellerName',
  153. render:(text)=>{
  154. return text?text:'佚名'
  155. }
  156. },
  157. {
  158. title: '服务商联系方式',
  159. dataIndex: 'sellerMobile',
  160. key: 'sellerMobile',
  161. render:(text)=>{
  162. return text&&text.length>1?text:'暂无'
  163. }
  164. },
  165. ],
  166. dataSource: []
  167. };
  168. },
  169. componentWillMount() {
  170. this.loadData();
  171. },
  172. //项目列表整行点击
  173. tableRowClick(record, index) {
  174. this.setState({
  175. RowData:record,
  176. editvisible: true
  177. });
  178. },
  179. edithandleCancel(e) {
  180. this.setState({
  181. editvisible: false
  182. });
  183. },
  184. search() {
  185. this.loadData();
  186. },
  187. //搜索部分的清零
  188. reset() {
  189. this.state.numberSearch = '';
  190. this.state.typeSearch = undefined;
  191. this.state.companyNameSearch = '';
  192. this.state.entryNameSearch = '';
  193. this.state.releaseDate = [];
  194. this.state.searchMore=true;
  195. this.loadData();
  196. },
  197. searchSwitch() {
  198. this.setState({
  199. searchMore: !this.state.searchMore
  200. });
  201. },
  202. render() {
  203. const FormItem = Form.Item;
  204. const rowSelection = {
  205. selectedRowKeys: this.state.selectedRowKeys,
  206. onChange: (selectedRowKeys, selectedRows) => {
  207. this.setState({
  208. selectedRows: selectedRows.slice(-1),
  209. selectedRowKeys: selectedRowKeys.slice(-1)
  210. });
  211. }
  212. };
  213. const { RangePicker } = DatePicker;
  214. const theData = this.state.RowData || {};
  215. console.log(theData)
  216. return (
  217. <div className="user-content">
  218. <div className="content-title">
  219. <span>咨询单管理</span>
  220. </div>
  221. <div className="user-search">
  222. <Input
  223. placeholder="订单编号"
  224. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  225. value={this.state.numberSearch}
  226. onChange={(e) => {
  227. this.setState({ numberSearch: e.target.value });
  228. }}
  229. />
  230. <Input
  231. placeholder="卖方名称"
  232. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  233. value={this.state.companyNameSearch}
  234. onChange={(e) => {
  235. this.setState({ companyNameSearch: e.target.value });
  236. }}
  237. />
  238. <Input
  239. placeholder="项目名称"
  240. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  241. value={this.state.entryNameSearch}
  242. onChange={(e) => {
  243. this.setState({ entryNameSearch: e.target.value });
  244. }}
  245. />
  246. <Input
  247. style={{ width: 140, marginRight: 10 }}
  248. value={this.state.employerNameSearch}
  249. onChange={(e) => {
  250. this.setState({ employerNameSearch: e.target.value });
  251. }}
  252. placeholder="买方名称"
  253. />
  254. <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
  255. 搜索
  256. </Button>
  257. <Button onClick={this.reset} style={{ marginRight: '10px' }}>
  258. 重置
  259. </Button>
  260. <span>
  261. 更多搜索<Switch checked={!this.state.searchMore} onChange={this.searchSwitch} />
  262. </span>
  263. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  264. <span style={{ marginRight: 10 }}>发布时间 :</span>
  265. <RangePicker
  266. value={[
  267. this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  268. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null
  269. ]}
  270. onChange={(data, dataString) => {
  271. this.setState({ releaseDate: dataString });
  272. }}
  273. />
  274. </div>
  275. </div>
  276. <div className="patent-table">
  277. <Spin spinning={this.state.loading}>
  278. <Table
  279. columns={this.state.columns}
  280. dataSource={this.state.dataSource}
  281. rowSelection={rowSelection}
  282. pagination={this.state.pagination}
  283. onRowClick={this.tableRowClick}
  284. />
  285. </Spin>
  286. </div>
  287. <div className="patent-desc">
  288. <Modal
  289. className="customeDetails"
  290. title="订单详情"
  291. width="1000px"
  292. visible={this.state.editvisible}
  293. onOk={this.edithandleCancel}
  294. onCancel={this.edithandleCancel}
  295. footer=""
  296. >
  297. <Form layout="horizontal" onSubmit={this.edithandleSubmit} id="demand-form">
  298. <Spin spinning={this.state.loading}>
  299. <div className="clearfix">
  300. <FormItem
  301. className="half-item"
  302. labelCol={{ span: 8 }}
  303. wrapperCol={{ span: 12 }}
  304. label="订单编号"
  305. >
  306. <span>{theData.orderNo}</span>
  307. </FormItem>
  308. <FormItem
  309. className="half-item"
  310. labelCol={{ span: 8 }}
  311. wrapperCol={{ span: 12 }}
  312. label="订单类型"
  313. >
  314. <span>{getOrderType(theData.commodityType)}</span>
  315. </FormItem>
  316. </div>
  317. <div className="clearfix">
  318. <FormItem
  319. className="half-item"
  320. labelCol={{ span: 8 }}
  321. wrapperCol={{ span: 12 }}
  322. label="订单日期"
  323. >
  324. <span>{theData.createTime}</span>
  325. </FormItem>
  326. <FormItem
  327. className="half-item"
  328. labelCol={{ span: 8 }}
  329. wrapperCol={{ span: 12 }}
  330. label="订单金额"
  331. >
  332. <span>{theData.orderAmount||theData.orderAmount=='0' ? theData.orderAmount + '万元' : ''}</span>
  333. </FormItem>
  334. </div>
  335. <div className="clearfix">
  336. <FormItem
  337. className="half-item"
  338. labelCol={{ span: 8 }}
  339. wrapperCol={{ span: 12 }}
  340. label="项目名称"
  341. >
  342. <span>{theData.commodityName}</span>
  343. </FormItem>
  344. </div>
  345. <div className="clearfix">
  346. <FormItem
  347. className="half-item"
  348. labelCol={{ span: 8 }}
  349. wrapperCol={{ span: 12 }}
  350. label="买方联系人"
  351. >
  352. <span>{theData.buyerName}</span>
  353. </FormItem>
  354. <FormItem
  355. className="half-item"
  356. labelCol={{ span: 8 }}
  357. wrapperCol={{ span: 12 }}
  358. label="卖方联系人"
  359. >
  360. <span>{theData.sellerName}</span>
  361. </FormItem>
  362. <FormItem
  363. className="half-item"
  364. labelCol={{ span: 8 }}
  365. wrapperCol={{ span: 12 }}
  366. label="买方联系方式"
  367. >
  368. <span>{theData.buyerMobile}</span>
  369. </FormItem>
  370. <FormItem
  371. className="half-item"
  372. labelCol={{ span: 8 }}
  373. wrapperCol={{ span: 12 }}
  374. label="卖方联系方式"
  375. >
  376. <span>{theData.sellerMobile}</span>
  377. </FormItem>
  378. </div>
  379. </Spin>
  380. </Form>
  381. </Modal>
  382. </div>
  383. </div>
  384. );
  385. }
  386. })
  387. );
  388. export default Order;