serviceQuery.jsx 28 KB

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