honorList.jsx 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. import React from 'react';
  2. import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
  3. import './techProduct.less';
  4. import { beforeUploadFile } from '../../tools.js';
  5. import moment from 'moment';
  6. import ajax from 'jquery/src/ajax/xhr.js';
  7. import $ from 'jquery/src/ajax';
  8. const HonorListDescFrom = Form.create()(React.createClass({
  9. getInitialState() {
  10. return {
  11. loading: false
  12. };
  13. },
  14. handleSubmit(e) {
  15. e.preventDefault();
  16. this.props.form.validateFields((err, values) => {
  17. if (!err) {
  18. this.props.spinState(true);
  19. $.ajax({
  20. method: "POST",
  21. dataType: "json",
  22. crossDomain: false,
  23. url: globalConfig.context + "/techservice/cognizance/disposeHonor",
  24. data: {
  25. id: this.props.data.id,
  26. name: values.name,
  27. issuingTimeFormattedDate: values.issuingTimeFormattedDate.format("YYYY-MM-DD"),
  28. enclosureUrl: this.state.enclosureUrl
  29. }
  30. }).done(function (data) {
  31. if (!data.error.length) {
  32. message.success('保存成功!');
  33. this.props.closeModal();
  34. this.props.spinState(false);
  35. this.props.form.resetFields();
  36. } else {
  37. message.warning(data.error[0].message);
  38. this.props.spinState(false);
  39. }
  40. }.bind(this));
  41. }
  42. });
  43. },
  44. render() {
  45. const FormItem = Form.Item;
  46. const { getFieldDecorator } = this.props.form;
  47. const theData = this.props.data;
  48. const formItemLayout = {
  49. labelCol: { span: 4 },
  50. wrapperCol: { span: 12 },
  51. };
  52. const _me = this;
  53. return (
  54. <Form onSubmit={this.handleSubmit} className="activityCost-form">
  55. <div className="clearfix">
  56. <FormItem
  57. {...formItemLayout}
  58. label="名称"
  59. >
  60. {getFieldDecorator('name', {
  61. rules: [{ required: true, message: '此项为必填项!' }],
  62. initialValue: theData.name
  63. })(
  64. <Input />
  65. )}
  66. </FormItem>
  67. <FormItem
  68. {...formItemLayout}
  69. label="获取时间"
  70. >
  71. {getFieldDecorator('issuingTimeFormattedDate', {
  72. rules: [{ type: 'object', required: true, message: '此项为必填项!' }],
  73. initialValue: theData.issuingTimeFormattedDate ? moment(theData.issuingTimeFormattedDate) : null
  74. })(
  75. <DatePicker />
  76. )}
  77. </FormItem>
  78. <FormItem
  79. {...formItemLayout}
  80. label="发证机构"
  81. >
  82. {getFieldDecorator('fazhengjigou', {
  83. rules: [{ required: true, message: '此项为必填项!' }],
  84. initialValue: theData.fazhengjigou
  85. })(
  86. <Input />
  87. )}
  88. </FormItem>
  89. </div>
  90. <div className="hrSituation-roster">
  91. <Upload
  92. name="ratepay"
  93. action={globalConfig.context + "/techservice/cognizance/upload"}
  94. data={{ 'sign': this.props.year + 'enclosure' }}
  95. beforeUpload={beforeUploadFile}
  96. onChange={(info) => {
  97. if (info.file.status !== 'uploading') {
  98. console.log(info.file, info.fileList);
  99. }
  100. if (info.file.status === 'done') {
  101. message.success(`${info.file.name} 文件上传成功!`);
  102. this.state.enclosureUrl = info.file.response.data;
  103. } else if (info.file.status === 'error') {
  104. message.error(`${info.file.name} 文件上传失败。`);
  105. }
  106. }}
  107. >
  108. <Button><Icon type="upload" /> 上传文件 </Button>
  109. </Upload>
  110. </div>
  111. <FormItem style={{ marginTop: '20px' }}>
  112. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  113. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  114. </FormItem>
  115. </Form >
  116. );
  117. },
  118. }));
  119. const HonorListDesc = React.createClass({
  120. getInitialState() {
  121. return {
  122. visible: false,
  123. loading: false
  124. };
  125. },
  126. componentWillReceiveProps(nextProps) {
  127. this.state.visible = nextProps.showDesc
  128. },
  129. showModal() {
  130. this.setState({
  131. visible: true,
  132. });
  133. },
  134. handleOk() {
  135. this.setState({
  136. visible: false,
  137. });
  138. this.props.closeDesc(false);
  139. },
  140. handleCancel(e) {
  141. this.setState({
  142. visible: false,
  143. });
  144. this.props.closeDesc(false);
  145. },
  146. spinChange(e) {
  147. this.setState({
  148. loading: e
  149. });
  150. },
  151. render() {
  152. return (
  153. <div className="patent-addNew">
  154. <Spin spinning={this.state.loading} className='spin-box'>
  155. <Modal title="企业荣誉及其他证明材料" visible={this.state.visible}
  156. onOk={this.handleOk} onCancel={this.handleCancel}
  157. width='800px'
  158. footer=''
  159. >
  160. <HonorListDescFrom data={this.props.data}
  161. spinState={this.spinChange} closeModal={this.handleCancel} />
  162. </Modal>
  163. </Spin>
  164. </div>
  165. );
  166. },
  167. });
  168. const HonorList = React.createClass({
  169. loadData(pageNo) {
  170. this.state.data = [];
  171. this.setState({
  172. loading: true
  173. });
  174. $.ajax({
  175. method: "get",
  176. dataType: "json",
  177. crossDomain: false,
  178. url: globalConfig.context + "/techservice/cognizance/honorList",
  179. data: {
  180. pageNo: pageNo || 1,
  181. pageSize: this.state.pagination.pageSize
  182. }
  183. }).done((data) => {
  184. if (data.error.length || !data.data || !data.data.list) {
  185. message.warning(data.error[0].message);
  186. return;
  187. };
  188. for (let i = 0; i < data.data.list.length; i++) {
  189. let thisdata = data.data.list[i];
  190. this.state.data.push({
  191. key: i,
  192. id: thisdata.id,
  193. uid: thisdata.uid,
  194. name: thisdata.name,
  195. issuingTime: thisdata.issuingTime,
  196. enclosureUrl: thisdata.enclosureUrl,
  197. issuingTimeFormattedDate: thisdata.issuingTimeFormattedDate,
  198. fazhengjigou: thisdata.fazhengjigou
  199. });
  200. };
  201. this.state.pagination.current = data.data.pageNo;
  202. this.state.pagination.total = data.data.totalCount;
  203. this.setState({
  204. dataSource: this.state.data,
  205. pagination: this.state.pagination
  206. });
  207. }).always(function () {
  208. this.setState({
  209. loading: false
  210. });
  211. }.bind(this));
  212. },
  213. getInitialState() {
  214. return {
  215. selectedRowKeys: [],
  216. selectedRows: [],
  217. loading: false,
  218. pagination: {
  219. defaultCurrent: 1,
  220. defaultPageSize: 10,
  221. showQuickJumper: true,
  222. pageSize: 10,
  223. onChange: function (page) {
  224. this.loadData(page);
  225. }.bind(this),
  226. showTotal: function (total) {
  227. return '共' + total + '条数据';
  228. }
  229. },
  230. columns: [
  231. {
  232. title: '名称',
  233. dataIndex: 'name',
  234. key: 'name'
  235. }, {
  236. title: '获取时间',
  237. dataIndex: 'issuingTimeFormattedDate',
  238. key: 'issuingTimeFormattedDate'
  239. }, {
  240. title: '发证机构',
  241. dataIndex: 'fazhengjigou',
  242. key: 'fazhengjigou'
  243. }, {
  244. title: '相关附件',
  245. dataIndex: 'enclosureUrl',
  246. key: 'enclosureUrl',
  247. render: (text) => {
  248. <a href="" onClick={() => {
  249. window.open(globalConfig.context + "/techservice/patent/downloadFile?path=" + text + "&sign=" + "type")
  250. }}></a>
  251. }
  252. }
  253. ],
  254. dataSource: []
  255. };
  256. },
  257. componentWillMount() {
  258. this.loadData();
  259. },
  260. tableRowClick(record, index) {
  261. this.state.RowData = record;
  262. this.setState({
  263. showDesc: true
  264. });
  265. },
  266. delectRow() {
  267. let deletedIds = [];
  268. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  269. let rowItem = this.state.selectedRows[idx];
  270. if (rowItem.id) {
  271. deletedIds.push(rowItem.id)
  272. }
  273. }
  274. this.setState({
  275. selectedRowKeys: [],
  276. loading: deletedIds.length > 0
  277. });
  278. $.ajax({
  279. method: "POST",
  280. dataType: "json",
  281. crossDomain: false,
  282. url: globalConfig.context + "/techservice/cognizance/deleteHonor",
  283. data: {
  284. ids: deletedIds
  285. }
  286. }).done(function (data) {
  287. if (!data.error.length) {
  288. message.success('保存成功!');
  289. this.setState({
  290. loading: false,
  291. });
  292. } else {
  293. message.warning(data.error[0].message);
  294. };
  295. this.loadData();
  296. }.bind(this));
  297. },
  298. closeDesc(e) {
  299. this.state.showDesc = e;
  300. this.loadData();
  301. },
  302. search() {
  303. this.loadData();
  304. },
  305. reset() {
  306. this.loadData();
  307. },
  308. render() {
  309. const rowSelection = {
  310. selectedRowKeys: this.state.selectedRowKeys,
  311. onChange: (selectedRowKeys, selectedRows) => {
  312. this.setState({
  313. selectedRows: selectedRows,
  314. selectedRowKeys: selectedRowKeys
  315. });
  316. }
  317. };
  318. const hasSelected = this.state.selectedRowKeys.length > 0;
  319. return (
  320. <div className="user-content" >
  321. <div className="content-title">
  322. <span>企业荣誉及其他证明材料</span>
  323. </div>
  324. <div className="user-search">
  325. <p>
  326. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  327. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  328. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  329. disabled={!hasSelected}
  330. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  331. </p>
  332. </div>
  333. <div className="patent-table">
  334. <Spin spinning={this.state.loading}>
  335. <Table columns={this.state.columns}
  336. dataSource={this.state.dataSource}
  337. pagination={this.state.pagination}
  338. rowSelection={rowSelection}
  339. onRowClick={this.tableRowClick} />
  340. </Spin>
  341. </div>
  342. <HonorListDesc data={this.state.RowData}
  343. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  344. </div >
  345. );
  346. }
  347. });
  348. export default HonorList;