basic.jsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. import React from 'react';
  2. import { Radio, Icon, Button, AutoComplete, Cascader, layout, Input, Select, Tabs, Spin, Popconfirm, Popover, Table, Switch, message, DatePicker, Modal, Upload, Form, Row, Col, TimePicker } from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import { citySelect, provinceList, areaSelect ,getProvince} from '@/NewDicProvinceList';
  7. import { socialAttribute, industry, newFollow, auditStatusL, lvl, currentMember, cityArr, statuslist, customerStatus, intentionalService, sex } from '@/dataDic.js';
  8. import { getCompanyIntention, splitUrl, getIndustry, getStatuslist, getAuditStatus, getContactType, getSocialAttribute, getfllowSituation, beforeUploadFile, getWhether, getcityArr, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '@/tools.js';
  9. const FormItem = Form.Item;
  10. const Basic = React.createClass({
  11. getInitialState() {
  12. return {
  13. loading: false,
  14. orgCodeUrl: [],
  15. companyLogoUrl: [],
  16. }
  17. },
  18. loadInformation(record) {
  19. $.ajax({
  20. method: "get",
  21. dataType: "json",
  22. url: globalConfig.context + '/api/admin/customer/findOrganizationCustomerDetail',
  23. data: {
  24. uid: record
  25. },
  26. success: function(data) {
  27. let thisData = data.data;
  28. if(!thisData) {
  29. if(data.error && data.error.length) {
  30. message.warning(data.error[0].message);
  31. };
  32. thisData = {};
  33. };
  34. let ProvinceS = thisData.locationProvince, //getprovince
  35. citys = thisData.locationCity,
  36. Areas = thisData.locationArea,
  37. ProvinceCity = getProvince(ProvinceS, citys, Areas);
  38. this.setState({
  39. orgCodeUrl: thisData.orgCodeUrl ? splitUrl(thisData.orgCodeUrl, ',', globalConfig.avatarHost + '/upload') : [],
  40. companyLogoUrl: thisData.companyLogoUrl ? splitUrl(thisData.companyLogoUrl, ',', globalConfig.avatarHost + '/upload') : [],
  41. ProvinceCity: ProvinceCity,
  42. basicData:thisData
  43. });
  44. }.bind(this),
  45. }).always(function() {
  46. this.setState({
  47. loading: false
  48. });
  49. }.bind(this));
  50. },
  51. //图片
  52. getOrgCodeUrl(e) {
  53. this.setState({
  54. orgCodeUrl: e
  55. });
  56. },
  57. getCompanyLogoUrl(e) {
  58. this.setState({
  59. companyLogoUrl: e
  60. });
  61. },
  62. //取消
  63. detailsModal() {
  64. this.props.closeDetail(false, false)
  65. },
  66. componentWillMount(){
  67. this.loadInformation(this.props.data.id)
  68. },
  69. componentWillReceiveProps(nextProps) {
  70. if(nextProps.data&&nextProps.basicState){
  71. this.loadInformation(nextProps.data.id)
  72. }
  73. },
  74. render() {
  75. const basicData = this.state.basicData || [];
  76. return(
  77. <div>
  78. <Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form">
  79. <Spin spinning={this.state.loading}>
  80. <div className="clearfix" style={{paddingLeft:'60px'}}>
  81. <FormItem className="half-item"
  82. labelCol={{ span: 4 }}
  83. wrapperCol={{ span: 18 }}
  84. label="客户名称"
  85. >
  86. <span>{basicData.identifyName}</span>
  87. </FormItem>
  88. </div>
  89. <div className="clearfix" style={{paddingLeft:'60px'}}>
  90. <FormItem className="half-item"
  91. labelCol={{ span: 4 }}
  92. wrapperCol={{ span: 18 }}
  93. label="行业">
  94. <span>{getIndustry(basicData.industry)}</span>
  95. </FormItem>
  96. <FormItem className="half-item"
  97. labelCol={{ span: 4 }}
  98. wrapperCol={{ span: 18 }}
  99. label="社会属性"
  100. >
  101. <span>{getSocialAttribute(basicData.societyTag)}</span>
  102. </FormItem>
  103. <FormItem className="half-item"
  104. labelCol={{ span: 4 }}
  105. wrapperCol={{ span: 18 }}
  106. label="省-市-区"
  107. >
  108. <span>{this.state.ProvinceCity}</span>
  109. </FormItem>
  110. <FormItem className="half-item"
  111. labelCol={{ span: 4 }}
  112. wrapperCol={{ span: 18 }}
  113. label="通信地址"
  114. >
  115. <span>{basicData.postalAddress}</span>
  116. </FormItem>
  117. <FormItem className="half-item"
  118. labelCol={{ span: 4 }}
  119. wrapperCol={{ span: 18 }}
  120. label="固定电话"
  121. >
  122. <span>{basicData.contactsFixedTel}</span>
  123. </FormItem>
  124. <FormItem className="half-item"
  125. labelCol={{ span: 4 }}
  126. wrapperCol={{ span: 18 }}
  127. label="客户传真"
  128. >
  129. <span>{basicData.contactsFax}</span>
  130. </FormItem>
  131. <FormItem className="half-item"
  132. labelCol={{ span: 4 }}
  133. wrapperCol={{ span: 18 }}
  134. label="注册资本"
  135. >
  136. <span>{basicData.registeredCapital}</span>
  137. </FormItem>
  138. <FormItem className="half-item"
  139. labelCol={{ span: 4 }}
  140. wrapperCol={{ span: 18 }}
  141. label="单位规模"
  142. >
  143. <span>{basicData.enterpriseScale}</span>
  144. </FormItem>
  145. <FormItem className="half-item"
  146. labelCol={{ span: 4 }}
  147. wrapperCol={{ span: 18 }}
  148. label="法人名称"
  149. >
  150. <span>{basicData.legalPerson}</span>
  151. </FormItem>
  152. <FormItem className="half-item"
  153. labelCol={{ span: 4 }}
  154. wrapperCol={{ span: 18 }}
  155. label="身份证号码"
  156. >
  157. <span>{basicData.legalPersonIdCard}</span>
  158. </FormItem>
  159. <FormItem className="half-item"
  160. labelCol={{ span: 4 }}
  161. wrapperCol={{ span: 18 }}
  162. label="主要联系人"
  163. >
  164. <span>{basicData.contacts}</span>
  165. </FormItem>
  166. <FormItem className="half-item"
  167. labelCol={{ span: 4 }}
  168. wrapperCol={{ span: 18 }}
  169. label="主要联系人号码"
  170. >
  171. <span>{basicData.contactMobile}</span>
  172. </FormItem>
  173. <FormItem className="half-item"
  174. labelCol={{ span: 4 }}
  175. wrapperCol={{ span: 18 }}
  176. label="法人电话"
  177. >
  178. <span>{basicData.legalPersonTel}</span>
  179. </FormItem>
  180. <FormItem className="half-item"
  181. labelCol={{ span: 4 }}
  182. wrapperCol={{ span: 18 }}
  183. label="电子邮箱"
  184. >
  185. <span>{basicData.legalPersonEmail}</span>
  186. </FormItem>
  187. <FormItem className="half-item"
  188. labelCol={{ span: 4 }}
  189. wrapperCol={{ span: 18 }}
  190. label="机构代码"
  191. >
  192. <span>{basicData.orgCode}</span>
  193. </FormItem>
  194. <div className="clearfix">
  195. <FormItem className="half-item"
  196. labelCol={{ span: 4 }}
  197. wrapperCol={{ span: 18 }}
  198. label="高新"
  199. >
  200. <span>{basicData.highTechZone?'是':'否'}</span>
  201. </FormItem>
  202. <FormItem className="half-item"
  203. labelCol={{ span: 4 }}
  204. wrapperCol={{ span: 18 }}
  205. label="上市"
  206. >
  207. <span>{basicData.listed?'是':'否'}</span>
  208. </FormItem>
  209. <FormItem className="half-item"
  210. labelCol={{ span: 4 }}
  211. wrapperCol={{ span: 18 }}
  212. label="国际化"
  213. >
  214. <span>{basicData.international?'是':'否'}</span>
  215. </FormItem>
  216. </div>
  217. <div className="clearfix pictures">
  218. <FormItem
  219. labelCol={{ span: 4 }}
  220. wrapperCol={{ span: 18 }}
  221. label="机构证(PIC)" >
  222. <div className="clearfix">
  223. <Upload className="demandDetailShow-upload"
  224. listType="picture-card"
  225. fileList={this.state.orgCodeUrl}
  226. onPreview={(file) => {
  227. this.setState({
  228. previewImage: file.url || file.thumbUrl,
  229. previewVisible: true,
  230. });
  231. }} >
  232. </Upload>
  233. <Modal maskClosable={false} footer={null}
  234. visible={this.state.previewVisible}
  235. onCancel={() => { this.setState({ previewVisible: false }) }}>
  236. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  237. </Modal>
  238. </div>
  239. </FormItem>
  240. <FormItem
  241. labelCol={{ span: 4 }}
  242. wrapperCol={{ span: 18 }}
  243. label="单位logo" >
  244. <div className="clearfix">
  245. <Upload className="demandDetailShow-upload"
  246. listType="picture-card"
  247. fileList={this.state.companyLogoUrl}
  248. onPreview={(file) => {
  249. this.setState({
  250. previewImage: file.url || file.thumbUrl,
  251. previewVisible: true,
  252. });
  253. }} >
  254. </Upload>
  255. <Modal maskClosable={false} footer={null}
  256. visible={this.state.previewVisible}
  257. onCancel={() => { this.setState({ previewVisible: false }) }}>
  258. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  259. </Modal>
  260. </div>
  261. </FormItem>
  262. </div>
  263. <div className="clearfix">
  264. <FormItem
  265. labelCol={{ span: 2 }}
  266. wrapperCol={{ span: 18 }}
  267. label="业务范围" >
  268. <span>{basicData.businessScope}</span>
  269. </FormItem>
  270. <FormItem
  271. labelCol={{ span: 2 }}
  272. wrapperCol={{ span: 18 }}
  273. label="单位简介" >
  274. <span>{basicData.introduction}</span>
  275. </FormItem>
  276. </div>
  277. </div>
  278. </Spin>
  279. </Form>
  280. </div>
  281. )
  282. }
  283. })
  284. export default Basic;