unit.jsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. */
  5. import React from 'react';
  6. import {
  7. Radio,
  8. Icon,
  9. Button,
  10. Input,
  11. Select,
  12. Spin,
  13. message,
  14. DatePicker,
  15. Modal,
  16. Upload,
  17. Form,
  18. Row,
  19. Col,
  20. InputNumber
  21. } from 'antd';
  22. import $ from 'jquery/src/ajax';
  23. import './unit.less';
  24. import {
  25. socialAttribute,
  26. industry,
  27. } from '@/dataDic.js';
  28. import {
  29. splitUrl,
  30. } from '@/tools.js';
  31. const FormItem = Form.Item;
  32. import Crop from '@/crop/cropBlock';
  33. //图片组件
  34. const PicturesWall = React.createClass({
  35. getInitialState() {
  36. return {
  37. previewVisible: false,
  38. previewImage: '',
  39. fileList: []
  40. };
  41. },
  42. handleCancel() {
  43. this.setState({
  44. previewVisible: false
  45. });
  46. },
  47. handlePreview(file) {
  48. this.setState({
  49. previewImage: file.url || file.thumbUrl,
  50. previewVisible: true
  51. });
  52. },
  53. handleChange(info) {
  54. let fileList = info.fileList;
  55. this.setState({
  56. fileList
  57. });
  58. this.props.fileList(fileList);
  59. },
  60. componentWillReceiveProps(nextProps) {
  61. this.state.fileList = nextProps.pictureUrl;
  62. },
  63. render() {
  64. const { previewVisible, previewImage, fileList } = this.state;
  65. const uploadButton = (
  66. <div>
  67. <Icon type="plus" />
  68. <div className="ant-upload-text">点击上传</div>
  69. </div>
  70. );
  71. return (
  72. <div style={{ display: 'inline-block' }}>
  73. <Upload
  74. action={globalConfig.context + '/api/user/uploadPicture'}
  75. data={{ sign: 'user_picture' }}
  76. listType="picture-card"
  77. fileList={fileList}
  78. onPreview={this.handlePreview}
  79. onChange={this.handleChange}
  80. >
  81. {fileList.length >= 1 ? null : uploadButton}
  82. </Upload>
  83. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  84. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  85. </Modal>
  86. </div>
  87. );
  88. }
  89. });
  90. const PicturesWallMore = React.createClass({
  91. getInitialState() {
  92. return {
  93. previewVisible: false,
  94. previewImage: '',
  95. fileList: []
  96. };
  97. },
  98. handleCancel() {
  99. this.setState({
  100. previewVisible: false
  101. });
  102. },
  103. handlePreview(file) {
  104. this.setState({
  105. previewImage: file.url || file.thumbUrl,
  106. previewVisible: true
  107. });
  108. },
  109. handleChange(info) {
  110. let fileList = info.fileList;
  111. this.setState({
  112. fileList
  113. });
  114. this.props.fileList(fileList);
  115. },
  116. componentWillReceiveProps(nextProps) {
  117. this.state.fileList = nextProps.pictureUrl;
  118. },
  119. render() {
  120. const { previewVisible, previewImage, fileList } = this.state;
  121. const uploadButton = (
  122. <div>
  123. <Icon type="plus" />
  124. <div className="ant-upload-text">点击上传</div>
  125. </div>
  126. );
  127. return (
  128. <div style={{ display: 'inline-block' }}>
  129. <Upload
  130. action={globalConfig.context + '/api/user/uploadHonerPicture'}
  131. data={{ sign: 'honor_picture' }}
  132. listType="picture-card"
  133. fileList={fileList}
  134. onPreview={this.handlePreview}
  135. onChange={this.handleChange}
  136. >
  137. {fileList.length >= 8 ? null : uploadButton}
  138. </Upload>
  139. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  140. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  141. </Modal>
  142. </div>
  143. );
  144. }
  145. });
  146. const Unit = React.createClass({
  147. getInitialState() {
  148. return {
  149. loading: false,
  150. orgCodeUrl: [],
  151. companyLogoUrl: [],
  152. ProvinceCity:[],
  153. qualiUrl:[]
  154. };
  155. },
  156. loadInformation(record) {
  157. this.setState({
  158. loading:true
  159. })
  160. $.ajax({
  161. method: 'get',
  162. dataType: 'json',
  163. url: globalConfig.context + '/api/user/getOrganizationDetail',
  164. success: function(data) {
  165. let thisData = data.data;
  166. if (!thisData) {
  167. if (data.error && data.error.length) {
  168. message.warning(data.error[0].message);
  169. }
  170. thisData = {};
  171. }
  172. // thisData.companyLogoUrl='/user/33e04d30-d001-45c5-8e1e-33a1964d2498/1104216629777565_user_picture.jpg'
  173. // let ProvinceCityArr = [];
  174. // let ProvinceS = thisData.locationProvince; //getprovince
  175. // let citys = thisData.locationCity;
  176. // let Areas = thisData.locationArea;
  177. // ProvinceCityArr.push(ProvinceS, citys, Areas);
  178. this.setState({
  179. InformationId: thisData.id,
  180. InformationUid: thisData.uid,
  181. identifyName: thisData.identifyName,
  182. listed: thisData.listed,
  183. highTechZone: thisData.highTechZone,
  184. orgCodeUrl: thisData.orgCodeUrl
  185. ? splitUrl(thisData.orgCodeUrl, ',', globalConfig.avatarHost + '/upload')
  186. : [],
  187. // companyLogoUrl: thisData.companyLogoUrl
  188. // ? splitUrl(thisData.companyLogoUrl, ',', globalConfig.avatarHost + '/upload')
  189. // : [],
  190. companyLogoUrl:thisData.companyLogoUrl?thisData.companyLogoUrl.split(','):[],
  191. qualiUrl: thisData.honorPicture
  192. ? splitUrl(thisData.honorPicture, ',', globalConfig.avatarHost + '/upload')
  193. : [],
  194. dataInformation: thisData,
  195. //ProvinceCity: ProvinceCityArr[0] != null ? ProvinceCityArr : undefined,
  196. industry: String(thisData.industry) == 'null' ? undefined : String(thisData.industry),
  197. societyTag: thisData.societyTag || undefined,
  198. introduction: thisData.introduction,
  199. postalAddress: thisData.postalAddress,
  200. fixedTel: thisData.fixedTel,
  201. registeredCapital: thisData.registeredCapital,
  202. enterpriseScale: thisData.enterpriseScale,
  203. legalPerson: thisData.legalPerson,
  204. legalPersonIdCard: thisData.legalPersonIdCard,
  205. legalPersonTel: thisData.legalPersonTel,
  206. legalPersonEmail: thisData.legalPersonEmail,
  207. businessScope: thisData.businessScope,
  208. orgCode: thisData.orgCode,
  209. type:thisData.type,
  210. qq:thisData.qq,
  211. email:thisData.email,
  212. authentication:thisData.authentication
  213. });
  214. }.bind(this)
  215. }).always(
  216. function() {
  217. this.setState({
  218. loading: false
  219. });
  220. }.bind(this)
  221. );
  222. },
  223. //图片
  224. getOrgCodeUrl(e) {
  225. this.setState({
  226. orgCodeUrl: e
  227. });
  228. },
  229. getCompanyLogoUrl(e) {
  230. this.setState({
  231. companyLogoUrl: e
  232. });
  233. },
  234. getQualiUrl(e) {
  235. this.setState({
  236. qualiUrl: e
  237. });
  238. },
  239. //基本信息提交
  240. newSubmit(e) {
  241. this.setState({
  242. selectedRowKeys: []
  243. });
  244. let theorgCodeUrl = [];
  245. if (this.state.orgCodeUrl.length) {
  246. let picArr = [];
  247. this.state.orgCodeUrl.map(function(item) {
  248. if (item.response && item.response.data && item.response.data.length) {
  249. picArr.push(item.response.data);
  250. }
  251. });
  252. theorgCodeUrl = picArr.join(',');
  253. }
  254. //let thecompanyLogoUrl = [];
  255. // if (this.state.companyLogoUrl.length) {
  256. // let picArr = [];
  257. // this.state.companyLogoUrl.map(function(item) {
  258. // if (item.response && item.response.data && item.response.data.length) {
  259. // picArr.push(item.response.data);
  260. // }
  261. // });
  262. // thecompanyLogoUrl = picArr.join(',');
  263. // }
  264. if (this.state.businessScope&&this.state.businessScope.length>400) {
  265. message.warning('业务范围字数为1~400!');
  266. return false;
  267. }
  268. if (this.state.introduction&&this.state.introduction.length>400) {
  269. message.warning('企业简介字数为1~512!');
  270. return false;
  271. }
  272. let thequaliUrl = [];
  273. if (this.state.qualiUrl.length) {
  274. let picArr = [];
  275. this.state.qualiUrl.map(function(item) {
  276. if (item.response && item.response.data && item.response.data.length) {
  277. picArr.push(item.response.data);
  278. }
  279. });
  280. thequaliUrl = picArr.join(',');
  281. }
  282. this.setState({
  283. loading: true
  284. });
  285. $.ajax({
  286. method: 'post',
  287. dataType: 'json',
  288. url: globalConfig.context + '/api/user/updateOrganizationDetail',
  289. data: {
  290. id: this.state.InformationId,
  291. uid: this.state.InformationUid,
  292. societyTag: this.state.societyTag,
  293. identifyName: this.state.identifyName, //单位名称
  294. introduction: this.state.introduction,
  295. unitName: this.state.unitName,
  296. industry: this.state.industry,
  297. postalAddress: this.state.postalAddress,
  298. fixedTel: this.state.fixedTel,
  299. contactsFax: this.state.contactsFax,
  300. registeredCapital: this.state.registeredCapital ? this.state.registeredCapital : 0,
  301. enterpriseScale: this.state.enterpriseScale,
  302. legalPerson: this.state.legalPerson,
  303. legalPersonIdCard: this.state.legalPersonIdCard,
  304. legalPersonTel: this.state.legalPersonTel,
  305. legalPersonEmail: this.state.legalPersonEmail,
  306. highTechZone: this.state.highTechZone,
  307. listed: this.state.listed,
  308. contacts: this.state.contacts,
  309. orgCode: this.state.orgCode,
  310. businessScope: this.state.businessScope,
  311. introduction: this.state.introduction,
  312. // companyLogoUrl: thecompanyLogoUrl.length != 0 ? thecompanyLogoUrl : '',
  313. companyLogoUrl:this.state.companyLogoUrl.length>0?(this.state.companyLogoUrl).join(','):[],
  314. honorPicture: thequaliUrl.length != 0 ? thequaliUrl : '',
  315. orgCodeUrl: theorgCodeUrl.length != 0 ? theorgCodeUrl : '',
  316. auditStatus: this.state.auditStatus,
  317. authentication:this.state.authentication,
  318. type:this.state.type,
  319. qq:this.state.qq,
  320. email:this.state.email
  321. }
  322. }).done(
  323. function(data) {
  324. this.setState({
  325. loading: false
  326. });
  327. if (!data.error.length) {
  328. message.success('保存成功');
  329. this.loadInformation();
  330. } else {
  331. message.warning(data.error[0].message);
  332. }
  333. }.bind(this)
  334. );
  335. },
  336. subFun(){
  337. if(!this.state.identifyName){
  338. message.warning("请填写单位名称")
  339. return;
  340. }
  341. if (!this.state.industry) {
  342. message.warning('请选择行业!');
  343. return false;
  344. }
  345. if (!this.state.societyTag) {
  346. message.warning('请选择社会性质!');
  347. return false;
  348. }
  349. if (isNaN(this.state.registeredCapital)) {
  350. message.warning('注册资本只能输入数字!');
  351. return false;
  352. }
  353. if (!this.state.email) {
  354. message.warning('请填写企业邮箱!');
  355. return false;
  356. }
  357. if (!this.state.qq) {
  358. message.warning('请填写企业QQ!');
  359. return false;
  360. }
  361. if (this.state.companyLogoUrl&&(this.state.companyLogoUrl.length)<1) {
  362. message.warning('请上传企业LOGO.');
  363. return false;
  364. }
  365. if(!this.state.businessScope){
  366. message.warning('请填写业务范围!');
  367. return false;
  368. }
  369. if(!this.state.introduction){
  370. message.warning('请填写企业简介!');
  371. return false;
  372. }
  373. if (this.state.qualiUrl&&(this.state.qualiUrl.length)<1) {
  374. message.warning('请上传资质荣誉照片.');
  375. return false;
  376. }
  377. this.newSubmit()
  378. },
  379. handleOk(){
  380. this.newSubmit();
  381. this.setState({
  382. visible:false
  383. })
  384. },
  385. handleCancel(){
  386. this.setState({
  387. visible:false
  388. })
  389. },
  390. //logo图片获取
  391. getAllImg(imgArr){
  392. this.setState({
  393. companyLogoUrl:imgArr
  394. })
  395. },
  396. componentWillMount() {
  397. this.loadInformation();
  398. },
  399. componentWillReceiveProps(nextProps) {
  400. },
  401. render() {
  402. return (
  403. <div className="unit-wrap">
  404. <Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form" style={{width:'80%'}}>
  405. <Spin spinning={this.state.loading}>
  406. <Row style={{ marginBottom: 20 }}>
  407. <Col offset={2} span={4}>
  408. <h4 style={{fontSize:20}}>企业资料</h4>
  409. </Col>
  410. </Row>
  411. <div className="clearfix" style={{ paddingLeft: '60px' }}>
  412. <FormItem
  413. className="half-item"
  414. labelCol={{ span: 4 }}
  415. wrapperCol={{ span: 18 }}
  416. label={<span><span className="color-red"> * </span>企业名称</span>}
  417. >
  418. <Input
  419. maxLength={128}
  420. value={this.state.identifyName}
  421. onChange={(e) => {
  422. this.setState({ identifyName: e.target.value });
  423. }}
  424. placeholder="请输入企业名称"
  425. />
  426. </FormItem>
  427. <FormItem
  428. className="half-item"
  429. labelCol={{ span: 4 }}
  430. wrapperCol={{ span: 18 }}
  431. label="企业规模"
  432. >
  433. <InputNumber
  434. placeholder="企业规模"
  435. value={this.state.enterpriseScale}
  436. InputNumber min={0} maxLength={16}
  437. style={{width:120,marginRight:10}}
  438. onChange={(e) => {
  439. this.setState({ enterpriseScale: e });
  440. }}
  441. />
  442. <span>人</span>
  443. </FormItem>
  444. </div>
  445. <div className="clearfix" style={{ paddingLeft: '60px' }}>
  446. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label={<span><span className="color-red"> * </span>行业</span>}>
  447. <Select
  448. placeholder="选择行业"
  449. value={this.state.industry}
  450. onChange={(e) => {
  451. this.setState({ industry: e });
  452. }}
  453. >
  454. {industry.map(function(item) {
  455. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  456. })}
  457. </Select>
  458. </FormItem>
  459. <FormItem
  460. className="half-item"
  461. labelCol={{ span: 4 }}
  462. wrapperCol={{ span: 18 }}
  463. label={<span><span className="color-red"> * </span>社会属性</span>}
  464. >
  465. <Select
  466. placeholder="客户社会属性"
  467. value={this.state.societyTag}
  468. onChange={(e) => {
  469. this.setState({ societyTag: e });
  470. }}
  471. >
  472. {socialAttribute.map(function(item) {
  473. return <Select.Option key={item.value}>{item.key}</Select.Option>;
  474. })}
  475. </Select>
  476. </FormItem>
  477. <FormItem
  478. className="half-item"
  479. labelCol={{ span: 4 }}
  480. wrapperCol={{ span: 18 }}
  481. label="通信地址"
  482. >
  483. <Input
  484. maxLength={255}
  485. placeholder="客户通信地址"
  486. value={this.state.postalAddress}
  487. onChange={(e) => {
  488. this.setState({ postalAddress: e.target.value });
  489. }}
  490. />
  491. </FormItem>
  492. <FormItem
  493. className="half-item"
  494. labelCol={{ span: 4 }}
  495. wrapperCol={{ span: 18 }}
  496. label="固定电话"
  497. >
  498. <Input
  499. maxLength={16}
  500. placeholder="客户固定电话"
  501. value={this.state.fixedTel}
  502. onChange={(e) => {
  503. this.setState({ fixedTel: e.target.value });
  504. }}
  505. />
  506. </FormItem>
  507. <FormItem
  508. className="half-item"
  509. labelCol={{ span: 4 }}
  510. wrapperCol={{ span: 18 }}
  511. label="注册资本"
  512. >
  513. <Input
  514. placeholder="注册资本单位为万元"
  515. value={this.state.registeredCapital}
  516. maxLength={6}
  517. onChange={(e) => {
  518. this.setState({ registeredCapital: e.target.value });
  519. }}
  520. />
  521. </FormItem>
  522. <FormItem
  523. className="half-item"
  524. labelCol={{ span: 4 }}
  525. wrapperCol={{ span: 18 }}
  526. label="法人名称"
  527. >
  528. <Input
  529. maxLength={16}
  530. placeholder="法人名称"
  531. value={this.state.legalPerson}
  532. onChange={(e) => {
  533. this.setState({ legalPerson: e.target.value });
  534. }}
  535. />
  536. </FormItem>
  537. <FormItem
  538. className="half-item"
  539. labelCol={{ span: 4 }}
  540. wrapperCol={{ span: 18 }}
  541. label="法人身份证号码"
  542. >
  543. <Input
  544. maxLength={32}
  545. placeholder="法人身份证号码"
  546. value={this.state.legalPersonIdCard}
  547. onChange={(e) => {
  548. this.setState({ legalPersonIdCard: e.target.value });
  549. }}
  550. />
  551. </FormItem>
  552. <FormItem
  553. className="half-item"
  554. labelCol={{ span: 4 }}
  555. wrapperCol={{ span: 18 }}
  556. label="法人电话"
  557. >
  558. <Input
  559. maxLength={16}
  560. placeholder="法人电话"
  561. value={this.state.legalPersonTel}
  562. onChange={(e) => {
  563. this.setState({ legalPersonTel: e.target.value });
  564. }}
  565. />
  566. </FormItem>
  567. <FormItem
  568. className="half-item"
  569. labelCol={{ span: 4 }}
  570. wrapperCol={{ span: 18 }}
  571. label="法人电子邮箱"
  572. >
  573. <Input
  574. maxLength={128}
  575. placeholder="法人电子邮箱"
  576. value={this.state.legalPersonEmail}
  577. onChange={(e) => {
  578. this.setState({ legalPersonEmail: e.target.value });
  579. }}
  580. />
  581. </FormItem>
  582. <FormItem
  583. className="half-item"
  584. labelCol={{ span: 4 }}
  585. wrapperCol={{ span: 18 }}
  586. label="机构代码"
  587. >
  588. <Input
  589. maxLength={32}
  590. placeholder="社会同意机构代码"
  591. value={this.state.orgCode}
  592. onChange={(e) => {
  593. this.setState({ orgCode: e.target.value });
  594. }}
  595. />
  596. </FormItem>
  597. <FormItem
  598. className="half-item"
  599. labelCol={{ span: 4 }}
  600. wrapperCol={{ span: 18 }}
  601. label={<span><span className="color-red"> * </span>企业邮箱</span>}
  602. >
  603. <Input
  604. maxLength={128}
  605. placeholder="请填写企业邮箱"
  606. value={this.state.email}
  607. onChange={(e) => {
  608. this.setState({ email: e.target.value });
  609. }}
  610. />
  611. </FormItem>
  612. <FormItem
  613. className="half-item"
  614. labelCol={{ span: 4 }}
  615. wrapperCol={{ span: 18 }}
  616. label={<span><span className="color-red"> * </span>企业QQ</span>}
  617. >
  618. <Input
  619. maxLength={16}
  620. placeholder="填写企业QQ"
  621. value={this.state.qq}
  622. onChange={(e) => {
  623. this.setState({ qq: e.target.value });
  624. }}
  625. />
  626. </FormItem>
  627. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="高新">
  628. <Radio.Group
  629. value={this.state.highTechZone}
  630. onChange={(e) => {
  631. this.setState({ highTechZone: e.target.value });
  632. }}
  633. >
  634. <Radio value={0}>是</Radio>
  635. <Radio value={1}>否 </Radio>
  636. </Radio.Group>
  637. </FormItem>
  638. <FormItem className="half-item" labelCol={{ span: 4 }} wrapperCol={{ span: 18 }} label="上市">
  639. <Radio.Group
  640. value={this.state.listed}
  641. onChange={(e) => {
  642. this.setState({ listed: e.target.value });
  643. }}
  644. >
  645. <Radio value={0}>是</Radio>
  646. <Radio value={1}>否 </Radio>
  647. </Radio.Group>
  648. </FormItem>
  649. <div className="clearfix pictures">
  650. <FormItem
  651. className="half-item"
  652. labelCol={{ span: 4 }}
  653. wrapperCol={{ span: 18 }}
  654. style={{ marginTop: 15 }}
  655. label="机构证(PIC)"
  656. >
  657. <PicturesWall
  658. pictureSign="PIC"
  659. fileList={this.getOrgCodeUrl}
  660. pictureUrl={this.state.orgCodeUrl}
  661. />
  662. <p>图片建议:图片要清晰。</p>
  663. </FormItem>
  664. <FormItem
  665. className="half-item"
  666. style={{paddingTop:15}}
  667. labelCol={{ span: 4 }}
  668. wrapperCol={{ span: 18 }}
  669. label={<span><span className="color-red"> * </span>企业logo</span>}
  670. >
  671. {/* <PicturesWall
  672. pictureSign="logo"
  673. fileList={this.getCompanyLogoUrl}
  674. pictureUrl={this.state.companyLogoUrl}
  675. />
  676. <p>图片建议:图片要清晰。</p> */}
  677. <Crop
  678. getAllImg={this.getAllImg}
  679. number = {1}
  680. aspectRatio = {1/1}
  681. url ={globalConfig.context + '/api/user/uploadPicture64'}
  682. uploadData = {{sign:'user_picture'}}
  683. urlArr = {this.state.companyLogoUrl}
  684. />
  685. <p>图片建议 : 图片要清晰。</p>
  686. </FormItem>
  687. </div>
  688. <div className="clearfix">
  689. <FormItem
  690. className="half-item"
  691. labelCol={{ span: 4 }}
  692. wrapperCol={{ span: 18 }}
  693. label={<span><span className="color-red"> * </span>业务范围</span>}
  694. >
  695. <Input
  696. type="textarea"
  697. rows={4}
  698. maxLength={400}
  699. value={this.state.businessScope}
  700. placeholder="请输入业务范围"
  701. onChange={(e) => {
  702. this.setState({ businessScope: e.target.value });
  703. }}
  704. />
  705. </FormItem>
  706. <FormItem
  707. className="half-item"
  708. labelCol={{ span: 4 }}
  709. wrapperCol={{ span: 18 }}
  710. label={<span><span className="color-red"> * </span>企业简介</span>}
  711. >
  712. <Input
  713. type="textarea"
  714. rows={4}
  715. maxLength={512}
  716. value={this.state.introduction}
  717. placeholder="请输入企业简介"
  718. onChange={(e) => {
  719. this.setState({ introduction: e.target.value });
  720. }}
  721. />
  722. </FormItem>
  723. </div>
  724. <div className="clearfix">
  725. <FormItem
  726. labelCol={{ span: 2 }}
  727. wrapperCol={{ span: 18 }}
  728. style={{ marginTop: 15 }}
  729. label={<span><span className="color-red"> * </span>荣誉资质</span>}
  730. >
  731. <PicturesWallMore
  732. pictureSign="PIC"
  733. fileList={this.getQualiUrl}
  734. pictureUrl={this.state.qualiUrl}
  735. />
  736. <p>图片建议:图片要清晰。</p>
  737. </FormItem>
  738. </div>
  739. <Row style={{ marginBottom: 20 ,marginTop:10}}>
  740. <Col offset={2} span={4}>
  741. <Button size="large" className="set-submit" type="primary" onClick={this.subFun} >
  742. 保存
  743. </Button>
  744. </Col>
  745. </Row>
  746. </div>
  747. </Spin>
  748. </Form>
  749. </div>
  750. );
  751. }
  752. });
  753. export default Unit;