Browse Source

新增联系人修改

HW 3 years ago
parent
commit
c0e72f9c92
27 changed files with 1488 additions and 2870 deletions
  1. 83 90
      js/component/common/tabelContent/index.jsx
  2. 3 3
      js/component/manageCenter/customer/NEW/intentionCustomer/followDetail.jsx
  3. 0 250
      js/component/manageCenter/customer/NEW/intentionCustomer/followDetail/addContact.jsx
  4. 16 193
      js/component/manageCenter/customer/NEW/intentionCustomer/intentionDetail/detail/contactPerson.jsx
  5. 59 50
      js/component/manageCenter/customer/NEW/signCustomer/followDetail/addContact.jsx
  6. 14 193
      js/component/manageCenter/customer/NEW/signCustomer/intentionDetail/detail/contactPerson.jsx
  7. 10 0
      js/component/manageCenter/customer/content.jsx
  8. 12 124
      js/component/manageCenter/customer/customerData/myClient.jsx
  9. 12 122
      js/component/manageCenter/customer/customerManagement/expertManage.jsx
  10. 12 123
      js/component/manageCenter/customer/customerManagement/organizationManages.jsx
  11. 12 122
      js/component/manageCenter/customer/customerManagement/personalManages.jsx
  12. 12 123
      js/component/manageCenter/customer/customerManagement/publicManages.jsx
  13. 12 122
      js/component/manageCenter/customer/customerManagement/publicManagesOne.jsx
  14. 12 121
      js/component/manageCenter/customer/customerService/businessManges.jsx
  15. 12 122
      js/component/manageCenter/customer/customerService/myBusiness.jsx
  16. 12 123
      js/component/manageCenter/customer/individualCustomer/individualCustomer.jsx
  17. 0 37
      js/component/manageCenter/customer/individualCustomer/publicQuery.jsx
  18. 12 120
      js/component/manageCenter/customer/individualCustomer/queryCustomer.jsx
  19. 358 0
      js/component/manageCenter/customer/operationalData/interviewStatistics/detailedList.jsx
  20. 434 0
      js/component/manageCenter/customer/operationalData/interviewStatistics/index.jsx
  21. 13 0
      js/component/manageCenter/customer/operationalData/interviewStatistics/index.less
  22. 234 409
      js/component/manageCenter/customer/operationalData/signatureStatistics/detailedList.jsx
  23. 61 176
      js/component/manageCenter/customer/operationalData/signatureStatistics/index.jsx
  24. 12 120
      js/component/manageCenter/customer/release/expertRelease.jsx
  25. 12 120
      js/component/manageCenter/customer/reviewed/expertReview.jsx
  26. 58 6
      js/component/manageCenter/customer/statistics/departmentStatistics/customerDetails.jsx
  27. 1 1
      package.json

+ 83 - 90
js/component/common/tabelContent/index.jsx

@@ -1,5 +1,5 @@
 import React,{Component} from "react";
-import {AutoComplete, Button, DatePicker, Input, message, Select, Spin, Table, Tabs} from "antd";
+import {Form, Button, DatePicker, Input, message, Select, Spin, Table, Tabs} from "antd";
 import {
     ShowModal,
 } from "@/tools";
@@ -9,6 +9,7 @@ import moment from "moment";
 
 const {TabPane} = Tabs;
 const { RangePicker } = DatePicker;
+const FormItem = Form.Item
 
 class TabelContent extends Component{
     constructor(props) {
@@ -158,95 +159,87 @@ class TabelContent extends Component{
             <div>
                 <Tabs defaultActiveKey="1" className="test">
                     <TabPane tab="搜索" key="1">
-                        <div className="user-search" style={{
-                            marginTop:'10px',
-                            marginLeft:'10px',
-                            marginRight:'10px',
-                            display:'flex',
-                            alignItems:'center'
-                        }}>
-                            {
-                                (this.props.searchList || []).map((v,k)=>(
-                                    v.type === 'text' ?
-                                        <span>
-                                            <Input
-                                                key={k}
-                                                placeholder={v.placeholder}
-                                                value={v.value ? v.value : (v.defaultValue || undefined)}
-                                                style={v.style ? v.style : { width: 150, marginRight: 10}}
-                                                onChange={(e) => {
-                                                    searchValues[v.dataKey] = e.target.value
-                                                    this.setState({
-                                                        searchValues:  searchValues
-                                                    });
-                                                }}
-                                            />
-                                        </span> :
-                                        v.type === 'select' || v.type === 'departmentSelect' ?
-                                            <span style={{paddingBottom:'9px'}}>
-                                                <Spin spinning={this.state.departmentLoading}>
-                                                    {
-                                                        <Select
-                                                            key={k}
-                                                            placeholder={v.placeholder}
-                                                            style={v.style ? v.style : { width:200,marginRight: 10}}
-                                                            value={searchValues[v.dataKey] ? searchValues[v.dataKey] : (v.defaultValue || undefined)}
-                                                            onChange={(e) => {
-                                                                searchValues[v.dataKey] = String(e);
-                                                                this.setState({
-                                                                    searchValues:  searchValues
-                                                                });
-                                                            }}>
-                                                            {
-                                                                v.selectOptionList ?
-                                                                    v.selectOptionList:
-                                                                    (
-                                                                        v.type === 'departmentSelect' ?
-                                                                            this.state.contactsOption :
-                                                                            (v.selectList || [])
-                                                                    ).map((v)=>(
-                                                                        <Select.Option
-                                                                            key={v.value}
-                                                                            value={v.value}
-                                                                        >
-                                                                            {v.label}
-                                                                        </Select.Option>
-                                                                    ))
-                                                            }
-                                                        </Select>
-                                                    }
-                                                </Spin>
-                                            </span>: v.type === 'times' ?
-                                                <span style={{display:'flex'}}>
-                                                    <div style={{marginRight:'10px',marginBottom:'10px'}}>{v.title}</div>
-                                                    <span>
-                                                        <RangePicker
-                                                            style={{marginRight:'10px',marginBottom:'10px'}}
-                                                            value={[
-                                                                searchValues[v.dataKey[0]]
-                                                                    ? moment(searchValues[v.dataKey[0]])
-                                                                    : null,
-                                                                searchValues[v.dataKey[1]]
-                                                                    ? moment(searchValues[v.dataKey[1]])
-                                                                    : null,
-                                                            ]}
-                                                            onChange={(data, dataString) => {
-                                                                searchValues[v.dataKey[0]] = String(dataString[0]);
-                                                                searchValues[v.dataKey[1]] = String(dataString[1]);
-                                                                this.setState({
-                                                                    searchValues:  searchValues
-                                                                });
-                                                            }}
-                                                        />
-                                                    </span>
-                                                </span>:
-                                            null
-                                ))
-                            }
-                            <Button type="primary" onClick={()=>{
-                                this.loadData();
-                            }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>
-                            <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>
+                        <div className="user-search" style={{paddingTop:'10px'}}>
+                            <Form layout="inline">
+                                {
+                                    (this.props.searchList || []).map((v,k)=>(
+                                        v.type === 'text' ?
+                                            <FormItem label={v.title}>
+                                                <Input
+                                                    key={k}
+                                                    placeholder={v.placeholder}
+                                                    value={v.value ? v.value : (v.defaultValue || undefined)}
+                                                    style={v.style ? v.style : { width: 150, marginRight: 10}}
+                                                    onChange={(e) => {
+                                                        searchValues[v.dataKey] = e.target.value
+                                                        this.setState({
+                                                            searchValues:  searchValues
+                                                        });
+                                                    }}
+                                                />
+                                            </FormItem> :
+                                            v.type === 'select' || v.type === 'departmentSelect' ?
+                                                <FormItem label={v.title} style={{marginTop:'-8px'}}>
+                                                    <Spin spinning={this.state.departmentLoading}>
+                                                        {
+                                                            <Select
+                                                                key={k}
+                                                                placeholder={v.placeholder}
+                                                                style={v.style ? v.style : { width:200,marginRight: 10}}
+                                                                value={searchValues[v.dataKey] ? searchValues[v.dataKey] : (v.defaultValue || undefined)}
+                                                                onChange={(e) => {
+                                                                    searchValues[v.dataKey] = String(e);
+                                                                    this.setState({
+                                                                        searchValues:  searchValues
+                                                                    });
+                                                                }}>
+                                                                {
+                                                                    v.selectOptionList ?
+                                                                        v.selectOptionList():
+                                                                        (
+                                                                            v.type === 'departmentSelect' ?
+                                                                                this.state.contactsOption :
+                                                                                (v.selectList || [])
+                                                                        ).map((v)=>(
+                                                                            <Select.Option
+                                                                                key={v.value}
+                                                                                value={v.value}
+                                                                            >
+                                                                                {v.label}
+                                                                            </Select.Option>
+                                                                        ))
+                                                                }
+                                                            </Select>
+                                                        }
+                                                    </Spin>
+                                                </FormItem>: v.type === 'times' ?
+                                                <FormItem label={v.title}>
+                                                    <RangePicker
+                                                        style={{marginRight:'10px',marginTop: '2px'}}
+                                                        value={[
+                                                            searchValues[v.dataKey[0]]
+                                                                ? moment(searchValues[v.dataKey[0]])
+                                                                : null,
+                                                            searchValues[v.dataKey[1]]
+                                                                ? moment(searchValues[v.dataKey[1]])
+                                                                : null,
+                                                        ]}
+                                                        onChange={(data, dataString) => {
+                                                            searchValues[v.dataKey[0]] = String(dataString[0]);
+                                                            searchValues[v.dataKey[1]] = String(dataString[1]);
+                                                            this.setState({
+                                                                searchValues:  searchValues
+                                                            });
+                                                        }}
+                                                    />
+                                                </FormItem>: null
+                                    ))
+                                }
+                                <Button type="primary" onClick={()=>{
+                                    this.loadData();
+                                }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>
+                                <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>
+                            </Form>
                         </div>
                     </TabPane>
                     <TabPane tab="更改表格显示数据" key="2">

+ 3 - 3
js/component/manageCenter/customer/NEW/intentionCustomer/followDetail.jsx

@@ -5,7 +5,7 @@ import {Modal,Form,layout,Radio,Button,Input,Spin,Table,Select,Popconfirm,messag
 import {intentionalService,newFollow,customerStatus} from '@/dataDic.js';
 import {getCompanyIntention} from '@/tools.js';
 const FormItem =Form.Item;
-import AddContact from './followDetail/addContact.jsx';
+import AddContact from "../signCustomer/followDetail/addContact";
 import BusName from './followDetail/businessName.jsx';
 
 const FollowDetail = React.createClass({
@@ -556,9 +556,9 @@ const FollowDetail = React.createClass({
           </Form>
         </Modal>
         <AddContact
-          addcontactModul={this.state.addcontactModul}
+		  addcontactModul={this.state.addcontactModul}
           uids={this.state.uids}
-          closeFollow={this.closeFollow}
+		  closeFollow={this.closeFollow}
         />
         <BusName
           businessId={this.state.businessId}

+ 0 - 250
js/component/manageCenter/customer/NEW/intentionCustomer/followDetail/addContact.jsx

@@ -1,250 +0,0 @@
-import React from 'react';
-import { Modal, message, layout, Spin, Input,  Button, Form, Row, Col, Radio } from 'antd';
-import ajax from 'jquery/src/ajax/xhr.js';
-import $ from 'jquery/src/ajax';
-const FormItem =Form.Item;
-
-const AddContact = React.createClass({
-	getInitialState() {
-		return {
-			addcontactModul: false,
-		}
-	},
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		})
-		this.props.closeFollow(true, true)
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		})
-		this.props.closeFollow(false, false)
-	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault();
-		if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.newname)) {
-		} else {
-			message.error("请填写正确的姓名,且至少包含一个汉字");
-			return ;
-		};
-		if(this.state.newmobile.length!=11){
-			message.error('请填写正确的手机号码');
-		  return
-		}
-		if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.newdepatrment)) {
-		} else {
-			message.error("请填写正确的部门,且至少包含一个汉字");
-			return;
-		};
-		if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.newposition)) {
-		} else {
-			message.error("请填写正确的职位,且至少包含一个汉字");
-			return;
-		};
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uid,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
-	componentWillReceiveProps(nextProps) {
-		if(nextProps.addcontactModul && nextProps.uids) {
-			this.setState({
-				newsex: undefined,
-				newname: '',
-				newmobile: '',
-				newwechat: '',
-				newqq: '',
-				newdepatrment: '',
-				newposition: '',
-				newemail: '',
-				addcontactModul: true,
-				uid: nextProps.uids,
-				loading:false
-			})
-		};
-
-	},
-	render() {
-		return (
-      <div>
-        <Modal
-          maskClosable={false}
-          footer=""
-          width="800px"
-          title="新增联系人"
-          visible={this.state.addcontactModul}
-          onOk={this.addcontactModulOK}
-          onCancel={this.addcontactModulcancel}
-        >
-          <Form
-            layout="horizontal"
-            onSubmit={this.submitcontactman}
-            id="demand-form"
-          >
-            <Spin spinning={this.state.loading}>
-              <Row>
-                <FormItem
-                  labelCol={{ span: 3 }}
-                  wrapperCol={{ span: 14 }}
-                  label="性别:"
-                  style={{ marginRight: "10px", marginTop: "-15px" }}
-                >
-                  <Radio.Group
-                    value={this.state.newsex}
-                    onChange={(e) => {
-                      this.setState({ newsex: e.target.value });
-                    }}
-                  >
-                    <Radio value="男">男</Radio>
-                    <Radio value="女">女</Radio>
-                  </Radio.Group>
-                </FormItem>
-              </Row>
-              <Row style={{ paddingLeft: "50px" }}>
-                <Col span={2}>
-                  <span style={{ color: "red" }}>*</span>姓名:
-                </Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newname}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newname: e.target.value });
-                    }}
-                  />
-                </Col>
-                <Col span={2} style={{ marginLeft: "50px" }}>
-                  <span style={{ color: "red" }}>*</span>手机:
-                </Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newmobile}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newmobile: e.target.value });
-                    }}
-                  />
-                </Col>
-              </Row>
-              <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
-                <Col span={2}>微信:</Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newwechat}
-                    onChange={(e) => {
-                      this.setState({ newwechat: e.target.value });
-                    }}
-                  />
-                </Col>
-                <Col span={2} style={{ marginLeft: "50px" }}>
-                  Q Q:
-                </Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newqq}
-                    onChange={(e) => {
-                      this.setState({ newqq: e.target.value });
-                    }}
-                  />
-                </Col>
-              </Row>
-              <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
-                <Col span={2}>
-                  <span style={{ color: "red" }}>*</span>部门:
-                </Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newdepatrment}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newdepatrment: e.target.value });
-                    }}
-                  />
-                </Col>
-                <Col span={2} style={{ marginLeft: "50px" }}>
-                  <span style={{ color: "red" }}>*</span>
-                  职位:
-                </Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newposition}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newposition: e.target.value });
-                    }}
-                  />
-                </Col>
-              </Row>
-              <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
-                <Col span={2}>邮箱:</Col>
-                <Col span={8}>
-                  <Input
-                    value={this.state.newemail}
-                    onChange={(e) => {
-                      this.setState({ newemail: e.target.value });
-                    }}
-                  />
-                </Col>
-              </Row>
-              <Row
-                style={{
-                  marginTop: "20px",
-                  paddingLeft: "50px",
-                  marginBottom: "50px",
-                }}
-              >
-                <Button
-                  className="set-submit"
-                  type="primary"
-                  htmlType="submit"
-                  id="change_keep"
-                  style={{ marginLeft: "60px" }}
-                >
-                  保存
-                </Button>
-                <Button
-                  className="set-submit"
-                  type="ghost"
-                  onClick={this.addcontactModulcancel}
-                  id="change_rem"
-                >
-                  取消
-                </Button>
-              </Row>
-            </Spin>
-          </Form>
-        </Modal>
-      </div>
-    );
-	}
-})
-export default AddContact;

