contract.jsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. import React from 'react';
  2. import { Icon, Button, Input, Select, Spin, Table, DatePicker, message, Cascader, Switch, Modal } from 'antd';
  3. import { provinceArr, contractStateList, contractTypeList } from '../../../dataDic.js';
  4. import { getTime, companySearch, getContractState, getContractType, getInUrgentTime, getSearchUrl } from '../../../tools.js';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. import ContractAdd from './contractAdd.jsx';
  8. import ContractDetail from './contractDetail.jsx';
  9. import moment from 'moment';
  10. import './contract.less';
  11. const Contract = React.createClass({
  12. loadData(pageNo) {
  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/contract/list",
  22. data: {
  23. pageNo: pageNo || 1,
  24. pageSize: this.state.pagination.pageSize,
  25. province: this.state.province,
  26. uid: this.state.unitId,
  27. type: this.state.contractType,
  28. status: this.state.contractState,
  29. startDateFormattedDate: this.state.startDateFormattedDate,
  30. endDateFormattedDate: this.state.endDateFormattedDate,
  31. },
  32. success: function (data) {
  33. if (data.error.length || !data.data || !data.data.list) {
  34. message.warning(data.error[0].message);
  35. return;
  36. };
  37. for (let i = 0; i < data.data.list.length; i++) {
  38. let thisdata = data.data.list[i];
  39. this.state.data.push({
  40. key: i,
  41. completeDate: thisdata.completeDate,
  42. completeDateFormattedDate: thisdata.completeDateFormattedDate,
  43. contacts: thisdata.contacts,
  44. depict: thisdata.depict,
  45. founder: thisdata.founder,
  46. id: thisdata.id,
  47. province: thisdata.province,
  48. serialNumber: thisdata.serialNumber,
  49. signDate: thisdata.signDate,
  50. signDateFormattedDate: thisdata.signDateFormattedDate,
  51. status: thisdata.status,
  52. type: thisdata.type,
  53. uid: thisdata.uid,
  54. unitName: thisdata.unitName,
  55. });
  56. };
  57. this.state.pagination.defaultCurrent = data.data.pageNo;
  58. this.state.pagination.total = data.data.totalCount;
  59. this.setState({
  60. dataSource: this.state.data,
  61. pagination: this.state.pagination
  62. });
  63. }.bind(this),
  64. }).always(function () {
  65. this.setState({
  66. loading: false
  67. });
  68. }.bind(this));
  69. },
  70. getAuthorList() {
  71. this.setState({
  72. loading: true
  73. });
  74. $.ajax({
  75. method: "get",
  76. dataType: "json",
  77. crossDomain: false,
  78. url: globalConfig.context + "/api/admin/contract/principal",
  79. success: function (data) {
  80. if (!data.data) {
  81. if (data.error && data.error.length) {
  82. message.warning(data.error[0].message);
  83. };
  84. return;
  85. };
  86. let _me = this, theArr = [];
  87. for (var item in data.data) {
  88. theArr.push(
  89. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  90. )
  91. };
  92. this.setState({
  93. authorOption: theArr
  94. });
  95. }.bind(this),
  96. }).always(function () {
  97. this.setState({
  98. loading: false
  99. });
  100. }.bind(this));
  101. },
  102. getCompanyList() {
  103. this.setState({
  104. loading: true
  105. });
  106. $.ajax({
  107. method: "get",
  108. dataType: "json",
  109. crossDomain: false,
  110. url: globalConfig.context + "/api/admin/getUnitNames",
  111. success: function (data) {
  112. if (data.error.length || !data.data) {
  113. return;
  114. };
  115. let _me = this, theArr = [];
  116. for (var item in data.data) {
  117. theArr.push(
  118. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  119. )
  120. };
  121. this.setState({
  122. companyOption: theArr
  123. });
  124. }.bind(this),
  125. }).always(function () {
  126. this.setState({
  127. loading: false
  128. });
  129. }.bind(this));
  130. },
  131. getStateList() {
  132. this.setState({
  133. loading: true
  134. });
  135. $.ajax({
  136. method: "get",
  137. dataType: "json",
  138. crossDomain: false,
  139. url: globalConfig.context + "/api/admin/contract/status",
  140. success: function (data) {
  141. if (!data.data) {
  142. if (data.error && data.error.length) {
  143. message.warning(data.error[0].message);
  144. return;
  145. };
  146. };
  147. let _me = this, theArr = [];
  148. for (var item in data.data) {
  149. theArr.push(
  150. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  151. )
  152. };
  153. this.setState({
  154. statusOption: theArr
  155. });
  156. }.bind(this),
  157. }).always(function () {
  158. this.setState({
  159. loading: false
  160. });
  161. }.bind(this));
  162. },
  163. getInitialState() {
  164. return {
  165. visible: false,
  166. data: [],
  167. loading: false,
  168. showAdd: false,
  169. showDesc: false,
  170. searchMore: true,
  171. startDateFormattedDate: [],
  172. endDateFormattedDate: [],
  173. pagination: {
  174. defaultCurrent: 1,
  175. defaultPageSize: 10,
  176. showQuickJumper: true,
  177. pageSize: 10,
  178. onChange: function (page) {
  179. this.loadData(page);
  180. }.bind(this),
  181. showTotal: function (total) {
  182. return '共' + total + '条数据';
  183. }
  184. },
  185. columns: [
  186. {
  187. title: '编号',
  188. dataIndex: 'serialNumber',
  189. key: 'serialNumber',
  190. }, {
  191. title: '省份',
  192. dataIndex: 'province',
  193. key: 'province',
  194. }, {
  195. title: '公司名称',
  196. dataIndex: 'unitName',
  197. key: 'unitName',
  198. }, {
  199. title: '创建时间',
  200. dataIndex: 'signDateFormattedDate',
  201. key: 'signDateFormattedDate',
  202. }, {
  203. title: '合同状态',
  204. dataIndex: 'status',
  205. key: 'status',
  206. render: (text) => { return getContractState(text) }
  207. }, {
  208. title: '合同类型',
  209. dataIndex: 'type',
  210. key: 'type',
  211. render: (text) => { return getContractType(text) }
  212. }, {
  213. title: '创建人',
  214. dataIndex: 'founder',
  215. key: 'founder'
  216. }, {
  217. title: '技术员',
  218. dataIndex: 'techPrincipal',
  219. key: 'techPrincipal',
  220. }, {
  221. title: '描述',
  222. dataIndex: 'describe',
  223. key: 'describe',
  224. }
  225. ],
  226. dataSource: []
  227. };
  228. },
  229. componentWillMount() {
  230. let _me = this, pArr = [], tArr = [], sArr = [];
  231. provinceArr.map(function (item) {
  232. pArr.push(
  233. <Select.Option value={item} key={item}>{item}</Select.Option>
  234. )
  235. });
  236. contractTypeList.map(function (item) {
  237. tArr.push(
  238. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  239. )
  240. });
  241. contractStateList.map(function (item) {
  242. sArr.push(
  243. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  244. )
  245. });
  246. this.setState({
  247. provinceOption: pArr,
  248. typeOption: tArr,
  249. stateOption: sArr
  250. });
  251. this.loadData();
  252. this.getAuthorList();
  253. this.getCompanyList();
  254. this.getStateList();
  255. // if (window.location.search) {
  256. // let theArr = getSearchUrl(window.location.search);
  257. // if (theArr.length > 1) {
  258. // let theObj = {};
  259. // theObj.id = theArr[0];
  260. // theObj.uid = theArr[1];
  261. // if (theObj.id != 'null' && theObj.uid != 'null') {
  262. // this.tableRowClick(theObj);
  263. // };
  264. // } else if (theArr.length == 1) {
  265. // this.state.unitName = theArr[0];
  266. // };
  267. // };
  268. },
  269. tableRowClick(record, index) {
  270. this.state.RowData = record;
  271. if (record.status === '0') {
  272. this.setState({
  273. showAdd: true
  274. });
  275. } else {
  276. this.setState({
  277. showDesc: true
  278. });
  279. };
  280. },
  281. closeDesc(e, s) {
  282. this.state.showDesc = e;
  283. if (s) {
  284. this.loadData();
  285. };
  286. },
  287. addClick() {
  288. this.setState({
  289. showAdd: true
  290. });
  291. },
  292. closeAdd(e, s) {
  293. this.setState({
  294. showAdd: e
  295. });
  296. if (s) {
  297. this.loadData();
  298. };
  299. },
  300. searchSwitch() {
  301. this.setState({
  302. searchMore: !this.state.searchMore
  303. });
  304. },
  305. search() {
  306. this.loadData();
  307. },
  308. reset() {
  309. this.state.province = undefined;
  310. this.state.unitId = undefined;
  311. this.state.contractState = undefined;
  312. this.state.contractType = undefined;
  313. this.state.startDateFormattedDate = [];
  314. this.state.endDateFormattedDate = [];
  315. this.loadData();
  316. },
  317. render() {
  318. const { MonthPicker, RangePicker } = DatePicker;
  319. return (
  320. <div className="foster-box">
  321. <div className="foster-content">
  322. <div className="content-title">
  323. <span>合同申请管理</span>
  324. <ContractAdd
  325. companyOption={this.state.companyOption}
  326. authorOption={this.state.authorOption}
  327. typeOption={this.state.typeOption}
  328. data={this.state.RowData}
  329. onClick={this.addClick}
  330. showAdd={this.state.showAdd}
  331. closeAdd={this.closeAdd} />
  332. </div>
  333. <div className="foster-query">
  334. <Select placeholder="选择省份"
  335. style={{ width: 100 }}
  336. value={this.state.province}
  337. showSearch
  338. filterOption={companySearch}
  339. onChange={(e) => { this.setState({ province: e }) }}>
  340. {this.state.provinceOption}
  341. </Select>
  342. <Select placeholder="选择公司"
  343. style={{ width: 200 }}
  344. value={this.state.unitId}
  345. showSearch
  346. filterOption={companySearch}
  347. onChange={(e) => { this.setState({ unitId: e }) }}>
  348. {this.state.companyOption}
  349. </Select>
  350. <Select placeholder="选择一个合同类型"
  351. style={{ width: 200 }}
  352. value={this.state.contractType}
  353. showSearch
  354. filterOption={companySearch}
  355. onChange={(e) => { this.setState({ contractType: e }) }}>
  356. {this.state.typeOption}
  357. </Select>
  358. <Select style={{ width: 120 }}
  359. value={this.state.searchStatus}
  360. onChange={(e) => { this.setState({ contractState: e }) }}
  361. placeholder="选择一个状态">
  362. {this.state.stateOption}
  363. </Select>
  364. <span>更多搜索 <Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  365. <Button type="primary" onClick={this.search}>搜索</Button>
  366. <Button onClick={this.reset}>重置</Button>
  367. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  368. <span>创建时间:</span>
  369. <RangePicker style={{ width: '240px' }}
  370. allowClear={false}
  371. value={[this.state.startDateFormattedDate[0] ? moment(this.state.startDateFormattedDate[0]) : null,
  372. this.state.startDateFormattedDate[1] ? moment(this.state.startDateFormattedDate[1]) : null]}
  373. onChange={(date, dateString) => { this.setState({ startDateFormattedDate: dateString }) }} />
  374. <span>结束时间:</span>
  375. <RangePicker style={{ width: '240px' }}
  376. allowClear={false}
  377. value={[this.state.endDateFormattedDate[0] ? moment(this.state.endDateFormattedDate[0]) : null,
  378. this.state.endDateFormattedDate[1] ? moment(this.state.endDateFormattedDate[1]) : null]}
  379. onChange={(date, dateString) => { this.setState({ endDateFormattedDate: dateString }) }} />
  380. </div>
  381. </div>
  382. <div className="foster-table">
  383. <Spin spinning={this.state.loading}>
  384. <Table columns={this.state.columns}
  385. dataSource={this.state.dataSource}
  386. pagination={this.state.pagination}
  387. onRowClick={this.tableRowClick} />
  388. </Spin>
  389. </div>
  390. <ContractDetail
  391. data={this.state.RowData}
  392. authorOption={this.state.authorOption}
  393. statusOption={this.state.statusOption}
  394. showDesc={this.state.showDesc}
  395. closeDesc={this.closeDesc} />
  396. </div >
  397. </div>
  398. );
  399. }
  400. });
  401. export default Contract;