demandOrderS.jsx 9.0 KB

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