contract.jsx 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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. contractId: this.state.contractId,
  30. startDateFormattedDate: this.state.startDateFormattedDate,
  31. endDateFormattedDate: this.state.endDateFormattedDate,
  32. },
  33. success: function (data) {
  34. if (data.error.length || !data.data || !data.data.list) {
  35. message.warning(data.error[0].message);
  36. return;
  37. };
  38. for (let i = 0; i < data.data.list.length; i++) {
  39. let thisdata = data.data.list[i];
  40. this.state.data.push({
  41. key: i,
  42. completeDate: thisdata.completeDate,
  43. completeDateFormattedDate: thisdata.completeDateFormattedDate,
  44. contacts: thisdata.contacts,
  45. depict: thisdata.depict,
  46. founder: thisdata.founder,
  47. id: thisdata.id,
  48. province: thisdata.province,
  49. serialNumber: thisdata.serialNumber,
  50. signDate: thisdata.signDate,
  51. signDateFormattedDate: thisdata.signDateFormattedDate,
  52. status: thisdata.status,
  53. type: thisdata.type,
  54. uid: thisdata.uid,
  55. unitName: thisdata.unitName,
  56. });
  57. };
  58. this.state.pagination.defaultCurrent = data.data.pageNo;
  59. this.state.pagination.total = data.data.totalCount;
  60. this.setState({
  61. dataSource: this.state.data,
  62. pagination: this.state.pagination
  63. });
  64. }.bind(this),
  65. }).always(function () {
  66. this.setState({
  67. loading: false
  68. });
  69. }.bind(this));
  70. },
  71. getAuthorList() {
  72. this.setState({
  73. loading: true
  74. });
  75. $.ajax({
  76. method: "get",
  77. dataType: "json",
  78. crossDomain: false,
  79. url: globalConfig.context + "/api/admin/contract/principal",
  80. success: function (data) {
  81. if (!data.data) {
  82. if (data.error && data.error.length) {
  83. message.warning(data.error[0].message);
  84. };
  85. return;
  86. };
  87. let _me = this, theArr = [];
  88. for (var item in data.data) {
  89. theArr.push(
  90. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  91. )
  92. };
  93. this.setState({
  94. authorOption: theArr
  95. });
  96. }.bind(this),
  97. }).always(function () {
  98. this.setState({
  99. loading: false
  100. });
  101. }.bind(this));
  102. },
  103. getCompanyList() {
  104. this.setState({
  105. loading: true
  106. });
  107. $.ajax({
  108. method: "get",
  109. dataType: "json",
  110. crossDomain: false,
  111. url: globalConfig.context + "/api/admin/getUnitNames",
  112. success: function (data) {
  113. if (data.error.length || !data.data) {
  114. return;
  115. };
  116. let _me = this, theArr = [];
  117. for (var item in data.data) {
  118. theArr.push(
  119. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  120. )
  121. };
  122. this.setState({
  123. companyOption: theArr
  124. });
  125. }.bind(this),
  126. }).always(function () {
  127. this.setState({
  128. loading: false
  129. });
  130. }.bind(this));
  131. },
  132. getStateList() {
  133. this.setState({
  134. loading: true
  135. });
  136. $.ajax({
  137. method: "get",
  138. dataType: "json",
  139. crossDomain: false,
  140. url: globalConfig.context + "/api/admin/contract/status",
  141. success: function (data) {
  142. if (!data.data) {
  143. if (data.error && data.error.length) {
  144. message.warning(data.error[0].message);
  145. return;
  146. };
  147. };
  148. let _me = this, theArr = [];
  149. for (var item in data.data) {
  150. theArr.push(
  151. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  152. )
  153. };
  154. this.setState({
  155. statusOption: theArr
  156. });
  157. }.bind(this),
  158. }).always(function () {
  159. this.setState({
  160. loading: false
  161. });
  162. }.bind(this));
  163. },
  164. getInitialState() {
  165. return {
  166. visible: false,
  167. data: [],
  168. loading: false,
  169. showAdd: false,
  170. showDesc: false,
  171. searchMore: true,
  172. startDateFormattedDate: [],
  173. endDateFormattedDate: [],
  174. selectedRowKeys: [],
  175. selectedRows: [],
  176. pagination: {
  177. defaultCurrent: 1,
  178. defaultPageSize: 10,
  179. showQuickJumper: true,
  180. pageSize: 10,
  181. onChange: function (page) {
  182. this.loadData(page);
  183. }.bind(this),
  184. showTotal: function (total) {
  185. return '共' + total + '条数据';
  186. }
  187. },
  188. columns: [
  189. {
  190. title: '编号',
  191. dataIndex: 'serialNumber',
  192. key: 'serialNumber',
  193. }, {
  194. title: '省份',
  195. dataIndex: 'province',
  196. key: 'province',
  197. }, {
  198. title: '公司名称',
  199. dataIndex: 'unitName',
  200. key: 'unitName',
  201. }, {
  202. title: '签订时间',
  203. dataIndex: 'signDateFormattedDate',
  204. key: 'signDateFormattedDate',
  205. }, {
  206. title: '合同状态',
  207. dataIndex: 'status',
  208. key: 'status',
  209. render: (text) => { return getContractState(text) }
  210. }, {
  211. title: '合同类型',
  212. dataIndex: 'type',
  213. key: 'type',
  214. render: (text) => { return getContractType(text) }
  215. }, {
  216. title: '创建人',
  217. dataIndex: 'founder',
  218. key: 'founder'
  219. }, {
  220. title: '技术员',
  221. dataIndex: 'techPrincipal',
  222. key: 'techPrincipal',
  223. }, {
  224. title: '描述',
  225. dataIndex: 'describe',
  226. key: 'describe',
  227. }
  228. ],
  229. dataSource: []
  230. };
  231. },
  232. getContractList() {
  233. this.setState({
  234. loading: true
  235. });
  236. $.ajax({
  237. method: "get",
  238. dataType: "json",
  239. crossDomain: false,
  240. url: globalConfig.context + "/api/admin/contract/serialNumber",
  241. success: function (data) {
  242. if (!data.data) {
  243. if (data.error && data.error.length) {
  244. message.warning(data.error[0].message);
  245. };
  246. return;
  247. };
  248. let theArr = [];
  249. for (var item in data.data) {
  250. theArr.push(
  251. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  252. );
  253. };
  254. this.setState({
  255. contractListOption: theArr
  256. });
  257. }.bind(this),
  258. }).always(function () {
  259. this.setState({
  260. loading: false
  261. });
  262. }.bind(this));
  263. },
  264. componentWillMount() {
  265. let _me = this, pArr = [], tArr = [], sArr = [];
  266. provinceArr.map(function (item) {
  267. pArr.push(
  268. <Select.Option value={item} key={item}>{item}</Select.Option>
  269. )
  270. });
  271. contractTypeList.map(function (item) {
  272. tArr.push(
  273. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  274. )
  275. });
  276. contractStateList.map(function (item) {
  277. sArr.push(
  278. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  279. )
  280. });
  281. this.setState({
  282. provinceOption: pArr,
  283. typeOption: tArr,
  284. stateOption: sArr
  285. });
  286. this.loadData();
  287. this.getAuthorList();
  288. this.getCompanyList();
  289. this.getStateList();
  290. this.getContractList();
  291. // if (window.location.search) {
  292. // let theArr = getSearchUrl(window.location.search);
  293. // if (theArr.length > 1) {
  294. // let theObj = {};
  295. // theObj.id = theArr[0];
  296. // theObj.uid = theArr[1];
  297. // if (theObj.id != 'null' && theObj.uid != 'null') {
  298. // this.tableRowClick(theObj);
  299. // };
  300. // } else if (theArr.length == 1) {
  301. // this.state.unitName = theArr[0];
  302. // };
  303. // };
  304. },
  305. tableRowClick(record, index) {
  306. this.state.RowData = record;
  307. if (record.status === '0') {
  308. this.setState({
  309. showAdd: true
  310. });
  311. } else {
  312. this.setState({
  313. showDesc: true
  314. });
  315. };
  316. },
  317. delectRow() {
  318. let deletedIds = [];
  319. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  320. let rowItem = this.state.selectedRows[idx];
  321. if (rowItem.id) {
  322. deletedIds.push(rowItem.id)
  323. };
  324. };
  325. debugger
  326. this.setState({
  327. selectedRowKeys: [],
  328. loading: deletedIds.length > 0
  329. });
  330. $.ajax({
  331. method: "POST",
  332. dataType: "json",
  333. crossDomain: false,
  334. url: globalConfig.context + "/api/admin/copyright/delete",
  335. data: {
  336. id: deletedIds
  337. }
  338. }).done(function (data) {
  339. if (!data.error.length) {
  340. message.success('保存成功!');
  341. this.setState({
  342. loading: false,
  343. });
  344. } else {
  345. message.warning(data.error[0].message);
  346. };
  347. this.loadData();
  348. }.bind(this));
  349. },
  350. closeDesc(e, s) {
  351. this.state.showDesc = e;
  352. if (s) {
  353. this.loadData();
  354. };
  355. },
  356. addClick() {
  357. this.setState({
  358. showAdd: true
  359. });
  360. },
  361. closeAdd(e, s) {
  362. this.setState({
  363. showAdd: e
  364. });
  365. if (s) {
  366. this.loadData();
  367. };
  368. },
  369. searchSwitch() {
  370. this.setState({
  371. searchMore: !this.state.searchMore
  372. });
  373. },
  374. search() {
  375. this.loadData();
  376. },
  377. reset() {
  378. this.state.province = undefined;
  379. this.state.unitId = undefined;
  380. this.state.contractState = undefined;
  381. this.state.contractType = undefined;
  382. this.state.contractId = undefined;
  383. this.state.startDateFormattedDate = [];
  384. this.state.endDateFormattedDate = [];
  385. this.loadData();
  386. },
  387. render() {
  388. const rowSelection = {
  389. selectedRowKeys: this.state.selectedRowKeys,
  390. onChange: (selectedRowKeys, selectedRows) => {
  391. this.setState({
  392. selectedRows: selectedRows,
  393. selectedRowKeys: selectedRowKeys
  394. });
  395. }
  396. };
  397. const hasSelected = this.state.selectedRowKeys.length > 0;
  398. const { MonthPicker, RangePicker } = DatePicker;
  399. return (
  400. <div className="foster-box">
  401. <div className="foster-content">
  402. <div className="content-title">
  403. <span>合同申请管理</span>
  404. <ContractAdd
  405. companyOption={this.state.companyOption}
  406. authorOption={this.state.authorOption}
  407. typeOption={this.state.typeOption}
  408. data={this.state.RowData}
  409. onClick={this.addClick}
  410. showAdd={this.state.showAdd}
  411. closeAdd={this.closeAdd} />
  412. </div>
  413. <div className="foster-query">
  414. <Select placeholder="选择省份"
  415. style={{ width: 100 }}
  416. value={this.state.province}
  417. showSearch
  418. filterOption={companySearch}
  419. onChange={(e) => { this.setState({ province: e }) }}>
  420. {this.state.provinceOption}
  421. </Select>
  422. <Select placeholder="选择公司"
  423. style={{ width: 200 }}
  424. value={this.state.unitId}
  425. showSearch
  426. filterOption={companySearch}
  427. onChange={(e) => { this.setState({ unitId: e }) }}>
  428. {this.state.companyOption}
  429. </Select>
  430. <Select placeholder="选择合同编号"
  431. style={{ width: 120 }}
  432. value={this.state.contractId}
  433. showSearch
  434. filterOption={companySearch}
  435. onChange={(e) => { this.setState({ contractId: e }) }}>
  436. {this.state.contractListOption}
  437. </Select>
  438. <Select placeholder="选择一个合同类型"
  439. style={{ width: 200 }}
  440. value={this.state.contractType}
  441. showSearch
  442. filterOption={companySearch}
  443. onChange={(e) => { this.setState({ contractType: e }) }}>
  444. {this.state.typeOption}
  445. </Select>
  446. <Select style={{ width: 120 }}
  447. value={this.state.contractState}
  448. onChange={(e) => { this.setState({ contractState: e }) }}
  449. placeholder="选择一个状态">
  450. {this.state.stateOption}
  451. </Select>
  452. <span>更多搜索 <Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  453. <Button type="primary" onClick={this.search}>搜索</Button>
  454. <Button onClick={this.reset}>重置</Button>
  455. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  456. disabled={!hasSelected}
  457. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  458. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  459. <span>创建时间:</span>
  460. <RangePicker style={{ width: '240px' }}
  461. allowClear={false}
  462. value={[this.state.startDateFormattedDate[0] ? moment(this.state.startDateFormattedDate[0]) : null,
  463. this.state.startDateFormattedDate[1] ? moment(this.state.startDateFormattedDate[1]) : null]}
  464. onChange={(date, dateString) => { this.setState({ startDateFormattedDate: dateString }) }} />
  465. <span>结束时间:</span>
  466. <RangePicker style={{ width: '240px' }}
  467. allowClear={false}
  468. value={[this.state.endDateFormattedDate[0] ? moment(this.state.endDateFormattedDate[0]) : null,
  469. this.state.endDateFormattedDate[1] ? moment(this.state.endDateFormattedDate[1]) : null]}
  470. onChange={(date, dateString) => { this.setState({ endDateFormattedDate: dateString }) }} />
  471. </div>
  472. </div>
  473. <div className="foster-table">
  474. <Spin spinning={this.state.loading}>
  475. <Table columns={this.state.columns}
  476. dataSource={this.state.dataSource}
  477. rowSelection={rowSelection}
  478. pagination={this.state.pagination}
  479. onRowClick={this.tableRowClick} />
  480. </Spin>
  481. </div>
  482. <ContractDetail
  483. data={this.state.RowData}
  484. authorOption={this.state.authorOption}
  485. statusOption={this.state.statusOption}
  486. showDesc={this.state.showDesc}
  487. closeDesc={this.closeDesc} />
  488. </div >
  489. </div>
  490. );
  491. }
  492. });
  493. export default Contract;