+ 16 - 193
js/component/manageCenter/customer/NEW/intentionCustomer/intentionDetail/detail/contactPerson.jsx

@@ -1,33 +1,20 @@
 import React from "react";
 import {
-  Form,
   Table,
   Button,
   Spin,
   message,
-  Input,
-  Modal,
   Popconfirm,
-  Col,
-  Row,
-  Alert
+  Alert,
 } from "antd";
-import ajax from "jquery/src/ajax/xhr.js";
 import $ from "jquery/src/ajax";
 import EnterpriseNameChange from '../../../../../../../component/common/enterpriseNameChange';
+import AddContact from "../../../signCustomer/followDetail/addContact";
 
 const ContactPerson = React.createClass({
   getInitialState() {
     return {
-      newContacts:[],
-      nameModal: "",
-      mobileModal: "",
-      emailModal: "",
-      qqModal: "",
-      wechatModal: "",
-      departmentModal: "",
-      positionModal: "",
-      fixedTelModal:"",
+      major:0,
       loading: false,
       addcontactModul:false,
       enterpriseName:'',
@@ -307,98 +294,6 @@ const ContactPerson = React.createClass({
       addcontactModul: true
     });
   },
-  // 取消新增
-  addcontactModulcancel(){
-    this.setState({
-      addcontactModul: false,
-      nameModal: "",
-      mobileModal: "",
-      emailModal: "",
-      qqModal: "",
-      wechatModal: "",
-      departmentModal: "",
-      positionModal: "",
-      fixedTelModal:"",
-    });
-  },
-  //tab2联系人保存
-  contactSave(e) {
-    e.preventDefault();
-    if (this.state.nameModal.length == 0 ) {
-      message.error("请填写姓名");
-      return;
-    }
-    if(/.*[\u4e00-\u9fa5]+.*$/.test(this.state.nameModal))   {
-
-    }else{
-      message.error("请填写正确的姓名,且至少包含一个汉字");
-      return;
-    }
-    if(this.state.mobileModal.length!=11){
-        message.error('请填写正确的手机号码');
-      return
-    }
-    if(this.state.departmentModal.length==0){
-        message.error('请填写部门');
-      return
-    }
-    if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.departmentModal)) {
-    } else {
-      message.error("请填写正确的部门,且至少包含一个汉字");
-      return;
-    }
-    if(this.state.positionModal.length==0){
-        message.error('请填写职位');
-      return
-    }
-    if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.positionModal)) {
-    } else {
-      message.error("请填写正确的职位,且至少包含一个汉字");
-      return;
-    }
-    this.setState({
-      loading: true
-    });
-    $.ajax({
-      url: globalConfig.context + "/api/admin/customer/addOneContact",
-      method: "post",
-      data: {
-        uid: this.props.data.id,
-        name: this.state.nameModal,
-        mobile: this.state.mobileModal,
-        email: this.state.emailModal,
-        qq:this.state.qqModal,
-        wechat: this.state.wechatModal,
-        department: this.state.departmentModal,
-        position: this.state.positionModal,
-        fixedTel:this.state.fixedTelModal,
-      }
-    }).done(
-      function(data) {
-        this.setState({
-          loading: false
-        });
-        if (!data.error.length) {
-          message.success("保存成功!");
-          // this.props.closeDetail(false, true);
-          this.setState({
-            addcontactModul: false,
-            nameModal: "",
-            mobileModal: "",
-            emailModal: "",
-            qqModal: "",
-            wechatModal: "",
-            departmentModal: "",
-            positionModal: "",
-            fixedTelModal:"",
-          });
-          this.contactLists()
-        } else {
-          message.warning(data.error[0].message);
-        }
-      }.bind(this)
-    );
-  },
   componentWillMount() {
     this.contactLists(this.props.data.id);
   },
