businessForm.jsx 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import {
  4. Icon,
  5. Tooltip,
  6. Modal,
  7. message,
  8. Spin,
  9. Upload,
  10. Input,
  11. Select,
  12. Button,
  13. Radio,
  14. Form,
  15. Cascader,
  16. Tag,
  17. InputNumber
  18. } from 'antd';
  19. import { citySelect } from '@/NewDicProvinceListAll';
  20. import { splitUrl ,getReleaseStateList} from '@/tools.js';
  21. //图片组件
  22. const PicturesWall = React.createClass({
  23. getInitialState() {
  24. return {
  25. previewVisible: false,
  26. previewImage: '',
  27. fileList: []
  28. };
  29. },
  30. handleCancel() {
  31. this.setState({ previewVisible: false });
  32. },
  33. handlePreview(file) {
  34. this.setState({
  35. previewImage: file.url || file.thumbUrl,
  36. previewVisible: true
  37. });
  38. },
  39. handleChange(info) {
  40. let fileList = info.fileList;
  41. this.setState({ fileList });
  42. this.props.fileList(fileList);
  43. },
  44. componentWillReceiveProps(nextProps) {
  45. this.state.fileList = nextProps.pictureUrl;
  46. },
  47. render() {
  48. const { previewVisible, previewImage, fileList } = this.state;
  49. const uploadButton = (
  50. <div>
  51. <Icon type="plus" />
  52. <div className="ant-upload-text">点击上传</div>
  53. </div>
  54. );
  55. return (
  56. <div style={{ display: 'inline-block' }}>
  57. <Upload
  58. action={globalConfig.context + '/api/user/jtBusiness/project/uploadPicture'}
  59. data={{ sign: 'jt_project_picture' }}
  60. listType="picture-card"
  61. fileList={fileList}
  62. onPreview={this.handlePreview}
  63. onChange={this.handleChange}
  64. >
  65. {fileList.length >= 1 ? null : uploadButton}
  66. </Upload>
  67. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  68. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  69. </Modal>
  70. </div>
  71. );
  72. }
  73. });
  74. const DemandDetailForm = Form.create()(
  75. React.createClass({
  76. getInitialState() {
  77. return {
  78. visible: false,
  79. loading: false,
  80. auditStatus: 0,
  81. textFileList: [],
  82. videoFileList: [],
  83. pictureUrl: [],
  84. orgCodeUrl: [],
  85. companyLogoUrl: [],
  86. tags: []
  87. };
  88. },
  89. loadData(id) {
  90. this.setState({
  91. loading: true
  92. });
  93. $.ajax({
  94. method: 'get',
  95. dataType: 'json',
  96. crossDomain: false,
  97. url: globalConfig.context + '/api/user/jtBusiness/project/detail',
  98. data: {
  99. id: id
  100. },
  101. success: function(data) {
  102. if (!data.data) {
  103. if (data.error && data.error.length) {
  104. message.warning(data.error[0].message);
  105. }
  106. } else {
  107. let thisdata = data.data;
  108. let ProvinceCityArr = [];
  109. ProvinceCityArr.push(thisdata.province, thisdata.city);
  110. this.setState({
  111. id: thisdata.id, //业务名称
  112. name: thisdata.name, //业务名称
  113. categoryId: thisdata.categoryId, //业务品类
  114. number: thisdata.number,
  115. price: thisdata.price, //市场价
  116. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //最低折扣
  117. memberPrice: thisdata.memberPrice ? thisdata.memberPrice : '', //会员价
  118. offset: thisdata.offset ? thisdata.offset : '',
  119. activityFlag: thisdata.activityFlag ? thisdata.activityFlag.toString() : '', //活动生效标识
  120. ProvinceCity: ProvinceCityArr,
  121. introduce: thisdata.introduce,
  122. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
  123. value: thisdata.value,
  124. applyConditions: thisdata.applyConditions,
  125. orgCodeUrl: thisdata.minImgUrl
  126. ? splitUrl(thisdata.minImgUrl, ',', globalConfig.avatarHost + '/upload')
  127. : [],
  128. companyLogoUrl: thisdata.maxImgUrl
  129. ? splitUrl(thisdata.maxImgUrl, ',', globalConfig.avatarHost + '/upload')
  130. : []
  131. });
  132. }
  133. }.bind(this)
  134. }).always(
  135. function() {
  136. this.setState({
  137. loading: false
  138. });
  139. }.bind(this)
  140. );
  141. },
  142. //左侧图片地址
  143. getOrgCodeUrl(e) {
  144. this.setState({ orgCodeUrl: e });
  145. },
  146. //右侧图片地址
  147. getCompanyLogoUrl(e) {
  148. this.setState({ companyLogoUrl: e });
  149. },
  150. //编辑部门,保存
  151. handleSubmit(e,index) {
  152. e.preventDefault();
  153. if (!this.state.name) {
  154. message.warning('请输入项目名称');
  155. return;
  156. }
  157. if ((this.state.name).length>16) {
  158. message.warning('项目名称在16个字以内');
  159. return false;
  160. };
  161. if (!this.state.categoryId) {
  162. message.warning('请选择项目业务品类');
  163. return;
  164. }
  165. if (!this.state.ProvinceCity.length) {
  166. message.warning('请选择省份');
  167. return;
  168. }
  169. if (!this.state.price) {
  170. message.warning('请输入正确的市场价');
  171. return;
  172. }
  173. this.setState({
  174. loading: true
  175. });
  176. let minPictureUrl = [];
  177. if (this.state.orgCodeUrl.length) {
  178. let picArr = [];
  179. this.state.orgCodeUrl.map(function(item) {
  180. if (item.response && item.response.data && item.response.data.length) {
  181. picArr.push(item.response.data);
  182. }
  183. });
  184. minPictureUrl = picArr.join(',');
  185. }
  186. let maxPictureUrl = [];
  187. if (this.state.companyLogoUrl.length) {
  188. let picArr = [];
  189. this.state.companyLogoUrl.map(function(item) {
  190. if (item.response && item.response.data && item.response.data.length) {
  191. picArr.push(item.response.data);
  192. }
  193. });
  194. maxPictureUrl = picArr.join(',');
  195. }
  196. $.ajax({
  197. method: 'post',
  198. dataType: 'json',
  199. crossDomain: false,
  200. url: globalConfig.context + '/api/user/jtBusiness/project/update',
  201. data: {
  202. auditStatus:index,
  203. id: this.state.id, //业务名称
  204. name: this.state.name, //业务名称
  205. categoryId: this.state.categoryId, //业务品类
  206. price: this.state.price, //市场价
  207. activityPrice: this.state.activityPrice ? this.state.activityPrice : '0', //最低折扣
  208. memberPrice: this.state.memberPrice ? this.state.memberPrice : '0', //会员价
  209. offset: this.state.offset ? this.state.offset : '0',
  210. activityFlag: this.state.activityFlag, //活动生效标识
  211. province: this.state.ProvinceCity ? this.state.ProvinceCity[0] : '', //是否全国
  212. city: this.state.ProvinceCity ? this.state.ProvinceCity[1] : '',
  213. introduce: this.state.introduce,
  214. value: this.state.value,
  215. isHot: this.state.isHot,
  216. minImgUrl: minPictureUrl.length ? minPictureUrl : '',
  217. maxImgUrl: maxPictureUrl.length ? maxPictureUrl : '',
  218. applyConditions: this.state.applyConditions
  219. }
  220. }).done(
  221. function(data) {
  222. if (!data.error.length) {
  223. message.success('保存成功!');
  224. this.setState({
  225. loading: false,
  226. editvisible: false
  227. });
  228. } else {
  229. message.warning(data.error[0].message);
  230. }
  231. this.props.handOk();
  232. }.bind(this)
  233. );
  234. },
  235. loadData(ids) {
  236. $.ajax({
  237. method: 'get',
  238. dataType: 'json',
  239. crossDomain: false,
  240. url: globalConfig.context + '/api/user/jtBusiness/project/detail',
  241. data: {
  242. id: ids
  243. },
  244. success: function(data) {
  245. if (!data.data) {
  246. if (data.error && data.error.length) {
  247. message.warning(data.error[0].message);
  248. }
  249. } else {
  250. let thisdata = data.data;
  251. let ProvinceCityArr = [];
  252. ProvinceCityArr.push(thisdata.province, thisdata.city);
  253. this.setState({
  254. id: thisdata.id, //业务名称
  255. name: thisdata.name, //业务名称
  256. categoryId: thisdata.categoryId, //业务品类
  257. number: thisdata.number,
  258. auditInfo:thisdata.auditInfo,
  259. price: thisdata.price, //市场价
  260. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //最低折扣
  261. memberPrice: thisdata.memberPrice ? thisdata.memberPrice : '', //会员价
  262. offset: thisdata.offset ? thisdata.offset : '',
  263. activityFlag: thisdata.activityFlag ? thisdata.activityFlag.toString() : '', //活动生效标识
  264. ProvinceCity: ProvinceCityArr,
  265. introduce: thisdata.introduce,
  266. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
  267. value: thisdata.value,
  268. isHot:thisdata.isHot,
  269. auditStatus:thisdata.auditStatus,
  270. applyConditions: thisdata.applyConditions,
  271. orgCodeUrl: thisdata.minImgUrl
  272. ? splitUrl(thisdata.minImgUrl, ',', globalConfig.avatarHost + '/upload')
  273. : [],
  274. companyLogoUrl: thisdata.maxImgUrl
  275. ? splitUrl(thisdata.maxImgUrl, ',', globalConfig.avatarHost + '/upload')
  276. : []
  277. });
  278. }
  279. }.bind(this)
  280. }).always(
  281. function() {
  282. this.setState({
  283. loading: false
  284. });
  285. }.bind(this)
  286. );
  287. },
  288. submission(e, index) {
  289. this.handleSubmit(e, index);
  290. $.ajax({
  291. method: 'get',
  292. dataType: 'json',
  293. crossDomain: false,
  294. async: true,
  295. url: globalConfig.context + '/api/user/jtBusiness/project/publish',
  296. data: {
  297. id: this.state.id,
  298. auditStatus:1
  299. }
  300. }).done(
  301. function(data) {
  302. if (!data.error.length) {
  303. this.setState({
  304. loading: false
  305. });
  306. } else {
  307. message.warning(data.error[0].message);
  308. }
  309. }.bind(this)
  310. );
  311. },
  312. cancelFun() {
  313. this.props.closeDesc();
  314. },
  315. componentWillMount() {
  316. if (this.props.data.id) {
  317. this.loadData(this.props.data.id);
  318. }
  319. },
  320. componentWillReceiveProps(nextProps) {
  321. if (!this.props.visible && nextProps.visible) {
  322. this.state.textFileList = [];
  323. this.state.videoFileList = [];
  324. if (nextProps.data.id) {
  325. this.loadData(nextProps.data.id);
  326. }
  327. }
  328. },
  329. render() {
  330. const FormItem = Form.Item;
  331. let firstData = this.props.firstData || [];
  332. return (
  333. <div className="patent-desc">
  334. <Form layout="horizontal" onSubmit={(e)=>{this.handleSubmit(e,0)}} id="demand-form">
  335. <Spin spinning={this.state.loading}>
  336. <div className="clearfix" style={{ paddingLeft: '86px' }}>
  337. <FormItem
  338. className="half-item"
  339. labelCol={{ span: 4 }}
  340. wrapperCol={{ span: 12 }}
  341. label={
  342. <span>
  343. <strong style={{ color: 'red' }}>*</strong>项目名称
  344. </span>
  345. }
  346. >
  347. <Input
  348. placeholder="项目名称"
  349. value={this.state.name}
  350. onChange={(e) => {
  351. this.setState({ name: e.target.value });
  352. }}
  353. />
  354. </FormItem>
  355. <FormItem
  356. className="half-item"
  357. labelCol={{ span: 4 }}
  358. wrapperCol={{ span: 12 }}
  359. label={
  360. <span>
  361. <strong style={{ color: 'red' }}>*</strong>业务品类
  362. </span>
  363. }
  364. >
  365. <Select
  366. placeholder="请选择业务品类"
  367. value={this.state.categoryId}
  368. onChange={(e) => {
  369. this.setState({ categoryId: e });
  370. }}
  371. notFoundContent="未获取到业务品类列表"
  372. >
  373. {firstData.map(function(item) {
  374. return <Select.Option key={item.id}>{item.name}</Select.Option>;
  375. })}
  376. </Select>
  377. </FormItem>
  378. </div>
  379. <div className="clearfix" style={{ paddingLeft: '86px' }}>
  380. <FormItem
  381. className="half-item"
  382. labelCol={{ span: 4 }}
  383. wrapperCol={{ span: 12 }}
  384. label={
  385. <span>
  386. <strong style={{ color: 'red' }}>*</strong>省-市
  387. </span>
  388. }
  389. >
  390. <Cascader
  391. options={citySelect()}
  392. value={this.state.ProvinceCity}
  393. placeholder="选择市"
  394. onChange={(e, pre) => {
  395. this.setState({ ProvinceCity: e });
  396. }}
  397. />
  398. </FormItem>
  399. <FormItem
  400. className="half-item"
  401. labelCol={{ span: 4 }}
  402. wrapperCol={{ span: 12 }}
  403. label={
  404. <span>
  405. <strong style={{ color: 'red' }}>*</strong>热点
  406. </span>
  407. }
  408. >
  409. <Radio.Group
  410. onChange={(e) => {
  411. this.setState({ isHot: e.target.value });
  412. }}
  413. value={this.state.isHot}
  414. >
  415. <Radio value={0}>否</Radio>
  416. <Radio value={1}>是</Radio>
  417. </Radio.Group>
  418. </FormItem>
  419. </div>
  420. <div className="clearfix" style={{ paddingLeft: '86px' }}>
  421. <FormItem
  422. className="half-item"
  423. labelCol={{ span: 4 }}
  424. wrapperCol={{ span: 12 }}
  425. label={
  426. <span>
  427. <strong style={{ color: 'red' }}>*</strong>市场价
  428. </span>
  429. }
  430. >
  431. <InputNumber
  432. placeholder="市场价"
  433. value={this.state.price}
  434. style={{ width: 120 }}
  435. onChange={(e) => {
  436. this.setState({ price: e });
  437. }}
  438. required="required"
  439. />
  440. <span style={{ marginLeft: 10 }}>万元</span>
  441. </FormItem>
  442. <FormItem
  443. className="half-item"
  444. labelCol={{ span: 4 }}
  445. wrapperCol={{ span: 12 }}
  446. label="活动价"
  447. >
  448. <InputNumber
  449. placeholder="活动价"
  450. value={this.state.activityPrice}
  451. style={{ width: 120 }}
  452. onChange={(e) => {
  453. this.setState({ activityPrice: e });
  454. }}
  455. min={0}
  456. max={999999}
  457. step={0.01}
  458. />
  459. <span style={{ marginLeft: 10 }}>万元</span>
  460. </FormItem>
  461. <FormItem
  462. className="half-item"
  463. labelCol={{ span: 4 }}
  464. wrapperCol={{ span: 12 }}
  465. label="最低折扣"
  466. >
  467. <InputNumber
  468. placeholder="最低折扣(如:0.5)"
  469. value={this.state.offset}
  470. style={{ width: '50%' }}
  471. onChange={(e) => {
  472. this.setState({ offset: e });
  473. }}
  474. min={0}
  475. max={1}
  476. step={0.01}
  477. />
  478. </FormItem>
  479. <FormItem
  480. className="half-item"
  481. labelCol={{ span: 4 }}
  482. wrapperCol={{ span: 12 }}
  483. label="会员价"
  484. >
  485. <InputNumber
  486. placeholder="会员价"
  487. value={this.state.memberPrice}
  488. style={{ width: '120px' }}
  489. onChange={(e) => {
  490. this.setState({ memberPrice: e });
  491. }}
  492. min={0}
  493. max={999999}
  494. step={0.01}
  495. />
  496. <span style={{ marginLeft: 10 }}>万元</span>
  497. </FormItem>
  498. <FormItem
  499. className="half-item"
  500. labelCol={{ span: 4 }}
  501. wrapperCol={{ span: 12 }}
  502. label="活动生效"
  503. >
  504. <Select
  505. placeholder="活动生效"
  506. value={this.state.activityFlag}
  507. style={{ width: '94%' }}
  508. onChange={(e) => {
  509. this.setState({ activityFlag: e });
  510. }}
  511. >
  512. <Select.Option key="0">无效</Select.Option>
  513. <Select.Option key="1">有效</Select.Option>
  514. </Select>
  515. </FormItem>
  516. <FormItem
  517. className="half-item"
  518. labelCol={{ span: 4 }}
  519. wrapperCol={{ span: 12 }}
  520. label="创建时间"
  521. >
  522. <span style={{ width: '94%' }}>{this.state.createTime}</span>
  523. </FormItem>
  524. <FormItem
  525. className="half-item"
  526. labelCol={{ span: 4 }}
  527. wrapperCol={{ span: 12 }}
  528. label="发布状态">
  529. <span>{getReleaseStateList(this.state.auditStatus)}</span>
  530. </FormItem>
  531. </div>
  532. <div className="clearfix">
  533. {this.state.auditInfo?<FormItem
  534. labelCol={{ span: 4 }}
  535. wrapperCol={{ span: 12 }}
  536. label="拒绝原因">
  537. <span>{this.state.auditInfo}</span>
  538. </FormItem>:''}
  539. </div>
  540. <div className="clearfix">
  541. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="业务项目服务内容">
  542. <Input
  543. type="textarea"
  544. rows={4}
  545. placeholder="业务项目服务内容"
  546. value={this.state.introduce}
  547. onChange={(e) => {
  548. this.setState({ introduce: e.target.value });
  549. }}
  550. />
  551. </FormItem>
  552. </div>
  553. <div className="clearfix">
  554. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="业务项目价值及作用">
  555. <Input
  556. type="textarea"
  557. rows={4}
  558. placeholder="业务项目价值及作用"
  559. value={this.state.value}
  560. onChange={(e) => {
  561. this.setState({ value: e.target.value });
  562. }}
  563. />
  564. </FormItem>
  565. </div>
  566. <div className="clearfix">
  567. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="业务项目客户基本条件">
  568. <Input
  569. type="textarea"
  570. rows={4}
  571. placeholder="业务项目客户基本条件"
  572. value={this.state.applyConditions}
  573. onChange={(e) => {
  574. this.setState({ applyConditions: e.target.value });
  575. }}
  576. />
  577. </FormItem>
  578. </div>
  579. <div className="clearfix pictures">
  580. <FormItem
  581. className="half-item"
  582. labelCol={{ span: 8 }}
  583. wrapperCol={{ span: 10 }}
  584. label="业务项目图标(小)"
  585. >
  586. <PicturesWall
  587. pictureSign="business_project_min_picture"
  588. fileList={this.getOrgCodeUrl}
  589. pictureUrl={this.state.orgCodeUrl}
  590. />
  591. <p>图片建议:图片要清晰。(72*72)</p>
  592. </FormItem>
  593. <FormItem
  594. className="half-item"
  595. labelCol={{ span: 8 }}
  596. wrapperCol={{ span: 12 }}
  597. label="业务项目图标(大)"
  598. >
  599. <PicturesWall
  600. pictureSign="business_project_max_picture"
  601. fileList={this.getCompanyLogoUrl}
  602. pictureUrl={this.state.companyLogoUrl}
  603. />
  604. <p>图片建议:图片要清晰。(330*230)</p>
  605. </FormItem>
  606. </div>
  607. <Button
  608. className="set-submit"
  609. type="primary"
  610. htmlType="submit"
  611. style={{ marginLeft: '160px', marginBottom: '20px', marginTop: '20px' }}
  612. >
  613. 保存
  614. </Button>
  615. <Button
  616. className="set-submit"
  617. type="ghost"
  618. onClick={(e) => {
  619. this.submission(e,1)
  620. }}
  621. >
  622. 提交审核
  623. </Button>
  624. <Button
  625. className="set-submit"
  626. type="ghost"
  627. onClick={this.cancelFun}
  628. >
  629. 取消
  630. </Button>
  631. </Spin>
  632. </Form>
  633. </div>
  634. );
  635. }
  636. })
  637. );
  638. export default DemandDetailForm;