serviceQuery.jsx 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. import React from 'react';
  2. import {Button ,Input,Select,Spin,Table, Switch, message, DatePicker, Modal,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 './myClient.less';
  7. import { areaSelect} from '../../../NewDicProvinceList';
  8. const { Column, ColumnGroup } = Table;
  9. import {socialAttribute,newFollow,lvl, customerStatus,intentionalService} from '../../../dataDic.js';
  10. import {getcustomerStatue,getprovince,getStatusFollow,getCompanyIntention,getfllowSituation,getContactType } from '../../../tools.js';
  11. const ServiceQuery= Form.create()(React.createClass({
  12. loadData(pageNo, apiUrl) {
  13. this.state.data = [];
  14. this.setState({
  15. loading: true
  16. });
  17. $.ajax({
  18. method: "post",
  19. dataType: "json",
  20. crossDomain: false,
  21. url:globalConfig.context + '/api/admin/customer/listAllBusiness',
  22. data: {
  23. pageNo: pageNo || 1,
  24. pageSize: this.state.pagination.pageSize,
  25. businessGlossoryId: this.state.businessIdS, //业务意向
  26. identifyName:this.state.identifyNameS,
  27. followSituation:this.state.followSituationS,
  28. customerStatus:this.state.customerStatusS,
  29. adminName: this.state.adminNameS,
  30. startDate: this.state.releaseDate[0],
  31. endDate: this.state.releaseDate[1],
  32. },
  33. success: function (data) {
  34. let theArr = [];
  35. if (data.error.length || data.data.list=="") {
  36. if (data.error && data.error.length) {
  37. message.warning(data.error[0].message);
  38. };
  39. } else {
  40. for (let i = 0; i < data.data.list.length; i++) {
  41. let thisdata = data.data.list[i];
  42. theArr.push({
  43. key: i,
  44. id: thisdata.id,
  45. businessId:thisdata.businessId,
  46. businessName:thisdata.businessName,
  47. identifyName:thisdata.identifyName,
  48. followSituation:thisdata.followSituation,
  49. customerStatus:thisdata.customerStatus,
  50. adminName:thisdata.adminName,
  51. createTime:thisdata.createTime,
  52. updateTime:thisdata.updateTime,
  53. });
  54. };
  55. this.state.pagination.current = data.data.pageNo;
  56. this.state.pagination.total = data.data.totalCount;
  57. };
  58. this.setState({
  59. dataSource: theArr,
  60. pagination: this.state.pagination,
  61. selectedRowKeys:[]
  62. });
  63. }.bind(this),
  64. }).always(function () {
  65. this.setState({
  66. loading: false
  67. });
  68. }.bind(this));
  69. },
  70. getInitialState() {
  71. return {
  72. dataSources:[],
  73. customerName:[],
  74. orgCodeUrl:[],
  75. companyLogoUrl:[],
  76. visible: false ,
  77. searchMore: true,
  78. releaseDate: [],
  79. releaseDate: [],
  80. selectedRowKeys: [],
  81. selectedRowKey: [],
  82. selectedRows: [],
  83. loading: false,
  84. pagination: {
  85. defaultCurrent: 1,
  86. defaultPageSize: 10,
  87. showQuickJumper: true,
  88. pageSize: 10,
  89. onChange: function (page) {
  90. this.loadData(page);
  91. }.bind(this),
  92. showTotal: function (total) {
  93. return '共' + total + '条数据';
  94. }
  95. },
  96. paginations: {
  97. defaultCurrent: 1,
  98. defaultPageSize: 10,
  99. showQuickJumper: true,
  100. pageSize: 10,
  101. onChange: function (page) {
  102. this.loadVisit(page);
  103. }.bind(this),
  104. showTotal: function (total) {
  105. return '共' + total + '条数据';
  106. }
  107. },
  108. businessFollowList: [
  109. {
  110. title: '跟进时间',
  111. dataIndex: 'followTime',
  112. key: 'followTime',
  113. }, {
  114. title: '营销员',
  115. dataIndex: 'adminName',
  116. key: 'adminName',
  117. }, {
  118. title: '意向进度',
  119. dataIndex: 'followSituation',
  120. key: 'followSituation',
  121. render:text=>{return getfllowSituation(text)}
  122. }, {
  123. title: '客户状态',
  124. dataIndex: 'customerStatus',
  125. key: 'customerStatus',
  126. render:text=>{return getcustomerStatue(text)}
  127. },
  128. {
  129. title: '拜访方式',
  130. dataIndex: 'contactType',
  131. key:'contactType',
  132. render:text=>{return getContactType(text)}
  133. }, {
  134. title: '联系人',
  135. dataIndex: 'contacts',
  136. key: 'contacts',
  137. },
  138. {
  139. title: '联系电话',
  140. dataIndex: 'contactMobile',
  141. key:'contactMobile',
  142. },
  143. ],
  144. columns: [
  145. {
  146. title: '业务名称',
  147. dataIndex: 'businessName',
  148. key: 'businessName',
  149. }, {
  150. title: '意向时间',
  151. dataIndex: 'createTime',
  152. key: 'createTime',
  153. }, {
  154. title: '更新时间',
  155. dataIndex: 'updateTime',
  156. key: 'updateTime',
  157. }, {
  158. title: '客户名称',
  159. dataIndex: 'identifyName',
  160. key: 'identifyName',
  161. }, {
  162. title: '营销员',
  163. dataIndex: 'adminName',
  164. key: 'adminName',
  165. },
  166. {
  167. title: '意向进度',
  168. dataIndex: 'followSituation',
  169. key:'followSituation',
  170. render: text => { return getfllowSituation(text) }
  171. },
  172. {
  173. title: '客户状态',
  174. dataIndex: 'customerStatus',
  175. key: 'customerStatus',
  176. render: text => { return getcustomerStatue(text) }
  177. },
  178. ],
  179. dataSource: [],
  180. searchTime: [,]
  181. };
  182. },
  183. componentWillMount() {
  184. //意向服务
  185. let intentionalArr = [];
  186. newFollow.map(function (item) {
  187. intentionalArr.push(
  188. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  189. )
  190. });
  191. //客户状态
  192. let customerStatusArr = [];
  193. customerStatus.map(function (item) {
  194. customerStatusArr.push(
  195. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  196. )
  197. });
  198. this.state.intentionalOption = intentionalArr;
  199. this.state.customerStatusArrOption = customerStatusArr;
  200. this.loadData();
  201. },
  202. search() {
  203. this.loadData();
  204. },
  205. reset() {
  206. this.state.businessIdS=undefined; //名称1
  207. this.state.identifyNameS='';
  208. this.state.followSituationS=undefined;
  209. this.state.customerStatusS=undefined;
  210. this.state.adminNameS='';
  211. this.state.releaseDate[0]=undefined;
  212. this.state.releaseDate[1]=undefined;
  213. this.loadData();
  214. },
  215. searchSwitch() {
  216. this.setState({
  217. searchMore: !this.state.searchMore
  218. });
  219. },
  220. //查看基本详情基本信息
  221. loadInformation(record){
  222. $.ajax({
  223. method: "get",
  224. dataType: "json",
  225. crossDomain: false,
  226. url: globalConfig.context + '/api/admin/customer/toUpdateBusiness',
  227. data: {
  228. businessId: record
  229. },
  230. success: function (data) {
  231. let thisData = data.data;
  232. if (!thisData) {
  233. if (data.error && data.error.length) {
  234. message.warning(data.error[0].message);
  235. };
  236. thisData = {};
  237. };
  238. this.setState({
  239. uids:thisData.uid,
  240. dataInformation:thisData,
  241. followSituation:thisData.followSituation,
  242. businessGlossoryId:thisData.businessGlossoryId,
  243. customerStatus:thisData.customerStatus,
  244. remarks:thisData.remarks,
  245. });
  246. }.bind(this),
  247. }).always(function () {
  248. this.loadVisit();
  249. this.setState({
  250. loading: false
  251. });
  252. }.bind(this));
  253. },
  254. detailsModalOk(e) {
  255. this.setState({ modal5Visible:adminData.isSuperAdmin?true:false });//需要一个请求数据
  256. this.loadInformation(e.businessId)
  257. },
  258. //点击消失函数
  259. detailsModal(e) {
  260. this.setState({
  261. modal5Visible:false
  262. });
  263. },
  264. businessFollowOk(){
  265. this.setState({
  266. businessFollowModul:false
  267. });
  268. },
  269. businessFollowCancel(){
  270. this.setState({
  271. businessFollowModul:false
  272. });
  273. },
  274. //进入修改时
  275. listFollowUp(e){
  276. $.ajax({
  277. method: "get",
  278. dataType: "json",
  279. crossDomain: false,
  280. url: globalConfig.context + "/api/admin/customer/toUpdateFollowOneBusiness",
  281. data:{
  282. ufbId:e.ufbId
  283. },
  284. success: function (data) {
  285. let thedata=data.data;
  286. if (!thedata) {
  287. if (data.error && data.error.length) {
  288. message.warning(data.error[0].message);
  289. };
  290. thedata = {};
  291. };
  292. this.setState({
  293. businessGlossoryId:thedata.businessGlossoryId,
  294. followSituation:thedata.followSituation,
  295. customerStatus:thedata.customerStatus,
  296. followTime:thedata.followTime,
  297. createTime:thedata.createTime,
  298. identifyName:thedata.identifyName,
  299. contactType:parseInt(thedata.contactType),
  300. result:thedata.result,
  301. remarks:thedata.remarks,
  302. adminName:thedata.adminName,
  303. contacts:thedata.contacts,
  304. contactMobile:thedata.contactMobile,
  305. ufbId:thedata.ufbId,
  306. followId:thedata.followId,
  307. });
  308. }.bind(this),
  309. }).always(function () {
  310. this.setState({
  311. ufbIds:e.ufbId,
  312. loading: false
  313. });
  314. }.bind(this));
  315. },
  316. //新建HTTP获取数据
  317. addTime(){
  318. $.ajax({
  319. method: "get",
  320. dataType: "json",
  321. crossDomain: false,
  322. url: globalConfig.context + "/api/admin/customer/toAddBusinessAndFollow",
  323. data:{
  324. },
  325. success: function (data) {
  326. let theArr = [];
  327. let thedata=data.data;
  328. if (!thedata) {
  329. if (data.error && data.error.length) {
  330. message.warning(data.error[0].message);
  331. };
  332. thedata = {};
  333. };
  334. let creatMent=thedata.createTime.substr(10,9);
  335. let createYear=thedata.createTime.substr(0,10);
  336. this.setState({
  337. createTime:thedata.createTime,
  338. creatMent:creatMent,
  339. createYear:createYear,
  340. followTime:thedata.followTime,
  341. adminName: thedata.adminName,
  342. });
  343. }.bind(this),
  344. }).always(function () {
  345. this.setState({
  346. loading: false
  347. });
  348. }.bind(this));
  349. },
  350. //获取拜访详情ajax
  351. loadVisit(pageNo) {
  352. this.setState({
  353. loading: true
  354. });
  355. $.ajax({
  356. method: "get",
  357. dataType: "json",
  358. crossDomain: false,
  359. url:globalConfig.context + '/api/admin/customer/listFollowHistory',
  360. data: {
  361. pageNo: pageNo || 1,
  362. pageSize: this.state.paginations.pageSize,
  363. uid: this.state.uids, //名称1
  364. businessGlossoryId:this.state.businessGlossoryId,
  365. },
  366. success: function (data) {
  367. let theArr = [];
  368. if (data.error.length || data.data.list=="") {
  369. if (data.error && data.error.length) {
  370. message.warning(data.error[0].message);
  371. };
  372. } else {
  373. for (let i = 0; i < data.data.list.length; i++) {
  374. let thisdata = data.data.list[i];
  375. theArr.push({
  376. followId:thisdata.followId,
  377. followTime:thisdata.followTime,
  378. identifyName:thisdata.identifyName,
  379. contacts:thisdata.contacts,
  380. contactMobile:thisdata.contactMobile,
  381. result:thisdata.result,
  382. ufbId:thisdata.ufbId,
  383. adminName:thisdata.adminName,
  384. followSituation:thisdata.followSituation,
  385. customerStatus:thisdata.customerStatus,
  386. contactType:thisdata.contactType
  387. });
  388. };
  389. this.state.paginations.current = data.data.pageNo;
  390. this.state.paginations.total = data.data.totalCount;
  391. };
  392. this.setState({
  393. visitArrList: theArr,
  394. paginations: this.state.paginations
  395. });
  396. }.bind(this),
  397. }).always(function () {
  398. this.setState({
  399. loading: false
  400. });
  401. }.bind(this));
  402. },
  403. componentWillReceiveProps(nextProps) {
  404. if (!this.props.visible && nextProps.visible) {
  405. if (nextProps.data && nextProps.data.id) {
  406. this.loadData(nextProps.data.id, nextProps.detailApiUrl);
  407. };
  408. this.state.data = {};
  409. this.state.companyLogoUrl = [];
  410. this.state.orgCodeUrl = [];
  411. };
  412. },
  413. tableRowClick(record, index) {
  414. this.state.RowData = record;
  415. this.detailsModalOk(record);
  416. this.setState({
  417. selectedRowKeys:[],
  418. rowId:record.businessId,
  419. })
  420. },
  421. followRowClick(record, index) {
  422. this.state.RowData = record;
  423. this.listFollowUp(record);
  424. this.setState({
  425. businessFollowModul: true,
  426. selectedRowKeys:[],
  427. });
  428. },
  429. render() {
  430. const FormItem = Form.Item
  431. const rowSelection = {
  432. selectedRowKeys: this.state.selectedRowKeys,
  433. onChange: (selectedRowKeys, selectedRows) => {
  434. this.setState({
  435. selectedRows: selectedRows.slice(-1),
  436. selectedRowKeys: selectedRowKeys.slice(-1)
  437. });
  438. },
  439. onSelect: (recordt, selected, selectedRows) => {
  440. this.setState({
  441. recordt:recordt.id
  442. })
  443. },
  444. };
  445. const rowSelections = {
  446. selectedRowKeys: this.state.selectedRowKey,
  447. onChange: (selectedRowKey, selectedRow) => {
  448. this.setState({
  449. selectedRow: selectedRow.slice(-1),
  450. selectedRowKey: selectedRowKey.slice(-1)
  451. });
  452. },
  453. onSelect: (records, selected, selectedRow) => {
  454. this.setState({
  455. selectedRow: selectedRow.slice(-1),
  456. records:records.id,
  457. })
  458. },
  459. };
  460. const hasSelected = this.state.selectedRowKeys.length > 0;
  461. const { RangePicker } = DatePicker;
  462. const { getFieldDecorator } = this.props.form;
  463. const formItemLayout = {
  464. labelCol: { span: 8 },
  465. wrapperCol: { span: 14 },
  466. };
  467. const theInformation=this.state.dataInformation || {}
  468. const contactsOption="";
  469. const formItemLayput = {
  470. labelCol: { span: 10 },
  471. wrapperCol: { span: 14 },
  472. };
  473. const businessIds=this.state.businessId||'';
  474. const dataSources=this.state.customerArr || [];
  475. const options = dataSources.map((group) =>
  476. <Option key={group.id} value={group.name}>{group.name}</Option>
  477. )
  478. return (
  479. <div className="user-content" >
  480. <div className="content-title">
  481. <span>我的业务</span>
  482. </div>
  483. <div className="user-search">
  484. <Input placeholder="客户名称"
  485. value={this.state.identifyNameS}
  486. onChange={(e) => { this.setState({ identifyNameS: e.target.value }); }} />
  487. <Select placeholder="服务意向" value={this.state.businessIdS} onChange={(e) => {
  488. this.setState({businessIdS:e})}} style={{width:'150px'}}>
  489. {
  490. intentionalService.map(function (item) {
  491. return <Select.Option key={item.value} >{item.key}</Select.Option>
  492. })
  493. }
  494. </Select>
  495. <Button type="primary" onClick={this.search}>搜索</Button>
  496. <Button onClick={this.reset}>重置</Button>
  497. <span style={{marginLeft:'10px',marginRight:'20px'}}>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  498. <div className='clearfix' style={{marginTop:'5px'}}>
  499. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  500. <RangePicker
  501. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  502. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  503. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
  504. <Select placeholder="客户状态"
  505. style={{ width: 150 }}
  506. value={this.state.customerStatusS}
  507. onChange={(e) => { this.setState({ customerStatusS: e }) }}>
  508. {this.state.customerStatusArrOption}
  509. </Select>
  510. <Select placeholder="业务进度"
  511. style={{ width: 150 }}
  512. value={this.state.followSituationS}
  513. onChange={(e) => { this.setState({ followSituationS: e }) }}>
  514. {this.state.intentionalOption}
  515. </Select>
  516. <Input placeholder="营销员" style={{width:'150px'}}
  517. value={this.state.adminNameS}
  518. onChange={(e) => { this.setState({ adminNameS: e.target.value }); }} />
  519. </div>
  520. </div>
  521. </div>
  522. <div className="patent-table">
  523. <Spin spinning={this.state.loading}>
  524. <Table columns={this.state.columns}
  525. dataSource={this.state.dataSource}
  526. rowSelection={rowSelection}
  527. pagination={this.state.pagination}
  528. onRowClick={this.tableRowClick}
  529. />
  530. </Spin>
  531. </div>
  532. <Modal
  533. className="customeDetails"
  534. title="我的业务意向详情"
  535. width='1000px'
  536. visible={this.state.modal5Visible}
  537. onOk={this.detailsModal}
  538. onCancel={this.detailsModal}
  539. footer=''
  540. >
  541. <Form horizontal onSubmit={this.newSubmit} id="demand-form">
  542. <Spin spinning={this.state.loading}>
  543. <div className="clearfix">
  544. <FormItem className="half-item"
  545. {...formItemLayout}
  546. label="意向名称"
  547. >
  548. <span>{getCompanyIntention(theInformation.businessGlossoryId)}</span>
  549. </FormItem>
  550. <FormItem className="half-item"
  551. {...formItemLayout}
  552. label="意向时间"
  553. >
  554. <span>{theInformation.createTime}</span>
  555. </FormItem>
  556. <FormItem className="half-item"
  557. {...formItemLayout}
  558. label="客户名称"
  559. >
  560. <span>{theInformation.identifyName}</span>
  561. </FormItem>
  562. <FormItem className="half-item"
  563. {...formItemLayout}
  564. label="营销员"
  565. >
  566. <span>{theInformation.adminName}</span>
  567. </FormItem>
  568. <FormItem className="half-item"
  569. {...formItemLayout}
  570. label="意向进度"
  571. >
  572. <span>{getfllowSituation(theInformation.followSituation)}</span>
  573. </FormItem>
  574. <FormItem className="half-item"
  575. {...formItemLayout}
  576. label="客户状态"
  577. >
  578. <span>{getcustomerStatue(theInformation.customerStatus)}</span>
  579. </FormItem>
  580. <div className="clearfix">
  581. <FormItem
  582. labelCol={{ span: 4 }}
  583. wrapperCol={{ span: 16 }}
  584. label="意向说明" >
  585. <span>{this.state.remarks}</span>
  586. </FormItem>
  587. </div>
  588. </div>
  589. <div className="clearfix">
  590. <div style={{fontSize:'18px',marginLeft:'40px',marginBottom:'20px'}}>业务跟进</div>
  591. <div className="clearfix" style={{paddingLeft:'40px',paddingRight:'40px'}}>
  592. <Spin spinning={this.state.loading}>
  593. <Table
  594. pagination={this.state.paginations}
  595. columns={this.state.businessFollowList}
  596. dataSource={this.state.visitArrList}
  597. onRowClick={this.followRowClick}
  598. />
  599. </Spin>
  600. </div>
  601. </div>
  602. </Spin>
  603. </Form>
  604. </Modal>
  605. <Modal
  606. footer=''
  607. title="业务跟进详情"
  608. width='1000px'
  609. visible={this.state.businessFollowModul}
  610. onOk={this.businessFollowOk}
  611. onCancel={this.businessFollowCancel}
  612. >
  613. <div className="clearfix">
  614. <Form horizontal id="demand-form" >
  615. <Spin spinning={this.state.loading}>
  616. <div className="clearfix">
  617. <FormItem className="half-item"
  618. {...formItemLayout}
  619. label="意向名称"
  620. >
  621. <span>{getCompanyIntention(this.state.businessGlossoryId)}</span>
  622. </FormItem>
  623. <FormItem className="half-item"
  624. {...formItemLayout}
  625. label="意向时间"
  626. >
  627. <span>{this.state.createTime}</span>
  628. </FormItem>
  629. <FormItem className="half-item"
  630. {...formItemLayout}
  631. label="客户名称"
  632. >
  633. <span>{this.state.identifyName}</span>
  634. </FormItem>
  635. <FormItem className="half-item"
  636. {...formItemLayout}
  637. label="营销员"
  638. >
  639. <span>{this.state.adminName}</span>
  640. </FormItem>
  641. <FormItem className="half-item"
  642. {...formItemLayout}
  643. label="意向进度"
  644. >
  645. <span>{getfllowSituation(this.state.followSituation)}</span>
  646. </FormItem>
  647. <FormItem className="half-item"
  648. {...formItemLayout}
  649. label="客户状态"
  650. >
  651. <span>{getcustomerStatue(this.state.customerStatus)}</span>
  652. </FormItem>
  653. <div className="clearfix">
  654. <FormItem
  655. labelCol={{ span: 4 }}
  656. wrapperCol={{ span: 16 }}
  657. label="意向说明" >
  658. <span>{this.state.remarks}</span>
  659. </FormItem>
  660. </div>
  661. <div style={{fontSize:'18px',marginLeft:'30px'}}>拜访情况</div>
  662. <FormItem className="half-item"
  663. labelCol={{ span: 8 }}
  664. wrapperCol={{ span: 16 }}
  665. label="拜访方式" >
  666. <span>{getContactType(parseInt(this.state.contactType))}</span>
  667. </FormItem>
  668. <FormItem className="half-item"
  669. {...formItemLayout}
  670. label="当前联系人"
  671. >
  672. <span>{this.state.contacts}</span>
  673. </FormItem>
  674. <FormItem className="half-item"
  675. {...formItemLayout}
  676. label="拜访人"
  677. >
  678. <span>{this.state.adminName}</span>
  679. </FormItem>
  680. <FormItem className="half-item"
  681. {...formItemLayout}
  682. label="拜访时间" >
  683. <span>{this.state.followTime}</span>
  684. </FormItem>
  685. <FormItem
  686. labelCol={{ span: 4 }}
  687. wrapperCol={{ span: 16 }}
  688. label="拜访备注" >
  689. <span>{this.state.result}</span>
  690. </FormItem>
  691. </div>
  692. </Spin>
  693. </Form>
  694. </div>
  695. </Modal>
  696. </div >
  697. );
  698. }
  699. }));
  700. export default ServiceQuery;