@@ -447,97 +342,25 @@ const ContactPerson = React.createClass({
         </div>
         <div className="clearfix">
           <Spin spinning={this.state.loading}>
-            <Form
-              layout="horizontal"
-              id="demand-form"
-              onSubmit={this.contactSave}
-            >
-              <Table
+            <Table
                 pagination={false}
                 columns={this.state.ContactsLists}
                 dataSource={this.state.contactList}
-              />
-              {/* <Col span={24} offset={9} style={{ marginTop: "15px" }}>
-                <Button type="primary" htmlType="submit">
-                  保存
-                </Button>
-                <Button
-                  type="ghost"
-                  onClick={this.detailsModal}
-                  style={{ marginLeft: "100px" }}
-                >
-                  取消
-                </Button>
-              </Col> */}
-            </Form>
+            />
           </Spin>
         </div>
         {/* 新增联系人 */}
-        {this.state.addcontactModul ? <Modal
-              maskClosable={false}
-              footer=''
-              width='800px'
-              title="新增联系人"
-              visible={this.state.addcontactModul}
-              onOk={this.contactSave}
-              onCancel={this.addcontactModulcancel}>
-              <Form layout="horizontal" onSubmit={this.submitcontactman} id="demand-form">
-              <Spin spinning={this.state.loading}>
-                <Row style={{ paddingLeft:'50px' }}>
-                  <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => {this.setState({ nameModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => { this.setState({ mobileModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                  <Col span={2}><span style={{color:'red'}}>*</span>部门:</Col>
-                  <Col span={8}>
-                      <Input  required="required"
-                          onChange={(e) => { this.setState({ departmentModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>职位:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => { this.setState({ positionModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                      <Col span={2}>微信:</Col>
-                        <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ wechatModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ qqModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                      <Col span={2}>邮箱:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ emailModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}>座机:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ fixedTelModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                    <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}} onClick={this.contactSave}>保存</Button>
-                    <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-                  </Row>
-                </Spin>
-            </Form>
-			    </Modal> : <div/>}
+        <AddContact
+            addcontactModul={this.state.addcontactModul}
+            uids={this.props.data.id}
+            closeFollow={()=>{
+              this.setState({
+                addcontactModul:false
+              },()=>{
+                this.contactLists()
+              })
+            }}
+        />
       </div>
     );
   }

+ 59 - 50
js/component/manageCenter/customer/NEW/signCustomer/followDetail/addContact.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Modal, message, layout, Spin, Input,  Button, Form, Row, Col, Radio } from 'antd';
+import {Modal, message, layout, Spin, Input, Button, Form, Row, Col, Radio, Select} from 'antd';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 const FormItem =Form.Item;
@@ -8,6 +8,7 @@ const AddContact = React.createClass({
 	getInitialState() {
 		return {
 			addcontactModul: false,
+            major:0,
 		}
 	},
 	addcontactModulOK() {
@@ -57,6 +58,8 @@ const AddContact = React.createClass({
 				name: this.state.newname,
 				mobile: this.state.newmobile,
 				email: this.state.newemail,
+                fixedTel:this.state.fixedTelModal,
+                major: this.state.major,
 				wechat: this.state.newwechat,
 				depatrment: this.state.newdepatrment,
 				position: this.state.newposition,
@@ -65,6 +68,7 @@ const AddContact = React.createClass({
 			},
 			success: function(data) {
 				if(!data.error.length) {
+                    message.success('添加成功')
 					this.addcontactModulOK()
 					this.setState({
 						loading: false,
@@ -86,6 +90,8 @@ const AddContact = React.createClass({
 				newdepatrment: '',
 				newposition: '',
 				newemail: '',
+                fixedTelModal:'',
+                major:0,
 				addcontactModul: true,
 				uid: nextProps.uids,
 				loading:false
@@ -101,7 +107,6 @@ const AddContact = React.createClass({
           width="800px"
           title="新增联系人"
           visible={this.state.addcontactModul}
-          onOk={this.addcontactModulOK}
           onCancel={this.addcontactModulcancel}
         >
           <Form
@@ -110,24 +115,6 @@ const AddContact = React.createClass({
             id="demand-form"
           >
             <Spin spinning={this.state.loading}>
-              <Row>
-                <FormItem
-                  labelCol={{ span: 3 }}
-                  wrapperCol={{ span: 14 }}
-                  label="性别:"
-                  style={{ marginRight: "10px", marginTop: "-15px" }}
-                >
-                  <Radio.Group
-                    value={this.state.newsex}
-                    onChange={(e) => {
-                      this.setState({ newsex: e.target.value });
-                    }}
-                  >
-                    <Radio value="男">男</Radio>
-                    <Radio value="女">女</Radio>
-                  </Radio.Group>
-                </FormItem>
-              </Row>
               <Row style={{ paddingLeft: "50px" }}>
                 <Col span={2}>
                   <span style={{ color: "red" }}>*</span>姓名:
@@ -154,6 +141,32 @@ const AddContact = React.createClass({
                   />
                 </Col>
               </Row>
+                <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
+                    <Col span={2}>
+                        <span style={{ color: "red" }}>*</span>部门:
+                    </Col>
+                    <Col span={8}>
+                        <Input
+                            value={this.state.newdepatrment}
+                            required="required"
+                            onChange={(e) => {
+                                this.setState({ newdepatrment: e.target.value });
+                            }}
+                        />
+                    </Col>
+                    <Col span={2} style={{ marginLeft: "50px" }}>
+                        <span style={{ color: "red" }}>*</span>职位:
+                    </Col>
+                    <Col span={8}>
+                        <Input
+                            value={this.state.newposition}
+                            required="required"
+                            onChange={(e) => {
+                                this.setState({ newposition: e.target.value });
+                            }}
+                        />
+                    </Col>
+                </Row>
               <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
                 <Col span={2}>微信:</Col>
                 <Col span={8}>
@@ -176,43 +189,39 @@ const AddContact = React.createClass({
                   />
                 </Col>
               </Row>
-              <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
-                <Col span={2}>
-                  <span style={{ color: "red" }}>*</span>部门:
-                </Col>
+            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
+                <Col span={2}>邮箱:</Col>
                 <Col span={8}>
-                  <Input
-                    value={this.state.newdepatrment}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newdepatrment: e.target.value });
-                    }}
-                  />
+                    <Input
+                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
                 </Col>
-                <Col span={2} style={{ marginLeft: "50px" }}>
-                  <span style={{ color: "red" }}>*</span>职位:
+                <Col span={2} style={{ marginLeft: '50px' }}>座机:</Col>
+                <Col span={8}>
+                    <Input
+                        onChange={(e) => { this.setState({ fixedTelModal: e.target.value }) }} />
                 </Col>
+            </Row>
+            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
+                <Col span={2}><span style={{whiteSpace:'nowrap',marginLeft:'-36px'}}>主要联系人:</span></Col>
                 <Col span={8}>
-                  <Input
-                    value={this.state.newposition}
-                    required="required"
-                    onChange={(e) => {
-                      this.setState({ newposition: e.target.value });
-                    }}
-                  />
+                    <Select value={this.state.major} onChange={(e) => { this.setState({ major: e }) }}>
+                        <Select.Option value={1}>是</Select.Option>
+                        <Select.Option value={0}>否</Select.Option>
+                    </Select>
                 </Col>
-              </Row>
-              <Row style={{ marginTop: "20px", paddingLeft: "50px" }}>
-                <Col span={2}>邮箱:</Col>
+                <Col span={2} style={{ marginLeft: "50px" }}><span>性别:</span></Col>
                 <Col span={8}>
-                  <Input
-                    value={this.state.newemail}
-                    onChange={(e) => {
-                      this.setState({ newemail: e.target.value });
-                    }}
-                  />
+                    <Radio.Group
+                        value={this.state.newsex}
+                        onChange={(e) => {
+                            this.setState({ newsex: e.target.value });
+                        }}
+                    >
+                        <Radio value="男">男</Radio>
+                        <Radio value="女">女</Radio>
+                    </Radio.Group>
                 </Col>
-              </Row>
+            </Row>
               <Row
                 style={{
                   marginTop: "20px",

+ 14 - 193
js/component/manageCenter/customer/NEW/signCustomer/intentionDetail/detail/contactPerson.jsx

@@ -1,33 +1,19 @@
 import React from "react";
 import {
-  Form,
   Table,
   Button,
   Spin,
   message,
-  Input,
-  Modal,
   Popconfirm,
-  Col,
-  Row,
   Alert
 } from "antd";
-import ajax from "jquery/src/ajax/xhr.js";
 import $ from "jquery/src/ajax";
 import EnterpriseNameChange from "../../../../../../common/enterpriseNameChange";
+import AddContact from "../../followDetail/addContact";
 
 const ContactPerson = React.createClass({
   getInitialState() {
     return {
-      newContacts:[],
-      nameModal: "",
-      mobileModal: "",
-      emailModal: "",
-      qqModal: "",
-      wechatModal: "",
-      departmentModal: "",
-      positionModal: "",
-      fixedTelModal:"",
       loading: false,
       addcontactModul:false,
       ContactsLists: [
@@ -306,97 +292,6 @@ const ContactPerson = React.createClass({
       addcontactModul: true
     });
   },
-  // 取消新增
-  addcontactModulcancel(){
-    this.setState({
-      addcontactModul: false,
-      nameModal: "",
-      mobileModal: "",
-      emailModal: "",
-      qqModal: "",
-      wechatModal: "",
-      departmentModal: "",
-      positionModal: "",
-      fixedTelModal:"",
-    });
-  },
-  //tab2联系人保存
-  contactSave(e) {
-    e.preventDefault();
-    if(this.state.nameModal.length==0){
-        message.error('请填写姓名');
-      return
-    }
-    if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.nameModal)) {
-    } else {
-      message.error("请填写正确的姓名,且至少包含一个汉字");
-      return;
-    }
-    if (this.state.mobileModal.length != 11) {
-      message.error("请填写正确的手机号码");
-      return;
-    }
-    if (this.state.departmentModal.length == 0) {
-      message.error("请填写部门");
-      return;
-    }
-    if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.departmentModal)) {
-    } else {
-      message.error("请填写正确的部门,且至少包含一个汉字");
-      return;
-    }
-    if (this.state.positionModal.length == 0) {
-      message.error("请填写职位");
-      return;
-    }
-    if (/.*[\u4e00-\u9fa5]+.*$/.test(this.state.positionModal)) {
-    } else {
-      message.error("请填写正确的职位,且至少包含一个汉字");
-      return;
-    }
-    this.setState({
-      loading: true
-    });
-    $.ajax({
-      url: globalConfig.context + "/api/admin/customer/addOneContact",
-      method: "post",
-      data: {
-        uid: this.props.data.id,
-        name: this.state.nameModal,
-        mobile: this.state.mobileModal,
-        email: this.state.emailModal,
-        qq:this.state.qqModal,
-        wechat: this.state.wechatModal,
-        department: this.state.departmentModal,
-        position: this.state.positionModal,
-        fixedTel:this.state.fixedTelModal,
-      }
-    }).done(
-      function(data) {
-        this.setState({
-          loading: false
-        });
-        if (!data.error.length) {
-          message.success("保存成功!");
-          // this.props.closeDetail(false, true);
-          this.setState({
-            addcontactModul: false,
-            nameModal: "",
-            mobileModal: "",
-            emailModal: "",
-            qqModal: "",
-            wechatModal: "",
-            departmentModal: "",
-            positionModal: "",
-            fixedTelModal:"",
-          });
-          this.contactLists()
-        } else {
-          message.warning(data.error[0].message);
-        }
-      }.bind(this)
-    );
-  },
   componentWillMount() {
     this.contactLists(this.props.data.id);
   },
@@ -445,99 +340,25 @@ const ContactPerson = React.createClass({
         </div>
         <div className="clearfix">
           <Spin spinning={this.state.loading}>
-            <Form
-              layout="horizontal"
-              id="demand-form"
-              onSubmit={this.contactSave}
-            >
-              <Table
+            <Table
                 size="middle"
                 pagination={false}
                 columns={this.state.ContactsLists}
                 dataSource={this.state.contactList}
-              />
-              {/* <Col span={24} offset={9} style={{ marginTop: "15px" }}>
-                <Button type="primary" htmlType="submit">
-                  保存
-                </Button>
-                <Button
-                  type="ghost"
-                  onClick={this.detailsModal}
-                  style={{ marginLeft: "100px" }}
-                >
-                  取消
-                </Button>
-              </Col> */}
-            </Form>
+            />
           </Spin>
         </div>
-        {/* 新增联系人 */}
-        <Modal
-              maskClosable={false}
-              footer=''
-              width='800px'
-              title="新增联系人"
-              visible={this.state.addcontactModul}
-              onOk={this.contactSave}
-              onCancel={this.addcontactModulcancel}
-                  >
-              <Form layout="horizontal" onSubmit={this.submitcontactman} id="demand-form">
-              <Spin spinning={this.state.loading}>
-                <Row style={{ paddingLeft:'50px' }}>
-                  <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => {this.setState({ nameModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => { this.setState({ mobileModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                  <Col span={2}><span style={{color:'red'}}>*</span>部门:</Col>
-                  <Col span={8}>
-                      <Input  required="required"
-                          onChange={(e) => { this.setState({ departmentModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>职位:</Col>
-                      <Col span={8}>
-                          <Input required="required"
-                              onChange={(e) => { this.setState({ positionModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                      <Col span={2}>微信:</Col>
-                        <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ wechatModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ qqModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                      <Col span={2}>邮箱:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ emailModal: e.target.value }) }} />
-                      </Col>
-                      <Col span={2} style={{ marginLeft: '50px' }}>座机:</Col>
-                      <Col span={8}>
-                          <Input
-                              onChange={(e) => { this.setState({ fixedTelModal: e.target.value }) }} />
-                      </Col>
-                  </Row>
-                  <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                    <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}} onClick={this.contactSave}>保存</Button>
-                    <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-                  </Row>
-                </Spin>
-            </Form>
-			    </Modal>
+        <AddContact
+            addcontactModul={this.state.addcontactModul}
+            uids={this.props.data.id}
+            closeFollow={()=>{
+              this.setState({
+                addcontactModul:false
+              },()=>{
+                this.contactLists()
+              })
+            }}
+        />
       </div>
     );
   }

+ 10 - 0
js/component/manageCenter/customer/content.jsx

@@ -2,6 +2,7 @@ import React, { Component } from 'react';
 import '../content.less';
 import LeftTab from '../leftTab';
 import {getMenu} from '../publicMenu.js'
+import {default as SignatureStatistics} from "./operationalData/signatureStatistics";
 
 class Content extends Component {
     constructor() {
@@ -651,6 +652,15 @@ class Content extends Component {
                     });
                 });
                 break;
+            //面谈统计表
+            case 'interviewStatistics':
+                require.ensure([], () => {
+                    const InterviewStatistics = require('./operationalData/interviewStatistics').default;
+                    this.setState({
+                        component: <InterviewStatistics/>
+                    });
+                });
+                break;
             //公出统计
             case 'publicStatistics':
                 require.ensure([], () => {

+ 12 - 124
js/component/manageCenter/customer/customerData/myClient.jsx

@@ -10,6 +10,7 @@ const TabPane = Tabs.TabPane;
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, newFollow, auditStatusL, lvl, currentMember, cityArr, statuslist, customerStatus, intentionalService, sex } from '../../../dataDic.js';
 import { getCompanyIntention, splitUrl, getIndustry, getStatuslist, getAuditStatus, getContactType, getSocialAttribute, getfllowSituation, beforeUploadFile, getWhether, getcityArr, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 //图片组件
 const PicturesWall = React.createClass({
@@ -112,7 +113,6 @@ const MyClient = Form.create()(React.createClass({
 							id: thisdata.uid,
 							type: thisdata.type,
 							name: thisdata.name,
-							status: thisdata.status,
 							contacts: thisdata.contacts,
 							contactMobile: thisdata.contactMobile,
 							industry: thisdata.industry,
@@ -185,7 +185,6 @@ const MyClient = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1082,7 +1081,6 @@ const MyClient = Form.create()(React.createClass({
 						international: this.state.international,
 						orgCode: this.state.orgCode,
 						businessScope: this.state.businessScope,
-						introduction: this.state.introduction,
 						companyLogoUrl: thecompanyLogoUrl!=0?thecompanyLogoUrl:'',
 						orgCodeUrl: theorgCodeUrl!=0?theorgCodeUrl:'',
 						investment: this.state.investment,
@@ -1402,17 +1400,6 @@ const MyClient = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex = undefined;
@@ -1428,41 +1415,6 @@ const MyClient = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault()
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2772,81 +2724,17 @@ const MyClient = Form.create()(React.createClass({
 							</Form>
 						</div>
     			</Modal>
-			    <Modal
-					  maskClosable={false}
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}>
-					        <Row>
-			                    <FormItem
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value })
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>
-							</Row>
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal
 					  maskClosable={false}
 				      footer=''

+ 12 - 122
js/component/manageCenter/customer/customerManagement/expertManage.jsx

@@ -12,6 +12,7 @@ const monthFormat = 'YYYY/MM';
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 //图片组件
 const PicturesWall = React.createClass({
 	getInitialState() {
@@ -98,7 +99,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				international: this.state.internationalSearch,
 				celebrity: this.state.celebritySearch,
 				expert: 1,
-				industry: this.state.industrySearch,
 				shareType: this.state.shareTypeSearch,
 				
 			},
@@ -131,7 +131,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -195,7 +194,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1390,17 +1388,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1416,40 +1403,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2751,80 +2704,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 12 - 123
js/component/manageCenter/customer/customerManagement/organizationManages.jsx

@@ -11,6 +11,7 @@ const TabPane = Tabs.TabPane;
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, newFollow, auditStatusL, lvl, currentMember, cityArr, statuslist, customerStatus, intentionalService, sex } from '../../../dataDic.js';
 import { getIndustry,splitUrl, getAuditStatus, getSocialAttribute, getCompanyIntention, getContactType, getStatuslist, getfllowSituation, beforeUploadFile, getWhether, getcityArr, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 //图片组件
 const PicturesWall = React.createClass({
@@ -94,7 +95,6 @@ const PublicCustomer = Form.create()(React.createClass({
 				currentMemberStatus: this.state.currentMemberStatusSearch,
 				international: this.state.internationalSearch,
 				lvl: this.state.lvlSearch,
-				international: this.state.internationalSearch,
 				societyTag: this.state.societyTagSearch,
 				listed: this.state.listedSearch, //是否上市
 				highTechZone: this.state.highTechZoneSearch, //是否高新
@@ -188,7 +188,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1115,7 +1114,6 @@ const PublicCustomer = Form.create()(React.createClass({
 						listed: this.state.listed,
 						orgCode: this.state.orgCode,
 						businessScope: this.state.businessScope,
-						introduction: this.state.introduction,
 						companyLogoUrl: thecompanyLogoUrl,
 						orgCodeUrl: theorgCodeUrl,
 						investment: this.state.investment,
@@ -1445,17 +1443,6 @@ const PublicCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1471,41 +1458,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault();
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2714,80 +2666,17 @@ const PublicCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 12 - 122
js/component/manageCenter/customer/customerManagement/personalManages.jsx

@@ -12,6 +12,7 @@ const monthFormat = 'YYYY/MM';
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 //图片组件
 const PicturesWall = React.createClass({
 	getInitialState() {
@@ -98,7 +99,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				international: this.state.internationalSearch,
 				celebrity: this.state.celebritySearch,
 				expert: this.state.expertSearch,
-				industry: this.state.industrySearch,
 				shareType: this.state.shareTypeSearch,
 				
 			},
@@ -131,7 +131,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -195,7 +194,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1434,17 +1432,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1460,40 +1447,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2820,80 +2773,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 12 - 123
js/component/manageCenter/customer/customerManagement/publicManages.jsx

@@ -13,6 +13,7 @@ import CustomerDetail from './myClientDesc.jsx';
 import QueryCustomer from './publicManagesOne.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getfllowSituation,  getWhether, getcustomerStatue,  getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 
 
@@ -138,7 +139,6 @@ const PublicCustomer = Form.create()(React.createClass({
 				currentMemberStatus: this.state.currentMemberStatusSearch,
 				international: this.state.internationalSearch,
 				lvl: this.state.lvlSearch,
-				international: this.state.internationalSearch,
 				societyTag: this.state.societyTagSearch,
 				listed: this.state.listedSearch, //是否上市
 				highTechZone: this.state.highTechZoneSearch, //是否高新
@@ -232,7 +232,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1158,7 +1157,6 @@ const PublicCustomer = Form.create()(React.createClass({
 						listed: this.state.listed,
 						orgCode: this.state.orgCode,
 						businessScope: this.state.businessScope,
-						introduction: this.state.introduction,
 						companyLogoUrl: thecompanyLogoUrl,
 						orgCodeUrl: theorgCodeUrl,
 						investment: this.state.investment,
@@ -1488,17 +1486,6 @@ const PublicCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1514,41 +1501,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault();
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2768,80 +2720,17 @@ const PublicCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 12 - 122
js/component/manageCenter/customer/customerManagement/publicManagesOne.jsx

@@ -13,6 +13,7 @@ import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
 import ImgList from "../../../common/imgList";
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 //图片组件
 const PicturesWall = React.createClass({
@@ -129,7 +130,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				province: !(this.state.addressSearch).length ? this.state.provinceSearch : this.state.addressSearch[0],
 				city: !(this.state.addressSearch).length ? '' : this.state.addressSearch[1],
 				status: this.state.statusSearch,
-				industry: this.state.industrySearch,
 				businessAudit: this.state.serviceCertificationSearch,
 				auditStatus: this.state.userCertificationSearch,
 				currentMemberStatus: this.state.currentMemberStatusSearch,
@@ -174,7 +174,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -238,7 +237,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1427,17 +1425,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1453,40 +1440,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2803,80 +2756,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.props.data.id}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 12 - 121
js/component/manageCenter/customer/customerService/businessManges.jsx

@@ -9,6 +9,7 @@ import './myClient.less';
 const { Column, ColumnGroup } = Table;
 import {socialAttribute,newFollow,lvl, customerStatus,intentionalService} from '../../../dataDic.js';
 import {getcustomerStatue,getprovince,getCompanyIntention,getfllowSituation,getContactType } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 const MyBusiness = Form.create()(React.createClass({	
     loadData(pageNo, apiUrl) {
@@ -111,7 +112,6 @@ const MyBusiness = Form.create()(React.createClass({
             companyLogoUrl:[],
         	visible: false ,
             searchMore: true,           
-            releaseDate: [],            
             releaseDate: [],
             selectedRowKeys: [],
             selectedRowKey: [],
@@ -487,17 +487,6 @@ const MyBusiness = Form.create()(React.createClass({
     		visitModul:false,
     	})
     },
-	//新增联系人
-	addcontactModulOK(){
-		this.setState({ 
-	    	addcontactModul:false
-	    });
-	},
-	addcontactModulcancel(){
-		this.setState({ 
-	    	addcontactModul:false
-	    });
-	},
 	businessFollowOk(){
 		this.setState({ 
 	    	businessFollowModul:false
@@ -527,41 +516,6 @@ const MyBusiness = Form.create()(React.createClass({
 		  	 message.warning('请输入客户名称')
 		  }
 	},
-	//新增联系人保存函数
-	submitcontactman(e){
-		e.preventDefault();
-		this.setState({
-			loading:true
-		})
-		$.ajax({
-                method: "post",
-                dataType: "json",
-                crossDomain: false,
-                url: globalConfig.context + "/api/admin/customer/addOneContact",
-                data:{
-                   uid:this.state.uids,
-                   name:this.state.newname,
-                   mobile:this.state.newmobile,
-                   email:this.state.newemail,
-                   wechat:this.state.newwechat,
-                   depatrment:this.state.newdepatrment,
-                   position:this.state.newposition, 
-                   sex:this.state.newsex,
-                   qq:this.state.newqq
-                },
-                success: function (data) {                	  
-                		if (!data.error.length) {
-                			this.addcontactModulOK()
-                			this.getNewWoman(this.state.uids)
-			                this.setState({
-			                    loading: false,
-			                })
-		            } else {
-		                message.warning(data.error[0].message);
-		            };
-		        }.bind(this)
-		     });
-	},
 	//跟进
     addModify(e) {
         this.addTime(); 
@@ -1399,80 +1353,17 @@ const MyBusiness = Form.create()(React.createClass({
 					    </Spin>
 					</Form>		
 				</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+                <AddContact
+                    addcontactModul={this.state.addcontactModul}
+                    uids={this.state.uids}
+                    closeFollow={()=>{
+                        this.setState({
+                            addcontactModul:false
+                        },()=>{
+                            this.getNewWoman(this.state.uids)
+                        })
+                    }}
+                />
     			<Modal	
 				      footer=''
 			          title="业务跟进详情"

+ 12 - 122
js/component/manageCenter/customer/customerService/myBusiness.jsx

@@ -10,6 +10,7 @@ import './myClient.less';
 const { Column, ColumnGroup } = Table;
 import {socialAttribute,newFollow,lvl, customerStatus,intentionalService} from '../../../dataDic.js';
 import {getcustomerStatue,getprovince,getCompanyIntention,getfllowSituation,getContactType } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 
 const MyBusiness = Form.create()(React.createClass({
     loadData(pageNo, apiUrl) {
@@ -113,7 +114,6 @@ const MyBusiness = Form.create()(React.createClass({
         	visible: false ,
             searchMore: true,
             releaseDate: [],
-            releaseDate: [],
             selectedRowKeys: [],
             selectedRowKey: [],
             selectedRows: [],
@@ -490,17 +490,6 @@ const MyBusiness = Form.create()(React.createClass({
     		visitModul:false,
     	})
     },
-	//新增联系人
-	addcontactModulOK(){
-		this.setState({
-	    	addcontactModul:false
-	    });
-	},
-	addcontactModulcancel(){
-		this.setState({
-	    	addcontactModul:false
-	    });
-	},
 	businessFollowOk(){
 		this.setState({
 	    	businessFollowModul:false
@@ -530,41 +519,6 @@ const MyBusiness = Form.create()(React.createClass({
 		  	 message.warning('请输入客户名称')
 		  }
 	},
-	//新增联系人保存函数
-	submitcontactman(e){
-		e.preventDefault();
-		this.setState({
-			loading:true
-		})
-		$.ajax({
-                method: "post",
-                dataType: "json",
-                crossDomain: false,
-                url: globalConfig.context + "/api/admin/customer/addOneContact",
-                data:{
-                   uid:this.state.uids,
-                   name:this.state.newname,
-                   mobile:this.state.newmobile,
-                   email:this.state.newemail,
-                   wechat:this.state.newwechat,
-                   depatrment:this.state.newdepatrment,
-                   position:this.state.newposition,
-                   sex:this.state.newsex,
-                   qq:this.state.newqq
-                },
-                success: function (data) {
-                		if (!data.error.length) {
-                			this.addcontactModulOK()
-                			this.getNewWoman(this.state.uids)
-			                this.setState({
-			                    loading: false,
-			                })
-		            } else {
-		                message.warning(data.error[0].message);
-		            };
-		        }.bind(this)
-		     });
-	},
 	//跟进
     addModify(e) {
         this.addTime();
@@ -1425,81 +1379,17 @@ const MyBusiness = Form.create()(React.createClass({
 					    </Spin>
 					</Form>
 				</Modal>
-			    <Modal
-                      maskClosable={false}
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}>
-					        <Row>
-			                    <FormItem
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value })
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>
-							</Row>
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>
-			    </Modal>
+                <AddContact
+                    addcontactModul={this.state.addcontactModul}
+                    uids={this.state.uids}
+                    closeFollow={()=>{
+                        this.setState({
+                            addcontactModul:false
+                        },()=>{
+                            this.getNewWoman(this.state.uids)
+                        })
+                    }}
+                />
     			<Modal
                       maskClosable={false}
 				      footer=''

+ 12 - 123
js/component/manageCenter/customer/individualCustomer/individualCustomer.jsx

@@ -11,6 +11,7 @@ const TabPane = Tabs.TabPane;
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, newFollow, auditStatusL, lvl, currentMember, cityArr, statuslist, customerStatus, intentionalService, sex } from '../../../dataDic.js';
 import { getCompanyIntention, splitUrl, getAuditStatus, getSocialAttribute, getStatuslist, getIndustry, getContactType, getfllowSituation, beforeUploadFile, getWhether, getcityArr, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 const monthFormat = 'YYYY/MM';
 //图片组件
 
@@ -100,7 +101,6 @@ const IndividualCustomer = Form.create()(React.createClass({
 				international: this.state.internationalSearch,
 				celebrity: this.state.celebritySearch,
 				expert: this.state.expertSearch,
-				industry: this.state.industrySearch
 			},
 			success: function(data) {
 				let theArr = [];
@@ -129,7 +129,6 @@ const IndividualCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							consultant: thisdata.consultant,
@@ -191,7 +190,6 @@ const IndividualCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRows: [],
 			loading: false,
@@ -1514,17 +1512,6 @@ const IndividualCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex = undefined;
@@ -1540,41 +1527,6 @@ const IndividualCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault();
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -2841,80 +2793,17 @@ const IndividualCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                          <Button className="set-submit" type="primary" htmlType="submit"  id="change_keep" style={{marginLeft:'60px'}}>保存</Button>
-			              <Button className="set-submit" type="ghost" onClick={this.addcontactModulcancel} id='change_rem'>取消</Button>
-			            	</Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 0 - 37
js/component/manageCenter/customer/individualCustomer/publicQuery.jsx

@@ -93,7 +93,6 @@ const PublicCustomer = Form.create()(React.createClass({
 				currentMemberStatus: this.state.currentMemberStatusSearch,
 				international: this.state.internationalSearch,
 				lvl: this.state.lvlSearch,
-				international: this.state.internationalSearch,
 				societyTag: this.state.societyTagSearch,
 				listed: this.state.listedSearch, //是否上市
 				highTechZone: this.state.highTechZoneSearch, //是否高新
@@ -160,7 +159,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -910,41 +908,6 @@ const PublicCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman(e) {
-		e.preventDefault();
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []

+ 12 - 120
js/component/manageCenter/customer/individualCustomer/queryCustomer.jsx

@@ -12,6 +12,7 @@ const monthFormat = 'YYYY/MM';
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 //图片组件
 const PicturesWall = React.createClass({
 	getInitialState() {
@@ -84,7 +85,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				province: !(this.state.addressSearch).length ? this.state.provinceSearch : this.state.addressSearch[0],
 				city: !(this.state.addressSearch).length ? '' : this.state.addressSearch[1],
 				status: this.state.statusSearch,
-				industry: this.state.industrySearch,
 				businessAudit: this.state.serviceCertificationSearch,
 				auditStatus: this.state.userCertificationSearch,
 				currentMemberStatus: this.state.currentMemberStatusSearch,
@@ -129,7 +129,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -193,7 +192,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1354,17 +1352,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1380,40 +1367,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -3012,78 +2965,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>                  
 						</div>	                    
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}						          							          
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}> 											             
-					        <Row>	
-			                    <FormItem 
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value }) 
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>	
-							</Row>								               
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-                                
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>	
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>						                       
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                            </Row>
-			            </Spin>
-			        </Form>   
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal	
 				      footer=''
 			          title="业务意向详情"

+ 358 - 0
js/component/manageCenter/customer/operationalData/interviewStatistics/detailedList.jsx

@@ -0,0 +1,358 @@
+import React,{ Component } from 'react';
+import {
+    Modal,
+    Select,
+} from "antd";
+import { provinceList} from '@/NewDicProvinceList';
+import './index.less';
+import TabelContent from "../../../../common/tabelContent";
+
+class DetailedList extends Component{
+    constructor(props) {
+        super(props);
+        this.state= {
+            columns: [
+                {
+                    title: "编号",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "排名",
+                    dataIndex: "p",
+                    key: "p",
+                },
+                {
+                    title: "订单部门",
+                    dataIndex: "b",
+                    key: "b",
+                },
+                {
+                    title: "签单人",
+                    dataIndex: "r",
+                    key: "r",
+                },
+                {
+                    title: "总单量(个)",
+                    dataIndex: "nickname",
+                    key: "nickname",
+                    className: 'projectTable',
+                    width: 150,
+                    onCellClick: (record, event) => {
+                        event.stopPropagation();
+                        this.setState({
+                            status: 0,
+                            visible1: true,
+                            aid: record.aid
+                        })
+                    },
+                },
+                {
+                    title: "总签单额(万元)",
+                    dataIndex: "nickname",
+                    key: "nickname",
+                    className: 'projectTable',
+                    width: 150,
+                    onCellClick: (record, event) => {
+                        event.stopPropagation();
+                        this.setState({
+                            status: 1,
+                            visible1: true,
+                            aid: record.aid
+                        })
+                    },
+                },
+                {
+                    title: "年度完成率",
+                    dataIndex: "l",
+                    key: "l",
+                    className: 'projectTable',
+                    width: 150,
+                    onCellClick: (record, event) => {
+                        event.stopPropagation();
+                        this.setState({
+                            status: 2,
+                            visible1: true,
+                            aid: record.aid
+                        })
+                    },
+                },
+            ],
+            columns1: [
+                {
+                    title: "合同编号",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "订单编号",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "客户名称",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "订单部门",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "下单时间",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "合同签订时间",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "流程状态",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "签单金额(万元)",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "开票金额(万元)",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "已收款(万元)",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "结算状态",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "是否特批",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "订单状态",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "财务负责人",
+                    dataIndex: "key",
+                    key: "key",
+                },
+            ],
+        }
+    }
+
+    searchList(){
+        let arr = [
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
+            },
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+            {
+                type:'times',
+                title:'合同时间',
+                dataKey:['startTime1','endTime1'],
+            },
+            {
+                type:'select',
+                dataKey:'superId',
+                placeholder:'请选择排序',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'province',
+                placeholder:'请选择省份',
+                selectOptionList:()=>{
+                    let Province = [];
+                    provinceList.map(function(item) {
+                        let id = String(item.id)
+                        Province.push(
+                            <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
+                        )
+                    });
+                    return Province
+                },
+            }
+        ]
+        return arr;
+    }
+
+    searchList1(){
+        let arr = [
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
+            },
+            {
+                type:'text',
+                dataKey:'name',
+                placeholder:'请输入客户名称'
+            },
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'bianhao',
+                placeholder:'请输入合同编号'
+            },
+            {
+                type:'select',
+                dataKey:'2',
+                placeholder:'请选择结算状态',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'1',
+                placeholder:'请选择特批状态',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'1',
+                placeholder:'请选择签单金额',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+        ]
+        return arr;
+    }
+
+    render() {
+        return (
+            <div>
+                <Modal
+                    maskClosable={false}
+                    visible={this.props.visible}
+                    onOk={this.props.onCancel}
+                    onCancel={this.props.onCancel}
+                    width='1200px'
+                    title='内蒙签单统计表'
+                    footer=''
+                    className="admin-desc-content">
+                    <div className="user-content">
+                        <TabelContent
+                            searchList={this.searchList()}
+                            columns={this.state.columns}
+                            tabelApi={'/api/admin/newOrder/provinceStatisticsList'}
+                            exportApi={'/api/admin/release/publicReleaseDtails/export'}
+                            dataProcessing={(data)=>{
+                                let theArr = [];
+                                for (let i = 0; i < data.data.list.length; i++) {
+                                    let thisdata = data.data.list[i];
+                                    thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
+                                    theArr.push(thisdata);
+                                }
+                                return theArr;
+                            }}
+                        />
+                    </div>
+                    <Modal
+                        maskClosable={false}
+                        visible={this.state.visible1}
+                        onOk={()=>{
+                            this.setState({
+                                visible1:false
+                            })
+                        }}
+                        onCancel={()=>{
+                            this.setState({
+                                visible1:false
+                            })
+                        }}
+                        width='1200px'
+                        title='部门订单'
+                        footer=''
+                        className="admin-desc-content">
+                        <div className="user-content">
+                            <TabelContent
+                                searchList={this.searchList1()}
+                                columns={this.state.columns1}
+                                tabelApi={'/api/admin/newOrder/orderNewList'}
+                                exportApi={'/api/admin/newOrder/statisticsListExprot'}
+                                dataProcessing={(data)=>{
+                                    let theArr = [];
+                                    for (let i = 0; i < data.data.list.length; i++) {
+                                        let thisdata = data.data.list[i];
+                                        thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
+                                        theArr.push(thisdata);
+                                    }
+                                    return theArr;
+                                }}
+                            />
+                        </div>
+                    </Modal>
+                </Modal>
+            </div>
+        )
+    }
+}
+
+export default DetailedList;

+ 434 - 0
js/component/manageCenter/customer/operationalData/interviewStatistics/index.jsx

@@ -0,0 +1,434 @@
+import React,{ Component } from 'react';
+import {message, Select} from "antd";
+import {
+    ShowModal,
+} from "@/tools";
+import { provinceList} from '@/NewDicProvinceList';
+import $ from "jquery/src/ajax";
+import './index.less';
+import TabelContent from '../../../../common/tabelContent'
+
+import DetailedList from './detailedList';
+
+class InterviewStatistics extends Component{
+    constructor(props) {
+        super(props);
+        this.state={
+            pageNo:1,
+            loading:false,
+            changeList:[],
+            columns: [
+                {
+                    title: "序号",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "排名",
+                    dataIndex: "name",
+                    key: "name",
+                },
+                {
+                    title: "省份",
+                    dataIndex: "tg",
+                    key: "tg",
+                    className: 'projectTable',
+                    onCellClick :(record, event)=>{
+                        event.stopPropagation();
+                        this.setState({
+                            status:2,
+                            visible:true,
+                            aid:record.aid
+                        })
+                    }
+                },
+                {
+                    title: "签单人数(人)",
+                    dataIndex: "duration",
+                    key: "duration",
+                    className: 'projectTable',
+                    onCellClick :(record, event)=>{
+                        event.stopPropagation();
+                        this.setState({
+                            status:2,
+                            visible:true,
+                            aid:record.aid
+                        })
+                    }
+                },
+                {
+                    title: "总单量(个)",
+                    dataIndex: "wsh",
+                    key: "wsh",
+                    className: 'projectTable',
+                    onCellClick :(record, event)=>{
+                        event.stopPropagation();
+                        this.setState({
+                            status:1,
+                            visible:true,
+                            aid:record.aid
+                        })
+                    }
+                },
+                {
+                    title: "总签单额(万元)",
+                    dataIndex: "bh",
+                    key: "bh",
+                    className: 'projectTable',
+                    onCellClick :(record, event)=>{
+                        event.stopPropagation();
+                        this.setState({
+                            status:0,
+                            visible:true,
+                            aid:record.aid
+                        })
+                    }
+                },
+                {
+                    title: "时间段",
+                    dataIndex: "dk",
+                    key: "dk",
+                    className: 'projectTable',
+                    onCellClick :(record, event)=>{
+                        event.stopPropagation();
+                        this.setState({
+                            status: undefined,
+                            clockIn:1,
+                            visible:true,
+                            aid:record.aid
+                        })
+                    }
+                },
+                {
+                    title: "年度完成率",
+                    dataIndex: "ws",
+                    key: "ws",
+                },
+            ],
+            pagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function(page) {
+                    this.loadData(page);
+                }.bind(this),
+                showTotal: function(total) {
+                    return "共" + total + "条数据";
+                }
+            },
+            dataSource: [],
+
+            releaseDate:[],
+            createReleaseDate:[],
+            superId:undefined,
+            clockIn:0,
+        }
+        this.loadData = this.loadData.bind(this);
+        this.resetAll = this.resetAll.bind(this);
+        this.changeList = this.changeList.bind(this);
+        this.selectSuperId = this.selectSuperId.bind(this);
+        this.supervisor = this.supervisor.bind(this);
+        this.httpChange = this.httpChange.bind(this);
+        this.blurChange = this.blurChange.bind(this);
+        this.selectAuto = this.selectAuto.bind(this);
+        this.exportExec = this.exportExec.bind(this);
+    }
+
+    //获取上级组织
+    selectSuperId() {
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/organization/selectSuperId",
+            data:{},
+            success: function (data) {
+                let theArr = [];
+                if (data.error && data.error.length === 0) {
+                    for(let i=0;i<data.data.length;i++){
+                        let theData = data.data[i];
+                        theArr.push(
+                            <Select.Option value={theData.id} key={theData.id}>{theData.name}</Select.Option>
+                        );
+                    };
+                    this.setState({
+                        contactsOption: theArr,
+                    });
+                }else{
+                    message.warning(data.error[0].message);
+                }
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    }
+
+    changeList(arr) {
+        const newArr = [];
+        this.state.columns.forEach(item => {
+            arr.forEach(val => {
+                if (val === item.title) {
+                    newArr.push(item);
+                }
+            });
+        });
+        this.setState({
+            changeList: newArr
+        });
+    }
+
+    loadData(pageNo) {
+        this.setState({
+            loading:true
+        })
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/release/publicReleaseStatistics",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+                clockStart:this.state.releaseDate[0] || undefined,
+                clockEnd:this.state.releaseDate[1] || undefined,
+                createStart:this.state.createReleaseDate[0] || undefined,
+                createEnd:this.state.createReleaseDate[1] || undefined,
+                depId:this.state.superId || undefined,
+                aid:this.state.theTypes
+            },
+            success: function(data) {
+                ShowModal(this);
+                this.setState({
+                    loading:false
+                })
+                let theArr = [];
+                if (data.error && data.error.length === 0) {
+                    for (let i = 0; i < data.data.list.length; i++) {
+                        let thisdata = data.data.list[i];
+                        thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
+                        theArr.push(thisdata);
+                    }
+                    this.state.pagination.current = data.data.pageNo;
+                    this.state.pagination.total = data.data.totalCount;
+                    if (data.data && data.data.list && !data.data.list.length) {
+                        this.state.pagination.current = 0;
+                        this.state.pagination.total = 0;
+                    }
+                    this.setState({
+                        dataSource: theArr,
+                        pagination: this.state.pagination,
+                        pageNo:data.data.pageNo
+                    });
+                }else{
+                    message.warning(data.error[0].message);
+                }
+            }.bind(this)
+        }).always(
+            function() {
+                this.setState({
+                    loading: false
+                });
+            }.bind(this)
+        );
+    }
+
+    resetAll() {
+        this.setState({
+            releaseDate:[],
+            createReleaseDate:[],
+            superId:undefined,
+            theTypes:undefined,
+            auto:''
+        },()=>{
+            this.loadData();
+        })
+    }
+
+    supervisor(e) {
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/customer/listAdminByName",
+            data: {
+                adminName: e,
+            },
+            success: function (data) {
+                let thedata = data.data;
+                if (!thedata) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    }
+                    thedata = {};
+                }
+                this.setState({
+                    customerArr: thedata,
+                });
+            }.bind(this),
+        }).always(
+            function () {
+
+            }.bind(this)
+        );
+    }
+
+    httpChange(e) {
+        if (e.length >= 1) {
+            this.supervisor(e);
+        }
+        this.setState({
+            auto: e,
+        });
+    }
+
+    selectAuto(value, options) {
+        this.setState({
+            auto: value,
+        });
+    }
+
+    blurChange(e) {
+        let theType = "";
+        let contactLists = this.state.customerArr || [];
+        if (e) {
+            contactLists.map(function (item) {
+                if (item.name == e.toString()) {
+                    theType = item.id;
+                }
+            });
+        }
+        this.setState({
+            theTypes: theType,
+        });
+    }
+
+    componentWillMount() {
+        this.loadData();
+        this.selectSuperId();
+    }
+
+    exportExec(){
+        let data = {
+            clockStart:this.state.releaseDate[0],
+            clockEnd:this.state.releaseDate[1],
+            createStart:this.state.createReleaseDate[0],
+            createEnd:this.state.createReleaseDate[1],
+            depId:this.state.superId,
+            aid:this.state.theTypes
+        };
+        for(let i of Object.keys(data)){
+            if(!data[i]){
+                delete data[i]
+            }
+        }
+        window.location.href =
+            globalConfig.context +
+            "/api/admin/release/publicReleaseStatistics/export?" +
+            $.param(data);
+    }
+
+    searchList(){
+        let arr = [
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
+            },
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+            {
+                type:'times',
+                title:'合同时间',
+                dataKey:['startTime1','endTime1'],
+            },
+            {
+                type:'select',
+                dataKey:'superId',
+                placeholder:'请选择排序',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'province',
+                placeholder:'请选择省份',
+                selectOptionList:()=>{
+                    let Province = [];
+                    provinceList.map(function(item) {
+                        let id = String(item.id)
+                        Province.push(
+                            <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
+                        )
+                    });
+                    return Province
+                },
+            }
+        ]
+        return arr;
+    }
+
+    render() {
+        const dataSources = this.state.customerArr || [];
+        const options = dataSources.map((group) => (
+            <Select.Option key={group.id} value={group.name}>
+                {group.name}
+            </Select.Option>
+        ));
+        return (
+            <div className="user-content interviewStatistics">
+                <div className="content-title">
+                    <span>
+                        公出面谈表<span style={{fontSize:'10px',color:'#0f2be5'}}>注:通过公出打卡,同一家公司,多次面谈数只计算1次</span>
+                    </span>
+                </div>
+                <TabelContent
+                    searchList={this.searchList()}
+                    columns={this.state.columns}
+                    tabelApi={'/api/admin/newOrder/statisticsList'}
+                    exportApi={'/api/admin/newOrder/statisticsListExprot'}
+                    dataProcessing={(data)=>{
+                        let theArr = [];
+                        for (let i = 0; i < data.data.list.length; i++) {
+                            let thisdata = data.data.list[i];
+                            thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
+                            theArr.push(thisdata);
+                        }
+                        return theArr;
+                    }}
+                />
+                {this.state.visible ? <DetailedList
+                    status={this.state.status}
+                    clockIn={this.state.clockIn || undefined}
+                    visible={this.state.visible}
+                    aid={this.state.aid}
+                    onCancel={()=>{
+                        this.setState({
+                            visible:false,
+                            clockIn:0,
+                        })
+                    }}/> : null}
+            </div>
+        )
+    }
+}
+
+export default InterviewStatistics;

+ 13 - 0
js/component/manageCenter/customer/operationalData/interviewStatistics/index.less

@@ -0,0 +1,13 @@
+.interviewStatistics{
+  .projectTable{
+    cursor: pointer;
+  }
+
+  .projectTable:hover{
+    background: #71a7e885 !important;
+  }
+
+  .ant-upload-list{
+    display: inline-block !important;
+  }
+}

+ 234 - 409
js/component/manageCenter/customer/operationalData/signatureStatistics/detailedList.jsx

@@ -1,42 +1,16 @@
 import React,{ Component } from 'react';
 import {
-    AutoComplete,
-    Button,
-    DatePicker,
-    Input,
-    message,
     Modal,
     Select,
-    Spin,
-    Table,
-    Tabs,
-    Tag,
-    Form,
-    Upload, Tooltip
 } from "antd";
-import {ShowModal,splitUrl,getClockState} from "@/tools";
-import {clockState} from "@/dataDic";
-import {ChooseList} from "../../../order/orderNew/chooseList";
-import $ from "jquery/src/ajax";
+import { provinceList} from '@/NewDicProvinceList';
 import './index.less';
-import moment from "moment";
-import ImgList from "../../../../common/imgList";
 import TabelContent from "../../../../common/tabelContent";
 
-
-const {TabPane} = Tabs;
-const { RangePicker } = DatePicker;
-
 class DetailedList extends Component{
     constructor(props) {
         super(props);
-        this.state={
-            pageNo:1,
-            loading:false,
-            changeList:[],
-            annexUrlArr:[],
-            photoUrlArr:[],
-            imgListVisible:false,
+        this.state= {
             columns: [
                 {
                     title: "编号",
@@ -44,424 +18,274 @@ class DetailedList extends Component{
                     key: "key",
                 },
                 {
-                    title: "客户名称",
+                    title: "排名",
+                    dataIndex: "p",
+                    key: "p",
+                },
+                {
+                    title: "订单部门",
+                    dataIndex: "b",
+                    key: "b",
+                },
+                {
+                    title: "签单人",
+                    dataIndex: "r",
+                    key: "r",
+                },
+                {
+                    title: "总单量(个)",
                     dataIndex: "nickname",
                     key: "nickname",
+                    className: 'projectTable',
                     width: 150,
-                    onCellClick :(record, event)=>{
+                    onCellClick: (record, event) => {
                         event.stopPropagation();
                         this.setState({
-                            status:2,
-                            visible1:true,
-                            aid:record.aid
+                            status: 0,
+                            visible1: true,
+                            aid: record.aid
                         })
                     },
-                    render: (text) => {
-                        return (
-                            <Tooltip title={text}>
-                                <div style={{
-                                    maxWidth:'150px',
-                                    overflow:'hidden',
-                                    textOverflow: "ellipsis",
-                                    whiteSpace:'nowrap',
-                                }}>{text}</div>
-                            </Tooltip>
-                        )
+                },
+                {
+                    title: "总签单额(万元)",
+                    dataIndex: "nickname",
+                    key: "nickname",
+                    className: 'projectTable',
+                    width: 150,
+                    onCellClick: (record, event) => {
+                        event.stopPropagation();
+                        this.setState({
+                            status: 1,
+                            visible1: true,
+                            aid: record.aid
+                        })
                     },
                 },
                 {
-                    title: "公出申请人",
-                    dataIndex: "aname",
-                    key: "aname",
+                    title: "年度完成率",
+                    dataIndex: "l",
+                    key: "l",
+                    className: 'projectTable',
+                    width: 150,
+                    onCellClick: (record, event) => {
+                        event.stopPropagation();
+                        this.setState({
+                            status: 2,
+                            visible1: true,
+                            aid: record.aid
+                        })
+                    },
                 },
+            ],
+            columns1: [
                 {
-                    title: "申请时间",
-                    dataIndex: "createTimes",
-                    key: "createTimes",
+                    title: "合同编号",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "公出时间",
-                    dataIndex: "releaseStarts",
-                    key: "releaseStarts",
-                    render: (text, record) => (
-                        text+'至'+record.releaseEnds
-                    )
+                    title: "订单编号",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "公出地点",
-                    dataIndex: "userName",
-                    key: "userName",
-                    width: 120,
-                    render: (text) => {
-                        return (
-                            <Tooltip title={text}>
-                                <div style={{
-                                    maxWidth:'120px',
-                                    overflow:'hidden',
-                                    textOverflow: "ellipsis",
-                                    whiteSpace:'nowrap',
-                                }}>{text}</div>
-                            </Tooltip>
-                        )
-                    },
+                    title: "客户名称",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "订单部门",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "公出时长(时)",
-                    dataIndex: "duration",
-                    key: "duration",
+                    title: "下单时间",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "打卡时间",
-                    dataIndex: "clockInTimes",
-                    key: "clockInTimes",
+                    title: "合同签订时间",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "审核状态",
-                    dataIndex: "status",
-                    key: "status",
-                    render: (text) => (
-                        <Tag color={getClockState(text).color}>{getClockState(text).title}</Tag>
-                    )
+                    title: "流程状态",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "打卡状态",
-                    dataIndex: "clockIn",
-                    key: "clockIn",
-                    render: (text) => (
-                        text === 1 ? '已打卡' :
-                            text === 0 ? '未打卡' : ''
-                    )
+                    title: "签单金额(万元)",
+                    dataIndex: "key",
+                    key: "key",
                 },
                 {
-                    title: "操作",
-                    dataIndex: "annexUrl",
-                    key: "annexUrl",
-                    render: (text,record) => (
-                        <div>
-                            <Button
-                                style={{marginRight:'15px'}}
-                                type={"primary"}
-                                onClick={(e) => {
-                                    e.stopPropagation();
-                                    let arr1 = text || [];
-                                    let arr2 = record.photoUrl || [];
-                                    this.setState({
-                                        annexUrlArr:splitUrl(arr1, ",", globalConfig.avatarHost + "/upload"),
-                                        photoUrlArr:splitUrl(arr2, ",", globalConfig.avatarHost + "/upload"),
-                                    },()=>{
-                                        this.setState({
-                                            imgListVisible:true
-                                        })
-                                    })
-                                }}
-                            >
-                                查看公出附件
-                            </Button>
-                        </div>
-                    )
+                    title: "开票金额(万元)",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "已收款(万元)",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "结算状态",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "是否特批",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "订单状态",
+                    dataIndex: "key",
+                    key: "key",
+                },
+                {
+                    title: "财务负责人",
+                    dataIndex: "key",
+                    key: "key",
                 },
             ],
-            pagination: {
-                defaultCurrent: 1,
-                defaultPageSize: 10,
-                showQuickJumper: true,
-                pageSize: 10,
-                onChange: function(page) {
-                    this.loadData(page);
-                }.bind(this),
-                showTotal: function(total) {
-                    return "共" + total + "条数据";
-                }
-            },
-            dataSource: [],
-
-            releaseDate:[],
-            status:props.status,
-            clockIn:props.clockIn,
-            theTypes:props.aid,
-            theCustomerTypes:undefined,
         }
-        this.loadData = this.loadData.bind(this);
-        this.resetAll = this.resetAll.bind(this);
-        this.changeList = this.changeList.bind(this);
-        this.selectSuperId = this.selectSuperId.bind(this);
-        this.supervisor = this.supervisor.bind(this);
-        this.httpChange = this.httpChange.bind(this);
-        this.blurChange = this.blurChange.bind(this);
-        this.selectAuto = this.selectAuto.bind(this);
-        this.getCustomer = this.getCustomer.bind(this);
-        this.selectCustomerAuto = this.selectCustomerAuto.bind(this);
-        this.httpCustomerChange = this.httpCustomerChange.bind(this);
-        this.blurCustomerChange = this.blurCustomerChange.bind(this);
-        this.exportExec = this.exportExec.bind(this);
     }
 
-    //获取上级组织
-    selectSuperId() {
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/organization/selectSuperId",
-            data:{},
-            success: function (data) {
-                let theArr = [];
-                if (data.error && data.error.length === 0) {
-                    for(let i=0;i<data.data.length;i++){
-                        let theData = data.data[i];
-                        theArr.push(
-                            <Select.Option value={theData.id} key={theData.id}>{theData.name}</Select.Option>
-                        );
-                    };
-                    this.setState({
-                        contactsOption: theArr,
+    searchList(){
+        let arr = [
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
+            },
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+            {
+                type:'times',
+                title:'合同时间',
+                dataKey:['startTime1','endTime1'],
+            },
+            {
+                type:'select',
+                dataKey:'superId',
+                placeholder:'请选择排序',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'province',
+                placeholder:'请选择省份',
+                selectOptionList:()=>{
+                    let Province = [];
+                    provinceList.map(function(item) {
+                        let id = String(item.id)
+                        Province.push(
+                            <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
+                        )
                     });
-                }else{
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    }
-
-    changeList(arr) {
-        const newArr = [];
-        this.state.columns.forEach(item => {
-            arr.forEach(val => {
-                if (val === item.title) {
-                    newArr.push(item);
-                }
-            });
-        });
-        this.setState({
-            changeList: newArr
-        });
+                    return Province
+                },
+            }
+        ]
+        return arr;
     }
 
-    loadData(pageNo) {
-        this.setState({
-            loading:true
-        })
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/release/publicReleaseDtails",
-            data: {
-                pageNo: pageNo || 1,
-                pageSize: this.state.pagination.pageSize,
-                releaseStart:this.state.releaseDate[0] || undefined,
-                releaseEnd:this.state.releaseDate[1] || undefined,
-                aid:this.state.theTypes,
-                uid:this.state.theCustomerTypes,
-                status:this.state.status,
-                clockIn:this.state.clockIn,
+    searchList1(){
+        let arr = [
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
             },
-            success: function(data) {
-                ShowModal(this);
-                let theArr = [];
-                this.setState({
-                    loading:false
-                })
-                if (data.error && data.error.length === 0) {
-                    for (let i = 0; i < data.data.list.length; i++) {
-                        let thisdata = data.data.list[i];
-                        thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
-                        theArr.push(thisdata);
+            {
+                type:'text',
+                dataKey:'name',
+                placeholder:'请输入客户名称'
+            },
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'bianhao',
+                placeholder:'请输入合同编号'
+            },
+            {
+                type:'select',
+                dataKey:'2',
+                placeholder:'请选择结算状态',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
                     }
-                    this.state.pagination.current = data.data.pageNo;
-                    this.state.pagination.total = data.data.totalCount;
-                    if (data.data && data.data.list && !data.data.list.length) {
-                        this.state.pagination.current = 0;
-                        this.state.pagination.total = 0;
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'1',
+                placeholder:'请选择特批状态',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
                     }
-                    this.setState({
-                        dataSource: theArr,
-                        pagination: this.state.pagination,
-                        pageNo:data.data.pageNo
-                    });
-                }else{
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this)
-        }).always(
-            function() {
-                this.setState({
-                    loading: false
-                });
-            }.bind(this)
-        );
-    }
-
-    resetAll() {
-        this.setState({
-            releaseDate:[],
-            theCustomerTypes:undefined,
-            status:this.props.status,
-            clockIn:this.props.clockIn,
-            auto:'',
-            customer:''
-        },()=>{
-            this.loadData();
-        })
-    }
-
-    supervisor(e) {
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/customer/listAdminByName",
-            data: {
-                adminName: e,
+                ]
             },
-            success: function (data) {
-                if (data.error && data.error.length === 0) {
-                    this.setState({
-                        customerArr: data.data,
-                    });
-                }else{
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this),
-        }).always(
-            function () {
-
-            }.bind(this)
-        );
-    }
-
-    httpChange(e) {
-        if (e.length >= 1) {
-            this.supervisor(e);
-        }
-        this.setState({
-            auto: e,
-        });
-    }
-
-    selectAuto(value, options) {
-        this.setState({
-            auto: value,
-        });
-    }
-
-    httpCustomerChange(e) {
-        if (e.length >= 1) {
-            this.getCustomer(e);
-        }
-        this.setState({
-            customer: e,
-        });
-    }
-
-    selectCustomerAuto(value, options) {
-        this.setState({
-            customer: value,
-        });
-    }
-
-    getCustomer(e) {
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/customer/getUserByName",
-            data: {
-                name: e,
+            {
+                type:'select',
+                dataKey:'1',
+                placeholder:'请选择签单金额',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
             },
-            success: function (data) {
-                if (data.error && data.error.length === 0) {
-                    this.setState({
-                        customerList: data.data,
-                    });
-                }else{
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this),
-        }).always(
-            function () {
-
-            }.bind(this)
-        );
-    }
-
-    blurCustomerChange(e) {
-        let theType = "";
-        let contactLists = this.state.customerList || [];
-        if (e) {
-            contactLists.map(function (item) {
-                if (item.name == e.toString()) {
-                    theType = item.id;
-                }
-            });
-        }
-        this.setState({
-            theCustomerTypes: theType,
-        });
-    }
-
-    blurChange(e) {
-        let theType = "";
-        let contactLists = this.state.customerArr || [];
-        if (e) {
-            contactLists.map(function (item) {
-                if (item.name == e.toString()) {
-                    theType = item.id;
-                }
-            });
-        }
-        this.setState({
-            theTypes: theType,
-        });
-    }
-
-    componentWillMount() {
-        this.loadData();
-        this.selectSuperId();
-    }
-
-    exportExec(){
-        let data = {
-            releaseStart:this.state.releaseDate[0],
-            releaseEnd:this.state.releaseDate[1],
-            aid:this.state.theTypes,
-            uid:this.state.theCustomerTypes,
-            status:this.state.status,
-            clockIn:this.state.clockIn,
-        };
-        for(let i of Object.keys(data)){
-            if(i === 'status' || i === 'clockIn'){
-                if(isNaN(parseInt(data[i]))){
-                    delete data[i]
-                }
-            }else if(!data[i]){
-                delete data[i]
-            }
-
-        }
-        window.location.href =
-            globalConfig.context +
-            "/api/admin/release/publicReleaseDtails/export?" +
-            $.param(data);
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+        ]
+        return arr;
     }
 
     render() {
-        const dataSources = this.state.customerArr || [];
-        const options = dataSources.map((group) => (
-            <Select.Option key={group.id} value={group.name}>
-                {group.name}
-            </Select.Option>
-        ));
-        const customerList = this.state.customerList || [];
-        const customerOptions = customerList.map((group) => (
-            <Select.Option key={group.id} value={group.name}>
-                {group.name}
-            </Select.Option>
-        ));
         return (
             <div>
                 <Modal
@@ -475,9 +299,9 @@ class DetailedList extends Component{
                     className="admin-desc-content">
                     <div className="user-content">
                         <TabelContent
-                            searchList={this.props.searchList}
+                            searchList={this.searchList()}
                             columns={this.state.columns}
-                            tabelApi={'/api/admin/release/publicReleaseDtails'}
+                            tabelApi={'/api/admin/newOrder/provinceStatisticsList'}
                             exportApi={'/api/admin/release/publicReleaseDtails/export'}
                             dataProcessing={(data)=>{
                                 let theArr = [];
@@ -509,9 +333,10 @@ class DetailedList extends Component{
                         className="admin-desc-content">
                         <div className="user-content">
                             <TabelContent
-                                columns={this.state.columns}
-                                tabelApi={'/api/admin/release/publicReleaseDtails'}
-                                exportApi={'/api/admin/release/publicReleaseDtails/export'}
+                                searchList={this.searchList1()}
+                                columns={this.state.columns1}
+                                tabelApi={'/api/admin/newOrder/orderNewList'}
+                                exportApi={'/api/admin/newOrder/statisticsListExprot'}
                                 dataProcessing={(data)=>{
                                     let theArr = [];
                                     for (let i = 0; i < data.data.list.length; i++) {

+ 61 - 176
js/component/manageCenter/customer/operationalData/signatureStatistics/index.jsx

@@ -1,19 +1,15 @@
 import React,{ Component } from 'react';
-import {AutoComplete, Button, DatePicker, Input, message, Select, Spin, Table, Tabs} from "antd";
+import {message, Select} from "antd";
 import {
     ShowModal,
 } from "@/tools";
-import {ChooseList} from "../../../order/orderNew/chooseList";
+import { provinceList} from '@/NewDicProvinceList';
 import $ from "jquery/src/ajax";
 import './index.less';
-import moment from "moment";
 import TabelContent from '../../../../common/tabelContent'
 
 import DetailedList from './detailedList';
 
-const {TabPane} = Tabs;
-const { RangePicker } = DatePicker;
-
 class SignatureStatistics extends Component{
     constructor(props) {
         super(props);
@@ -334,6 +330,62 @@ class SignatureStatistics extends Component{
             $.param(data);
     }
 
+    searchList(){
+        let arr = [
+            {
+                type:'departmentSelect',
+                dataKey:'departmentId',
+                placeholder:'请选择部门'
+            },
+            {
+                type:'text',
+                dataKey:'super',
+                placeholder:'请输入订单编号'
+            },
+            {
+                type:'times',
+                title:'下单时间',
+                dataKey:['startTime','endTime'],
+            },
+            {
+                type:'times',
+                title:'合同时间',
+                dataKey:['startTime1','endTime1'],
+            },
+            {
+                type:'select',
+                dataKey:'superId',
+                placeholder:'请选择排序',
+                selectList:[
+                    {
+                        value:'1',
+                        label:'按总签单排序'
+                    },
+                    {
+                        value:'0',
+                        label:'否'
+                    }
+                ]
+            },
+            {
+                type:'select',
+                dataKey:'province',
+                placeholder:'请选择省份',
+                selectOptionList:()=>{
+                    let Province = [];
+                    provinceList.map(function(item) {
+                        let id = String(item.id)
+                        Province.push(
+                            <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
+                        )
+                    });
+                    return Province
+                },
+            }
+        ]
+        return arr;
+    }
+
     render() {
         const dataSources = this.state.customerArr || [];
         const options = dataSources.map((group) => (
@@ -349,45 +401,10 @@ class SignatureStatistics extends Component{
                     </span>
                 </div>
                 <TabelContent
-                    searchList={[
-                        {
-                            type:'departmentSelect',
-                            dataKey:'departmentId',
-                            placeholder:'请选择部门'
-                        },
-                        {
-                            type:'text',
-                            dataKey:'super',
-                            placeholder:'请输入订单编号'
-                        },
-                        {
-                            type:'times',
-                            title:'下单时间',
-                            dataKey:['startTime','endTime'],
-                        },
-                        {
-                            type:'times',
-                            title:'合同时间',
-                            dataKey:['startTime1','endTime1'],
-                        },
-                        {
-                            type:'select',
-                            dataKey:'superId',
-                            selectList:[
-                                {
-                                    value:'1',
-                                    label:'是'
-                                },
-                                {
-                                    value:'0',
-                                    label:'否'
-                                }
-                            ]
-                        }
-                    ]}
+                    searchList={this.searchList()}
                     columns={this.state.columns}
-                    tabelApi={'/api/admin/release/publicReleaseStatistics'}
-                    exportApi={'/api/admin/release/publicReleaseStatistics/export'}
+                    tabelApi={'/api/admin/newOrder/statisticsList'}
+                    exportApi={'/api/admin/newOrder/statisticsListExprot'}
                     dataProcessing={(data)=>{
                         let theArr = [];
                         for (let i = 0; i < data.data.list.length; i++) {
@@ -398,139 +415,7 @@ class SignatureStatistics extends Component{
                         return theArr;
                     }}
                 />
-                {/*<Tabs defaultActiveKey="1" className="test">*/}
-                {/*    <TabPane tab="搜索" key="1">*/}
-                {/*        <div className="user-search" style={{*/}
-                {/*            marginTop:'10px',*/}
-                {/*            marginLeft:'10px',*/}
-                {/*            marginRight:'10px'*/}
-                {/*        }}>*/}
-                {/*           <span style={{ marginRight: "10px" }}>*/}
-                {/*                <Select*/}
-                {/*                    placeholder="请选择部门"*/}
-                {/*                    style={{ width:200,marginLeft:10}}*/}
-                {/*                    value={this.state.superId}*/}
-                {/*                    onChange={(e) => { this.setState({ superId: e }) }}*/}
-                {/*                    notFoundContent="未获取到上级组织列表">*/}
-                {/*                    {this.state.contactsOption}*/}
-                {/*                </Select>*/}
-                {/*            </span>*/}
-                {/*            <span style={{ marginRight: "10px" }}>*/}
-                {/*                <AutoComplete*/}
-                {/*                    className="certain-category-search"*/}
-                {/*                    dropdownClassName="certain-category-search-dropdown"*/}
-                {/*                    dropdownMatchSelectWidth={false}*/}
-                {/*                    dropdownStyle={{ width: 120 }}*/}
-                {/*                    style={{ width: "120px" }}*/}
-                {/*                    dataSource={options}*/}
-                {/*                    placeholder='输入公出申请人'*/}
-                {/*                    value={this.state.auto}*/}
-                {/*                    onChange={this.httpChange}*/}
-                {/*                    filterOption={true}*/}
-                {/*                    onBlur={this.blurChange}*/}
-                {/*                    onSelect={this.selectAuto}*/}
-                {/*                >*/}
-                {/*                    <Input />*/}
-                {/*                </AutoComplete>*/}
-                {/*            </span>*/}
-                {/*            <span style={{ marginRight: "10px" }}>*/}
-                {/*                <span style={{marginRight:'10px',marginBottom:'10px'}}>打卡时间 :</span>*/}
-                {/*                <RangePicker*/}
-                {/*                    style={{marginRight:'10px',marginBottom:'10px'}}*/}
-                {/*                    value={[*/}
-                {/*                        this.state.releaseDate[0]*/}
-                {/*                            ? moment(this.state.releaseDate[0])*/}
-                {/*                            : null,*/}
-                {/*                        this.state.releaseDate[1]*/}
-                {/*                            ? moment(this.state.releaseDate[1])*/}
-                {/*                            : null,*/}
-                {/*                    ]}*/}
-                {/*                    onChange={(data, dataString) => {*/}
-                {/*                        this.setState({ releaseDate: dataString });*/}
-                {/*                    }}*/}
-                {/*                />*/}
-                {/*            </span>*/}
-                {/*            <span style={{ marginRight: "10px" }}>*/}
-                {/*                <span style={{marginRight:'10px',marginBottom:'10px'}}>创建时间 :</span>*/}
-                {/*                <RangePicker*/}
-                {/*                    style={{marginRight:'10px',marginBottom:'10px'}}*/}
-                {/*                    value={[*/}
-                {/*                        this.state.createReleaseDate[0]*/}
-                {/*                            ? moment(this.state.createReleaseDate[0])*/}
-                {/*                            : null,*/}
-                {/*                        this.state.createReleaseDate[1]*/}
-                {/*                            ? moment(this.state.createReleaseDate[1])*/}
-                {/*                            : null,*/}
-                {/*                    ]}*/}
-                {/*                    onChange={(data, dataString) => {*/}
-                {/*                        this.setState({ createReleaseDate: dataString });*/}
-                {/*                    }}*/}
-                {/*                />*/}
-                {/*            </span>*/}
-                {/*            <Button type="primary" onClick={()=>{*/}
-                {/*                this.loadData();*/}
-                {/*            }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>*/}
-                {/*            <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>*/}
-                {/*        </div>*/}
-                {/*    </TabPane>*/}
-                {/*    <TabPane tab="更改表格显示数据" key="2">*/}
-                {/*        <div style={{ marginLeft: 10 }}>*/}
-                {/*            <ChooseList*/}
-                {/*                columns={this.state.columns}*/}
-                {/*                changeFn={this.changeList}*/}
-                {/*                changeList={this.state.changeList}*/}
-                {/*                top={55}*/}
-                {/*                margin={11}*/}
-                {/*            />*/}
-                {/*        </div>*/}
-                {/*    </TabPane>*/}
-                {/*    <TabPane tab="导出" key="3">*/}
-                {/*        <div style={{ float: "left" }}>*/}
-                {/*            <Button onClick={this.exportExec} style={{ margin: 10 }}>导出excel</Button>*/}
-                {/*        </div>*/}
-                {/*    </TabPane>*/}
-                {/*</Tabs>*/}
-                {/*<div className="patent-table">*/}
-                {/*    <Spin spinning={this.state.loading}>*/}
-                {/*        <Table*/}
-                {/*            bordered*/}
-                {/*            size="middle"*/}
-                {/*            scroll={{ x: 800, y: 0 }}*/}
-                {/*            columns={*/}
-                {/*                this.state.changeList.length > 0*/}
-                {/*                    ? this.state.changeList*/}
-                {/*                    : this.state.columns*/}
-                {/*            }*/}
-                {/*            dataSource={this.state.dataSource}*/}
-                {/*            pagination={this.state.pagination}*/}
-                {/*        />*/}
-                {/*    </Spin>*/}
-                {/*</div>*/}
                 {this.state.visible ? <DetailedList
-                    searchList={[
-                        {
-                            type:'departmentSelect',
-                            dataKey:'departmentId'
-                        },
-                        {
-                            type:'text',
-                            dataKey:'super'
-                        },
-                        {
-                            type:'select',
-                            dataKey:'superId',
-                            selectList:[
-                                {
-                                    value:'1',
-                                    label:'是'
-                                },
-                                {
-                                    value:'0',
-                                    label:'否'
-                                }
-                            ]
-                        }
-                    ]}
                     status={this.state.status}
                     clockIn={this.state.clockIn || undefined}
                     visible={this.state.visible}

+ 12 - 120
js/component/manageCenter/customer/release/expertRelease.jsx

@@ -12,6 +12,7 @@ const monthFormat = 'YYYY/MM';
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 //图片组件
 const PicturesWall = React.createClass({
 	getInitialState() {
@@ -99,7 +100,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				international: this.state.internationalSearch,
 				celebrity: this.state.celebritySearch,
 				expert: this.state.expertSearch,
-				industry: this.state.industrySearch,
 				shareType: this.state.shareTypeSearch,
 			},
 			success: function(data) {
@@ -131,7 +131,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -196,7 +195,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1450,17 +1448,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1476,40 +1463,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -3094,78 +3047,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>
 						</div>
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}>
-					        <Row>
-			                    <FormItem
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value })
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>
-							</Row>
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                         </Row>
-			            </Spin>
-			        </Form>
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal
 				      footer=''
 			          title="业务意向详情"

+ 12 - 120
js/component/manageCenter/customer/reviewed/expertReview.jsx

@@ -12,6 +12,7 @@ const monthFormat = 'YYYY/MM';
 import CustomerDetail from './myClientDesc.jsx';
 import { socialAttribute, industry, auditStatusL, newFollow, lvl, currentMember, statuslist, customerStatus, intentionalService } from '../../../dataDic.js';
 import { getSocialAttribute, splitUrl,getAuditStatus, getCompanyIntention, getStatuslist, getContactType, getIndustryType, getfllowSituation, beforeUploadFile, getWhether, getcustomerStatue, getfllowSituationOn, getCertification, getcustomerTyp, getLvl, getCurrentMember, getprovince } from '../../../tools.js';
+import AddContact from "../NEW/signCustomer/followDetail/addContact";
 //图片组件
 const PicturesWall = React.createClass({
 	getInitialState() {
@@ -86,7 +87,6 @@ const QueryCustomer = Form.create()(React.createClass({
 				province: !(this.state.addressSearch).length ? this.state.provinceSearch : this.state.addressSearch[0],
 				city: !(this.state.addressSearch).length ? '' : this.state.addressSearch[1],
 				status: this.state.statusSearch,
-				industry: this.state.industrySearch,
 				businessAudit: this.state.serviceCertificationSearch,
 				auditStatus: this.state.userCertificationSearch,
 				currentMemberStatus: this.state.currentMemberStatusSearch,
@@ -131,7 +131,6 @@ const QueryCustomer = Form.create()(React.createClass({
 							currentMemberStatus: thisdata.currentMemberStatus,
 							international: thisdata.international,
 							listed: thisdata.listed,
-							international: thisdata.international,
 							expert: thisdata.expert,
 							celebrity: thisdata.celebrity,
 							adminName: thisdata.adminName,
@@ -195,7 +194,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			visible: false,
 			searchMore: true,
 			releaseDate: [],
-			releaseDate: [],
 			selectedRowKeys: [],
 			selectedRowKey: [],
 			selectedRows: [],
@@ -1406,17 +1404,6 @@ const QueryCustomer = Form.create()(React.createClass({
 		e.preventDefault();
 		this.passworldCancel()
 	},
-	//新增联系人
-	addcontactModulOK() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
-	addcontactModulcancel() {
-		this.setState({
-			addcontactModul: false
-		});
-	},
 	//点击新增详情
 	newContacts() {
 		this.state.newsex =undefined;
@@ -1432,40 +1419,6 @@ const QueryCustomer = Form.create()(React.createClass({
 			addcontactModul: true
 		});
 	},
-	//新增联系人保存函数
-	submitcontactman() {
-		this.setState({
-			loading: true
-		})
-		$.ajax({
-			method: "post",
-			dataType: "json",
-			crossDomain: false,
-			url: globalConfig.context + "/api/admin/customer/addOneContact",
-			data: {
-				uid: this.state.uids,
-				name: this.state.newname,
-				mobile: this.state.newmobile,
-				email: this.state.newemail,
-				wechat: this.state.newwechat,
-				depatrment: this.state.newdepatrment,
-				position: this.state.newposition,
-				sex: this.state.newsex,
-				qq: this.state.newqq
-			},
-			success: function(data) {
-				if(!data.error.length) {
-					this.addcontactModulOK()
-					this.getNewWoman(this.state.uids)
-					this.setState({
-						loading: false,
-					})
-				} else {
-					message.warning(data.error[0].message);
-				};
-			}.bind(this)
-		});
-	},
 	//获取联系人下拉框
 	getNewWoman(ids) {
 		this.state.data = []
@@ -3057,78 +3010,17 @@ const QueryCustomer = Form.create()(React.createClass({
 							</Form>
 						</div>
     			</Modal>
-			    <Modal
-				      footer=''
-				      width='800px'
-			          title="新增联系人"
-			          visible={this.state.addcontactModul}
-			          onOk={this.addcontactModulOK}
-			          onCancel={this.addcontactModulcancel}
-						        >
-				        <Form horizontal onSubmit={this.submitcontactman} id="demand-form">
-					      <Spin spinning={this.state.loading}>
-					        <Row>
-			                    <FormItem
-			                        labelCol={{ span: 3 }}
-			                        wrapperCol={{ span: 14 }}
-			                        label="性别:"  style={{marginRight:'10px',marginTop: '-15px'}}>
-			                        <Radio.Group value={this.state.newsex} onChange={(e) => {
-					                    this.setState({ newsex: e.target.value })
-					                    }}>
-					                        <Radio value='男'>男</Radio>
-					                        <Radio value='女'>女</Radio>
-				                    </Radio.Group>
-			                    </FormItem>
-							</Row>
-					        <Row style={{ paddingLeft:'50px' }}>
-		                        <Col span={2}><span style={{color:'red'}}>*</span>姓名:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newname} required="required"
-                                        onChange={(e) => { this.setState({ newname: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}><span style={{color:'red'}}>*</span>手机:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newmobile} required="required"
-                                        onChange={(e) => { this.setState({ newmobile: e.target.value }) }} />
-                                </Col>
-
-                            </Row>
-		                    <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>微信:</Col>
-                                	<Col span={8}>
-                                    <Input value={this.state.newwechat}
-                                        onChange={(e) => { this.setState({ newwechat: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>Q Q:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newqq}
-                                        onChange={(e) => { this.setState({ newqq: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px' ,paddingLeft:'50px'}}>
-                        		<Col span={2}>部门:</Col>
-                        		<Col span={8}>
-                           		 	<Input value={this.state.newdepatrment}
-                               		 onChange={(e) => { this.setState({ newdepatrment: e.target.value }) }} />
-                                </Col>
-                                <Col span={2} style={{ marginLeft: '50px' }}>职位:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newposition}
-                                        onChange={(e) => { this.setState({ newposition: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' }}>
-                                <Col span={2}>邮箱:</Col>
-                                <Col span={8}>
-                                    <Input value={this.state.newemail}
-                                        onChange={(e) => { this.setState({ newemail: e.target.value }) }} />
-                                </Col>
-                            </Row>
-                            <Row style={{ marginTop: '20px',paddingLeft:'50px' ,marginBottom:'50px'}}>
-                         </Row>
-			            </Spin>
-			        </Form>
-			    </Modal>
+				<AddContact
+					addcontactModul={this.state.addcontactModul}
+					uids={this.state.uids}
+					closeFollow={()=>{
+						this.setState({
+							addcontactModul:false
+						},()=>{
+							this.getNewWoman(this.state.uids)
+						})
+					}}
+				/>
 			    <Modal
 				      footer=''
 			          title="业务意向详情"

+ 58 - 6
js/component/manageCenter/customer/statistics/departmentStatistics/customerDetails.jsx

@@ -1,5 +1,5 @@
 import React,{Component} from 'react';
-import {message, Modal, Spin, Table} from "antd";
+import {message, Modal, Spin, Table, Tooltip} from "antd";
 import PropTypes from 'prop-types';
 import $ from "jquery/src/ajax";
 
@@ -15,11 +15,27 @@ class CustomerDetails extends Component{
             }, {
                 title: '来源',
                 dataIndex: 'sourceName',
-                key: 'sourceName'
+                key: 'sourceName',
+                width:75,
             }, {
-                title: '联系人',
+                title: '联系人(部门/职务)',
                 dataIndex: 'contacts',
-                key: 'contacts'
+                key: 'contacts',
+                width:155,
+                render:(text,record)=>{
+                    if(!text){return ''}
+                    let str = text+'('+(record.contactsDep ? record.contactsDep : ' ')+'/'+ (record.contactsPosition ? record.contactsPosition : ' ')+')';
+                    return (
+                        <Tooltip title={str}>
+                            <div style={{
+                                maxWidth:'155px',
+                                overflow:'hidden',
+                                textOverflow: "ellipsis",
+                                whiteSpace:'nowrap',
+                            }}>{str}</div>
+                        </Tooltip>
+                    )
+                }
             }, {
                 title: '联系人电话',
                 dataIndex: 'contactMobile',
@@ -28,11 +44,47 @@ class CustomerDetails extends Component{
                 title: '创建时间',
                 dataIndex: 'createTime',
                 key: 'createTime',
+                width:145,
             }, {
                 title: '跟进时间',
                 dataIndex: 'followTime',
                 key: 'followTime',
-            }],
+                width:145,
+            },{
+                title: '企业主营',
+                dataIndex: 'businessScope',
+                key: 'businessScope',
+                width:200,
+                render:(text)=>{
+                    return (
+                        <Tooltip title={text}>
+                            <div style={{
+                                maxWidth:'200px',
+                                overflow:'hidden',
+                                textOverflow: "ellipsis",
+                                whiteSpace:'nowrap',
+                            }}>{text}</div>
+                        </Tooltip>
+                    )
+                }
+            }, {
+                title: '意向合作',
+                dataIndex: 'intendedProject',
+                key: 'intendedProject',
+                width:200,
+                render:(text)=>{
+                    return (
+                        <Tooltip title={text}>
+                            <div style={{
+                                maxWidth:'200px',
+                                overflow:'hidden',
+                                textOverflow: "ellipsis",
+                                whiteSpace:'nowrap',
+                            }}>{text}</div>
+                        </Tooltip>
+                    )
+                }
+            },],
             pagination: {
                 defaultCurrent: 1,
                 defaultPageSize: 10,
@@ -109,7 +161,7 @@ class CustomerDetails extends Component{
                     visible={this.props.visible}
                     onOk={this.props.onCancel}
                     onCancel={this.props.onCancel}
-                    width='1000px'
+                    width='1300px'
                     title='客户详情'
                     footer=''
                     className="admin-desc-content">

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "afanti",
-  "version": "1.1.88",
+  "version": "1.1.90",
   "description": "",
   "main": "index.js",
   "scripts": {