patentPayment.jsx 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147
  1. import React from 'react';
  2. import { Radio, Icon, Button, AutoComplete,Cascader,Input, Select, Spin, Popconfirm, Table, Switch, message, DatePicker, Upload, Form ,Modal,Tabs} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import TechAchievementDesc from '@/manageCenter/achievement/crmAchievement.jsx';
  7. import { citySelect, provinceList ,areaSelect} from '@/NewDicProvinceList';
  8. import { socialAttribute, industry, auditStatusL, lvl, currentMember ,slcRedit,dataGrade,cityArr,patentTypeList} from '@/dataDic.js';
  9. import {
  10. getSocialAttribute,
  11. beforeUploadFile,
  12. splitUrl,
  13. getSlcRedit,
  14. getDataGrade,
  15. getAchievementCategory,
  16. getTechAuditStatus,
  17. getboutique,
  18. getPatentType,
  19. getcityArr,
  20. getPatentTypeva,
  21. ShowModal
  22. } from "@/tools.js";
  23. import './customer.less';
  24. import ShowModalDiv from "@/showModal.jsx";
  25. import ImgList from "../../../../common/imgList";
  26. import {ChooseList} from "../../../order/orderNew/chooseList";
  27. const Option = AutoComplete.Option;
  28. const { TabPane } = Tabs;
  29. //图片组件
  30. const PicturesWall = React.createClass({
  31. getInitialState() {
  32. return {
  33. previewVisible: false,
  34. previewImage: '',
  35. fileList: this.props.pictureUrl,
  36. }
  37. },
  38. getDefaultProps(){
  39. return{
  40. changeClick:this.modifyChange
  41. }
  42. },
  43. handleCancel() {
  44. this.setState({ previewVisible: false })
  45. },
  46. handlePreview(file) {
  47. this.setState({
  48. previewImage: file.url || file.thumbUrl,
  49. previewVisible: true,
  50. });
  51. },
  52. handleChange(info) {
  53. let fileList = info.fileList;
  54. this.setState({ fileList });
  55. this.props.fileList(fileList);
  56. },
  57. componentWillReceiveProps(nextProps) {
  58. this.state.fileList = nextProps.pictureUrl;
  59. },
  60. render() {
  61. const { previewVisible, previewImage, fileList } = this.state;
  62. const uploadButton = (
  63. <div>
  64. <Icon type="plus" />
  65. <div className="ant-upload-text">点击上传</div>
  66. </div>
  67. );
  68. return (
  69. <div style={{display:"inline-block"}}>
  70. <ImgList
  71. domId={this.props.domId}
  72. uploadConfig={{
  73. action:globalConfig.context + "/api/admin/patentNew/uploadFile",
  74. data:{ 'sign': '' },
  75. multiple:true,
  76. listType:"picture-card",
  77. beforeUpload:(infor)=>{beforeUploadFile(infor)}
  78. }}
  79. onChange={(infor)=>{
  80. this.handleChange(infor)
  81. }}
  82. fileList={fileList}
  83. />
  84. </div>
  85. );
  86. }
  87. });
  88. const PatentPayment = Form.create()(React.createClass({
  89. departmentList() {
  90. this.setState({
  91. loading: true
  92. });
  93. $.ajax({
  94. method: "get",
  95. dataType: "json",
  96. crossDomain: false,
  97. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  98. data: {},
  99. success: function(data) {
  100. let thedata = data.data;
  101. let theArr=[];
  102. if(!thedata) {
  103. if(data.error && data.error.length) {
  104. message.warning(data.error[0].message);
  105. };
  106. }else{
  107. thedata.map(function(item,index){
  108. theArr.push({
  109. key:index,
  110. name:item.name,
  111. id:item.id,
  112. })
  113. })
  114. }
  115. this.setState({
  116. departmentArr:theArr,
  117. })
  118. }.bind(this),
  119. }).always(function() {
  120. this.setState({
  121. loading: false
  122. });
  123. }.bind(this));
  124. },
  125. loadData(pageNo){
  126. this.setState({
  127. loading: true
  128. }),
  129. $.ajax({
  130. method: "get",
  131. dataType: "json",
  132. crossDomain: false,
  133. url: globalConfig.context + '/api/admin/patentNew/selectPatentNew',
  134. data: {
  135. pageNo: pageNo || 1,
  136. pageSize: this.state.pagination.pageSize,
  137. status:this.state.statusSearch,
  138. name:this.state.nameSearch,
  139. aname:this.state.anameSearch,
  140. patentNo:this.state.patentNoSearch,
  141. departmentId:this.state.departmentSearch,
  142. startDate:this.state.timesArr[0],
  143. endDate:this.state.timesArr[1],
  144. type:this.state.typeSearch,
  145. },
  146. success:function (data) {
  147. ShowModal(this);
  148. let theArr = [];
  149. if(!data.data) {
  150. if(data.error && data.error.length) {
  151. message.warning(data.error[0].message);
  152. };
  153. } else {
  154. for(let i = 0; i < data.data.list.length; i++) {
  155. let thisdata = data.data.list[i];
  156. theArr.push({
  157. id:thisdata.id,
  158. province:thisdata.province,
  159. status:thisdata.status,
  160. patentNo:thisdata.patentNo,
  161. name:thisdata.name,
  162. type:thisdata.type,
  163. applyDates:thisdata.applyDates,
  164. authorizationDates:thisdata.authorizationDates,
  165. patentAmount:thisdata.patentAmount,
  166. applicant:thisdata.applicant,
  167. contactMobile:thisdata.contactMobile,
  168. email:thisdata.email,
  169. certificateUrl:thisdata.certificateUrl,
  170. aname:thisdata.aname,
  171. depName:thisdata.depName,
  172. });
  173. };
  174. this.state.pagination.current = data.data.pageNo;
  175. this.state.pagination.total = data.data.totalCount;
  176. };
  177. if(!data.data.list.length) {
  178. this.state.pagination.current = 0
  179. this.state.pagination.total = 0
  180. }
  181. this.setState({
  182. pageNo: pageNo,
  183. dataSource: theArr,
  184. pagination: this.state.pagination,
  185. });
  186. }.bind(this)
  187. }).always(function() {
  188. this.setState({
  189. loading: false
  190. });
  191. }.bind(this));
  192. },
  193. getInitialState(){
  194. return {
  195. loading:false,
  196. visible:false,
  197. orgCodeUrl:[],
  198. fileList:[],
  199. departmentArr:[],
  200. timesArr:[],
  201. pagination: {
  202. defaultCurrent: 1,
  203. defaultPageSize: 10,
  204. showQuickJumper: true,
  205. pageSize: 10,
  206. onChange: function(page) {
  207. this.loadData(page);
  208. }.bind(this),
  209. showTotal: function(total) {
  210. return '共' + total + '条数据';
  211. }
  212. },
  213. dataSource:[],
  214. columns:[{
  215. title: '专利号',
  216. dataIndex: 'patentNo',
  217. key: 'patentNo'
  218. },{
  219. title: '专利名称',
  220. dataIndex: 'name',
  221. key: 'name'
  222. },{
  223. title: '专利类型',
  224. dataIndex: 'type',
  225. key: 'type',
  226. render:text=>{
  227. return getPatentType(text)
  228. }
  229. },{
  230. title: '申请日期',
  231. dataIndex: 'applyDates',
  232. key: 'applyDates'
  233. },{
  234. title: '授权日期',
  235. dataIndex: 'authorizationDates',
  236. key: 'authorizationDates'
  237. },{
  238. title: '费用',
  239. dataIndex: 'patentAmount',
  240. key: 'patentAmount'
  241. },{
  242. title: '授权公司',
  243. dataIndex: 'applicant',
  244. key: 'applicant'
  245. },{
  246. title: '录入人',
  247. dataIndex: 'aname',
  248. key: 'aname'
  249. },{
  250. title: '录入公司',
  251. dataIndex: 'depName',
  252. key: 'depName'
  253. },{
  254. title: '联系电话',
  255. dataIndex: 'contactMobile',
  256. key: 'contactMobile'
  257. },{
  258. title: '电子邮箱',
  259. dataIndex: 'email',
  260. key: 'email'
  261. },{
  262. title: '状态',
  263. dataIndex: 'status',
  264. key: 'status',
  265. render:text=>{
  266. if (text === 1) {
  267. return '已提醒'
  268. }else{
  269. return '待提醒'
  270. }
  271. }
  272. }]
  273. }
  274. },
  275. componentWillMount(){
  276. this.loadData()
  277. this.departmentList()
  278. let data=localStorage.getItem('newData');
  279. if(data!='{}'&&data){
  280. var newData = JSON.parse(data);
  281. this.tableRowClick(newData);
  282. };
  283. },
  284. new(){
  285. this.reset();
  286. this.setState({
  287. visible:true
  288. })
  289. },
  290. visitCancel(){
  291. this.state.fileList = [];
  292. this.setState({
  293. visible:false
  294. })
  295. },
  296. onSure(){
  297. let theorgCodeUrl = [];
  298. if (this.state.orgCodeUrl.length) {
  299. let picArr = [];
  300. this.state.orgCodeUrl.map(function (item) {
  301. if ( item.response && item.response.data && item.response.data.length ){
  302. picArr.push(item.response.data);
  303. }
  304. });
  305. theorgCodeUrl = picArr.join(",");
  306. };
  307. if (!this.state.patentNo) {
  308. message.warning('专利号不能为空')
  309. return
  310. }
  311. if (!this.state.patentName) {
  312. message.warning('专利名称不能为空')
  313. return
  314. }
  315. if(this.state.patentType === ''){
  316. message.warning('专利类型不能为空');
  317. return
  318. }
  319. let mobile = /^1[0-9]{10}$/ , phone = /^([0-9]{3,4}-)?[0-9]{7,8}$/ , phone1 = /^\d{3,4}-\d{3,4}-\d{3,4}$/;
  320. if(this.state.contactPhone && !(mobile.test(this.state.contactPhone) || phone.test(this.state.contactPhone) || phone1.test(this.state.contactPhone))){
  321. message.warning('电话格式不正确');
  322. return
  323. }
  324. let emailReg = new RegExp("^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$"); //正则表达式
  325. if(this.state.email === ''){
  326. message.warning('电子邮箱不能为空');
  327. return
  328. }
  329. if(!emailReg.test(this.state.email)){
  330. message.warning('电子邮箱格式不正确');
  331. return
  332. }
  333. this.setState({
  334. loading:true
  335. })
  336. $.ajax({
  337. method: "POST",
  338. dataType: "json",
  339. crossDomain: false,
  340. url: globalConfig.context +'/api/admin/patentNew/addPatentNew' ,
  341. data: {
  342. patentNo:this.state.patentNo,
  343. name:this.state.patentName,
  344. type:this.state.patentType,
  345. applyDates:this.state.appDate,
  346. authorizationDates:this.state.authDate,
  347. applicant:this.state.proposer,
  348. province:this.state.province,
  349. contactMobile:this.state.contactPhone,
  350. email:this.state.email,
  351. certificateUrl:theorgCodeUrl.length?theorgCodeUrl:'',
  352. }
  353. }).done(function(data) {
  354. this.setState({
  355. loading: false
  356. });
  357. if(!data.error.length) {
  358. message.success('保存成功!');
  359. this.onCal()
  360. this.loadData()
  361. } else {
  362. message.warning(data.error[0].message);
  363. }
  364. }.bind(this));
  365. },
  366. tableRowClick(record,index){
  367. this.state.RowData = record
  368. this.setState({
  369. avisible:true,
  370. patentNo:record.patentNo,
  371. patentName:record.name,
  372. province:record.province,
  373. status:record.status,
  374. patentType:record.type,
  375. appDate:record.applyDates,
  376. authDate:record.authorizationDates,
  377. proposer:record.applicant,
  378. contactPhone:record.contactMobile,
  379. email:record.email,
  380. certificateUrl:record.certificateUrl,
  381. orgCodeUrl: record.certificateUrl ? splitUrl(record.certificateUrl, ',', globalConfig.avatarHost + '/upload') : [],
  382. })
  383. localStorage.setItem('newData','{}');
  384. },
  385. xiugai(record){
  386. let theorgCodeUrl = [];
  387. if (this.state.orgCodeUrl.length) {
  388. let picArr = [];
  389. this.state.orgCodeUrl.map(function (item) {
  390. if ( item.response && item.response.data && item.response.data.length ){
  391. picArr.push(item.response.data);
  392. }
  393. });
  394. theorgCodeUrl = picArr.join(",");
  395. };
  396. console.log(typeof this.state.patentType)
  397. if (!this.state.patentNo) {
  398. message.warning('专利号不能为空')
  399. return
  400. }
  401. if (!this.state.patentName) {
  402. message.warning('专利名称不能为空')
  403. return
  404. }
  405. if(this.state.patentType === ''){
  406. message.warning('专利类型不能为空');
  407. return
  408. }
  409. let mobile = /^1[0-9]{10}$/ , phone = /^([0-9]{3,4}-)?[0-9]{7,8}$/ , phone1 = /^\d{3,4}-\d{3,4}-\d{3,4}$/;
  410. if(this.state.contactPhone && !(mobile.test(this.state.contactPhone) || phone.test(this.state.contactPhone) || phone1.test(this.state.contactPhone))){
  411. message.warning('电话格式不正确');
  412. return
  413. }
  414. let emailReg = new RegExp("^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$"); //正则表达式
  415. if(this.state.email === ''){
  416. message.warning('电子邮箱不能为空');
  417. return
  418. }
  419. if(!emailReg.test(this.state.email)){
  420. message.warning('电子邮箱格式不正确');
  421. return
  422. }
  423. this.setState({
  424. loading: true
  425. })
  426. $.ajax({
  427. method: "POST",
  428. dataType: "json",
  429. crossDomain: false,
  430. url: globalConfig.context +'/api/admin/patentNew/updatePatentNew' ,
  431. data: {
  432. id:record.id,
  433. patentNo:this.state.patentNo,
  434. name:this.state.patentName,
  435. type:this.state.patentType,
  436. applyDates:this.state.appDate,
  437. authorizationDates:this.state.authDate,
  438. applicant:this.state.proposer,
  439. province:this.state.province,
  440. contactMobile:this.state.contactPhone,
  441. email:this.state.email,
  442. status:this.state.status,
  443. certificateUrl:theorgCodeUrl.length?theorgCodeUrl:'',
  444. },
  445. success: function (data) {
  446. }.bind(this),
  447. }).done(function(data) {
  448. this.setState({
  449. loading: false
  450. });
  451. if(!data.error.length) {
  452. message.success('修改成功!');
  453. this.avisitCancel()
  454. this.loadData(this.state.pageNo)
  455. } else {
  456. message.warning(data.error[0].message);
  457. }
  458. }.bind(this));
  459. },
  460. baocunxiugai(){
  461. this.xiugai(this.state.RowData)
  462. },
  463. avisitCancel(){
  464. this.setState({
  465. avisible:false
  466. })
  467. },
  468. reset(){
  469. this.setState({
  470. patentNo:'',
  471. patentName:'',
  472. patentType:undefined,
  473. appDate:undefined,
  474. authDate:undefined,
  475. orgCodeUrl:[],
  476. proposer:'',
  477. province:undefined,
  478. contactPhone:'',
  479. email:''
  480. })
  481. },
  482. searchReset(){
  483. this.setState({
  484. statusSearch:undefined,
  485. nameSearch:undefined,
  486. anameSearch:undefined,
  487. patentNoSearch:undefined,
  488. departmentSearch:undefined,
  489. typeSearch:undefined,
  490. timesArr:[],
  491. },()=>{
  492. this.loadData()
  493. })
  494. },
  495. search(){
  496. this.loadData()
  497. },
  498. onCal(){
  499. this.setState({
  500. visible:false
  501. })
  502. },
  503. getOrgCodeUrl(e) {
  504. this.setState({ orgCodeUrl: e });
  505. },
  506. changeList(arr) {
  507. const newArr = [];
  508. this.state.columns.forEach(item => {
  509. arr.forEach(val => {
  510. if (val === item.title) {
  511. newArr.push(item);
  512. }
  513. });
  514. });
  515. this.setState({
  516. changeList: newArr
  517. });
  518. },
  519. render(){
  520. const theData = this.state.RowData || {};
  521. const FormItem = Form.Item;
  522. const formItemLayout = {
  523. labelCol: { span: 8 },
  524. wrapperCol: { span: 14 },
  525. };
  526. const { MonthPicker, RangePicker, WeekPicker } = DatePicker;
  527. return (
  528. <div className="user-content">
  529. <ShowModalDiv ShowModal={this.state.showModal} />
  530. <div className="content-title">
  531. <span style={{ fontSize: "16px" }}>客户专利提醒</span>
  532. <Tabs
  533. defaultActiveKey="1"
  534. className="test">
  535. <TabPane tab="搜索" key="1">
  536. <div className="user-search">
  537. <Select
  538. value={this.state.typeSearch}
  539. placeholder="请选择专利类型"
  540. onChange={e => {
  541. this.setState({
  542. typeSearch: e
  543. });
  544. }}
  545. style={{ width: "140px" }}
  546. >
  547. <Option value={1}>实用新型</Option>
  548. <Option value={2}>外观设计</Option>
  549. <Option value={3}>发明</Option>
  550. </Select>
  551. <Input
  552. value={this.state.nameSearch}
  553. placeholder="请输入授权公司"
  554. onChange={e => {
  555. this.setState({
  556. nameSearch: e.target.value
  557. });
  558. }}
  559. />
  560. <Select
  561. value={this.state.departmentSearch}
  562. placeholder="请选择录入公司"
  563. onChange={e => {
  564. this.setState({
  565. departmentSearch: e
  566. });
  567. }}
  568. style={{ width: "140px" }}
  569. >
  570. {this.state.departmentArr.map(e => {
  571. return <Option value={e.id}>{e.name}</Option>;
  572. })}
  573. </Select>
  574. <Input
  575. value={this.state.anameSearch}
  576. placeholder="请输入录入人"
  577. onChange={e => {
  578. this.setState({
  579. anameSearch: e.target.value
  580. });
  581. }}
  582. />
  583. <Select
  584. value={this.state.statusSearch}
  585. placeholder="请选择状态"
  586. onChange={e => {
  587. this.setState({
  588. statusSearch: e
  589. });
  590. }}
  591. style={{ width: "140px" }}
  592. >
  593. <Option value={0}>正常</Option>
  594. <Option value={1}>提醒中</Option>
  595. </Select>
  596. <Input
  597. value={this.state.patentNoSearch}
  598. placeholder="请输入专利号"
  599. onChange={e => {
  600. this.setState({
  601. patentNoSearch: e.target.value
  602. });
  603. }}
  604. />
  605. <Button
  606. type="primary"
  607. onClick={this.search}
  608. style={{ marginLeft: "10px" }}
  609. >
  610. 搜索
  611. </Button>
  612. <Button
  613. type="primary"
  614. onClick={this.searchReset}
  615. style={{ marginLeft: "10px" }}
  616. >
  617. 重置
  618. </Button>
  619. <span>
  620. 更多搜索
  621. <Switch
  622. onChange={mark => {
  623. this.setState({ mark: mark });
  624. }}
  625. />
  626. </span>
  627. {!this.props.isOnlyRead ? <Button
  628. type="primary"
  629. onClick={this.new}
  630. style={{ marginRight: "10px", float: "right" }}
  631. >
  632. 新建
  633. </Button> : <div/>}
  634. {/*<Button onClick={this.reset}>导出</Button>*/}
  635. </div>
  636. </TabPane>
  637. <TabPane tab="更改表格显示数据" key="2">
  638. <div style={{ marginLeft: 10 }}>
  639. <ChooseList
  640. columns={this.state.columns}
  641. changeFn={this.changeList}
  642. changeList={this.state.changeList}
  643. top={55}
  644. margin={11}
  645. />
  646. </div>
  647. </TabPane>
  648. </Tabs>
  649. {this.state.mark ? (
  650. <div className="user-search" style={{ paddingTop: "10px" }}>
  651. <span style={{ fontSize: "14px" }}>请选择申请时间:</span>
  652. <RangePicker
  653. value={[
  654. this.state.timesArr[0]
  655. ? moment(this.state.timesArr[0])
  656. : null,
  657. this.state.timesArr[1] ? moment(this.state.timesArr[1]) : null
  658. ]}
  659. onChange={(e, f) => {
  660. this.setState({
  661. timesArr: f
  662. });
  663. }}
  664. style={{ marginTop: "0", marginLeft: "10px" }}
  665. />
  666. </div>
  667. ) : (
  668. ""
  669. )}
  670. <div className="patent-table">
  671. <Spin spinning={this.state.loading}>
  672. <Table
  673. columns={
  674. this.state.changeList
  675. ? this.state.changeList
  676. : this.state.columns
  677. }
  678. dataSource={this.state.dataSource}
  679. pagination={this.state.pagination}
  680. onRowClick={this.tableRowClick}
  681. size="middle"
  682. bordered
  683. />
  684. </Spin>
  685. </div>
  686. {this.state.avisible ? <Modal
  687. maskClosable={false}
  688. visible={this.state.avisible}
  689. onCancel={this.avisitCancel}
  690. width="800px"
  691. title={!this.props.isOnlyRead ? "修改详情" : "查看详情"}
  692. footer=""
  693. className="admin-desc-content"
  694. >
  695. <div className="clearfix">
  696. <FormItem
  697. className="half-item"
  698. {...formItemLayout}
  699. label={
  700. <span>
  701. <strong style={{ color: "#f00" }}>*</strong>专利号
  702. </span>
  703. }
  704. >
  705. {!this.props.isOnlyRead ?
  706. <Input
  707. placeholder="请输入专利号"
  708. value={this.state.patentNo}
  709. onChange={e => {
  710. this.setState({ patentNo: e.target.value });
  711. }}
  712. style={{ width: "240px" }}
  713. /> : <span>{this.state.patentNo}</span>
  714. }
  715. </FormItem>
  716. <FormItem
  717. className="half-item"
  718. {...formItemLayout}
  719. label={
  720. <span>
  721. <strong style={{ color: "#f00" }}>*</strong>专利名称
  722. </span>
  723. }
  724. >
  725. {!this.props.isOnlyRead ?
  726. <Input
  727. placeholder="请输入专利名称"
  728. value={this.state.patentName}
  729. onChange={e => {
  730. this.setState({ patentName: e.target.value });
  731. }}
  732. style={{ width: "240px" }}
  733. /> : <div>{this.state.patentName}</div>
  734. }
  735. </FormItem>
  736. <FormItem
  737. className="half-item"
  738. {...formItemLayout}
  739. label="专利类型"
  740. >
  741. {!this.props.isOnlyRead ?
  742. <Select
  743. placeholder="请选择专利类型"
  744. style={{ width: "240px" }}
  745. value={getPatentType(this.state.patentType)}
  746. onChange={e => {
  747. this.setState({ patentType: e });
  748. }}
  749. >
  750. {patentTypeList.map(function(item) {
  751. return (
  752. <Select.Option key={item.value}>
  753. {item.key}
  754. </Select.Option>
  755. );
  756. })}
  757. </Select> : <div>{getPatentType(this.state.patentType)}</div>
  758. }
  759. </FormItem>
  760. <FormItem
  761. className="half-item"
  762. {...formItemLayout}
  763. label="申请日期"
  764. >
  765. {
  766. !this.props.isOnlyRead ?
  767. <DatePicker
  768. style={{ marginTop: "2px", width: "240px", height: "32px" }}
  769. showTime
  770. format="YYYY-MM-DD"
  771. onOk={e => {}}
  772. value={this.state.appDate ? moment(this.state.appDate) : null}
  773. onChange={(data, dataString) => {
  774. this.setState({ appDate: dataString });
  775. }}
  776. /> : <div>{this.state.appDate ? moment(this.state.appDate).format('YYYY-MM-DD') : ''}</div>
  777. }
  778. </FormItem>
  779. <FormItem
  780. className="half-item"
  781. {...formItemLayout}
  782. label="授权日期"
  783. >
  784. {
  785. !this.props.isOnlyRead ?
  786. <DatePicker
  787. style={{ marginTop: "2px", width: "240px", height: "32px" }}
  788. showTime
  789. format="YYYY-MM-DD"
  790. onOk={e => {}}
  791. value={
  792. this.state.authDate ? moment(this.state.authDate) : null
  793. }
  794. onChange={(data, dataString) => {
  795. this.setState({ authDate: dataString });
  796. }}
  797. /> : <div>{this.state.authDate ? moment(this.state.authDate).format('YYYY-MM-DD') : ''}</div> }
  798. </FormItem>
  799. <FormItem className="half-item" {...formItemLayout} label="费用">
  800. <span>{theData.patentAmount}</span>
  801. </FormItem>
  802. <div className="clearfix">
  803. <FormItem
  804. labelCol={{ span: 4 }}
  805. wrapperCol={{ span: 18 }}
  806. label="合同扫描件"
  807. >
  808. {!this.props.isOnlyRead ? <PicturesWall
  809. domId={'patentPayment1'}
  810. fileList={this.getOrgCodeUrl}
  811. pictureUrl={this.state.orgCodeUrl}
  812. /> :
  813. <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  814. <ImgList domId={'patentPayment3'} fileList={this.state.orgCodeUrl}/>
  815. </div>
  816. }
  817. {!this.props.isOnlyRead ? <p>图片建议:要清晰。</p> : null}
  818. </FormItem>
  819. </div>
  820. <FormItem
  821. className="half-item"
  822. {...formItemLayout}
  823. label="申请人"
  824. >
  825. {
  826. !this.props.isOnlyRead ?
  827. <Input
  828. placeholder="请输入申请人/公司"
  829. value={this.state.proposer}
  830. onChange={e => {
  831. this.setState({ proposer: e.target.value });
  832. }}
  833. style={{ width: "240px" }}
  834. /> : <div>{this.state.proposer}</div>
  835. }
  836. </FormItem>
  837. <FormItem className="half-item" {...formItemLayout} label="省份">
  838. {
  839. !this.props.isOnlyRead ?
  840. <Select
  841. placeholder="请选择省份"
  842. style={{ width: "240px" }}
  843. value={getcityArr(this.state.province)}
  844. onChange={e => {
  845. this.setState({ province: e });
  846. }}
  847. >
  848. {cityArr.map(function(item) {
  849. return (
  850. <Select.Option key={item.value}>{item.key}</Select.Option>
  851. );
  852. })}
  853. </Select> : <div>{getcityArr(this.state.province)}</div> }
  854. </FormItem>
  855. <FormItem
  856. className="half-item"
  857. {...formItemLayout}
  858. label="联系电话"
  859. >
  860. {
  861. !this.props.isOnlyRead ?
  862. <Input
  863. placeholder="请输入联系手机"
  864. value={this.state.contactPhone}
  865. onChange={e => {
  866. this.setState({ contactPhone: e.target.value });
  867. }}
  868. style={{ width: "240px" }}
  869. /> : <div>{this.state.contactPhone}</div>
  870. }
  871. </FormItem>
  872. <FormItem
  873. className="half-item"
  874. {...formItemLayout}
  875. label={
  876. <span>
  877. <strong style={{ color: "#f00" }}>*</strong>电子邮箱
  878. </span>
  879. }
  880. >
  881. {
  882. !this.props.isOnlyRead ?
  883. <Input
  884. placeholder="请输入电子邮箱"
  885. value={this.state.email}
  886. onChange={e => {
  887. this.setState({ email: e.target.value });
  888. }}
  889. style={{ width: "240px" }}
  890. /> : <div>{this.state.email}</div>
  891. }
  892. </FormItem>
  893. <FormItem
  894. className="half-item"
  895. {...formItemLayout}
  896. label={"状态"}
  897. >
  898. <span>{this.state.status ? "已提醒" : "待提醒"}</span>
  899. </FormItem>
  900. </div>
  901. {!this.props.isOnlyRead ? <div style={{ overflow: "hidden" }}>
  902. <Button style={{ float: "right" }} onClick={this.avisitCancel}>
  903. 取消
  904. </Button>
  905. <Button
  906. type="primary"
  907. style={{ float: "right", marginRight: "10px" }}
  908. loading={this.state.loading}
  909. onClick={this.baocunxiugai}
  910. >
  911. 保存
  912. </Button>
  913. </div> : <div/>}
  914. </Modal> : <div/>}
  915. {this.state.visible ?<Modal
  916. maskClosable={false}
  917. visible={this.state.visible}
  918. onOk={this.visitOk}
  919. onCancel={this.visitCancel}
  920. width="1000px"
  921. title="专利资料"
  922. footer=""
  923. className="admin-desc-content"
  924. >
  925. <div className="clearfix">
  926. <FormItem
  927. className="half-item"
  928. {...formItemLayout}
  929. label={
  930. <span>
  931. <strong style={{ color: "#f00" }}>*</strong>专利号
  932. </span>
  933. }
  934. >
  935. {
  936. <Input
  937. placeholder="请输入专利号"
  938. value={this.state.patentNo}
  939. onChange={e => {
  940. this.setState({ patentNo: e.target.value });
  941. }}
  942. style={{ width: "240px" }}
  943. />
  944. }
  945. </FormItem>
  946. <FormItem
  947. className="half-item"
  948. {...formItemLayout}
  949. label={
  950. <span>
  951. <strong style={{ color: "#f00" }}>*</strong>专利名称
  952. </span>
  953. }
  954. >
  955. {
  956. <Input
  957. placeholder="请输入专利名称"
  958. value={this.state.patentName}
  959. onChange={e => {
  960. this.setState({ patentName: e.target.value });
  961. }}
  962. style={{ width: "240px" }}
  963. />
  964. }
  965. </FormItem>
  966. <FormItem
  967. className="half-item"
  968. {...formItemLayout}
  969. label="申请日期"
  970. >
  971. <DatePicker
  972. style={{ marginTop: "2px", width: "240px", height: "32px" }}
  973. showTime
  974. format="YYYY-MM-DD"
  975. onOk={e => {}}
  976. value={this.state.appDate ? moment(this.state.appDate) : null}
  977. onChange={(data, dataString) => {
  978. this.setState({ appDate: dataString });
  979. }}
  980. />
  981. </FormItem>
  982. <FormItem
  983. className="half-item"
  984. {...formItemLayout}
  985. label={
  986. <span>
  987. <strong style={{ color: "#f00" }}>*</strong>专利类型
  988. </span>
  989. }
  990. >
  991. {
  992. <Select
  993. placeholder="请选择专利类型"
  994. style={{ width: "240px" }}
  995. value={this.state.patentType}
  996. onChange={e => {
  997. this.setState({ patentType: e });
  998. }}
  999. >
  1000. {patentTypeList.map(function(item) {
  1001. return (
  1002. <Select.Option key={item.value}>
  1003. {item.key}
  1004. </Select.Option>
  1005. );
  1006. })}
  1007. </Select>
  1008. }
  1009. </FormItem>
  1010. <FormItem
  1011. className="half-item"
  1012. {...formItemLayout}
  1013. label="授权日期"
  1014. >
  1015. <DatePicker
  1016. style={{ marginTop: "2px", width: "240px", height: "32px" }}
  1017. showTime
  1018. format="YYYY-MM-DD"
  1019. onOk={e => {}}
  1020. value={
  1021. this.state.authDate ? moment(this.state.authDate) : null
  1022. }
  1023. onChange={(data, dataString) => {
  1024. this.setState({ authDate: dataString });
  1025. }}
  1026. />
  1027. </FormItem>
  1028. <div className="clearfix">
  1029. <FormItem
  1030. labelCol={{ span: 4 }}
  1031. wrapperCol={{ span: 18 }}
  1032. label="合同扫描件"
  1033. >
  1034. <PicturesWall
  1035. domId={'patentPayment2'}
  1036. fileList={this.getOrgCodeUrl}
  1037. pictureUrl={this.state.orgCodeUrl}
  1038. />
  1039. <p>图片建议:要清晰。</p>
  1040. </FormItem>
  1041. </div>
  1042. <div>
  1043. <span style={{ marginLeft: "50px", fontSize: "20px" }}>
  1044. 申请人资料
  1045. </span>
  1046. </div>
  1047. <FormItem
  1048. className="half-item"
  1049. {...formItemLayout}
  1050. label="申请人/公司"
  1051. >
  1052. {
  1053. <Input
  1054. placeholder="请输入申请人/公司"
  1055. value={this.state.proposer}
  1056. onChange={e => {
  1057. this.setState({ proposer: e.target.value });
  1058. }}
  1059. style={{ width: "240px" }}
  1060. />
  1061. }
  1062. </FormItem>
  1063. <FormItem className="half-item" {...formItemLayout} label="省份">
  1064. <Select
  1065. placeholder="请选择省份"
  1066. style={{ width: "240px" }}
  1067. value={this.state.province}
  1068. onChange={e => {
  1069. this.setState({ province: e });
  1070. }}
  1071. >
  1072. {cityArr.map(function(item) {
  1073. return (
  1074. <Select.Option key={item.value}>{item.key}</Select.Option>
  1075. );
  1076. })}
  1077. </Select>
  1078. </FormItem>
  1079. <FormItem
  1080. className="half-item"
  1081. {...formItemLayout}
  1082. label="联系手机"
  1083. >
  1084. {
  1085. <Input
  1086. placeholder="请输入联系手机"
  1087. value={this.state.contactPhone}
  1088. onChange={e => {
  1089. this.setState({ contactPhone: e.target.value });
  1090. }}
  1091. style={{ width: "240px" }}
  1092. />
  1093. }
  1094. </FormItem>
  1095. <FormItem
  1096. className="half-item"
  1097. {...formItemLayout}
  1098. label={
  1099. <span>
  1100. <strong style={{ color: "#f00" }}>*</strong>电子邮箱
  1101. </span>
  1102. }
  1103. >
  1104. {
  1105. <Input
  1106. placeholder="请输入电子邮箱"
  1107. value={this.state.email}
  1108. onChange={e => {
  1109. this.setState({ email: e.target.value });
  1110. }}
  1111. style={{ width: "240px" }}
  1112. />
  1113. }
  1114. </FormItem>
  1115. </div>
  1116. <div style={{ overflow: "hidden" }}>
  1117. <Button style={{ float: "right" }} onClick={this.onCal}>
  1118. 取消
  1119. </Button>
  1120. <Button
  1121. type="primary"
  1122. style={{ float: "right", marginRight: "10px" }}
  1123. loading={this.state.loading}
  1124. onClick={this.onSure}
  1125. >
  1126. 保存
  1127. </Button>
  1128. </div>
  1129. </Modal> : <div/>}
  1130. </div>
  1131. </div>
  1132. );
  1133. }
  1134. }))
  1135. export default PatentPayment;