123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927 |
- import React from 'react';
- import {
- Button, Cascader, Input, Select, Tag,
- Spin, Table, message, Form, Col, Tabs, Modal, Icon, AutoComplete
- } from 'antd';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- import {areaSelect, citySelect, provinceList } from '@/NewDicProvinceList';
- import { ShowModal, onReplace } from '../../../../tools.js'
- import { socialAttribute, customerSource } from '@/dataDic.js';
- import Outbound from '../../NEW/components/outbound';
- import ShowModalDiv from "@/showModal.jsx";
- import { ChooseList } from "../../../order/orderNew/chooseList";
- import TextArea from "antd/es/input/TextArea";
- const QueryCustomer = React.createClass({
- loadData(pageNo, apiUrl) {
- // 新需求 除湖南和内蒙古外 不让其他省操作
- if (adminData.province != "21" && adminData.province != "11") {
- return
- }
- this.setState({
- loading: true,
- ispage: pageNo,
- });
- let api = apiUrl ? apiUrl : this.props.ApiUrl;
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + api,
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- name: this.state.nameSearch,
- province: !this.state.addressSearch.length
- ? this.state.provinceSearch
- : this.state.addressSearch[0],
- city: !this.state.addressSearch.length
- ? ""
- : this.state.addressSearch[1],
- sort: this.state.sort
- },
- success: function (data) {
- ShowModal(this);
- let theArr = [];
- if (data.error.length || data.data.list == "") {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- } else {
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- theArr.push({
- key: i,
- id: thisdata.uid,
- name: thisdata.name,
- contacts: thisdata.contacts,
- contactMobile: thisdata.contactMobile,
- signBills: thisdata.signBills,
- createTime:
- thisdata.createTime && thisdata.createTime.split(" ")[0],
- transferTime:
- thisdata.transferTime && thisdata.transferTime.split(" ")[0],
- locationProvince: thisdata.province
- ? (thisdata.province || '') + (thisdata.city ? "-" + thisdata.city : '') + (thisdata.area ? "-" + thisdata.area : '')
- : "--",
- });
- }
- 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,
- selectedRowKeys: [],
- });
- }.bind(this),
- }).always(
- function () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- getInitialState() {
- return {
- verification: false,
- businessScope: [],
- cooperationProjects: [],
- selectCooperationProjects: [],
- sort: 0,
- addressSearch: [],
- dataSource: [],
- loading: false,
- selectedRowKeys: [],
- selectedRows: [],
- selectedData: [],
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function (page) {
- this.loadData(page);
- }.bind(this),
- showTotal: function (total) {
- return '共' + total + '条数据';
- }
- },
- columns: [{
- title: '客户名称',
- dataIndex: 'name',
- key: 'name',
- render: (text, record, index) =>
- onReplace(text)
- },
- {
- title: '地区',
- dataIndex: 'locationProvince',
- key: 'locationProvince',
- },
- // {
- // title: '联系人',
- // dataIndex: 'contacts',
- // key: 'contacts',
- // },{
- // title: '联系电话',
- // dataIndex: 'contactMobile',
- // key: 'contactss',
- // },
- {
- title: '创建时间',
- dataIndex: 'createTime',
- key: 'createTime',
- },
- {
- title: '转换时间',
- dataIndex: 'transferTime',
- key: 'transferTime',
- width: 500,
- render: (text, record) => {
- return <div>
- <span style={{ marginRight: 20 }}>{text}</span>
- {!this.props.intentionState &&
- <Outbound
- type="public"
- uid={record.id}
- />}
- </div>
- }
- },
- {
- title: '操作',
- dataIndex: 'abc',
- key: 'abc',
- width: 250,
- render: (text, record, index) => {
- return <div>
- <Button onClick={(e) => { e.stopPropagation(), this.receive(record) }} type="primary">领取</Button>
- <Button
- onClick={(e) => {
- e.stopPropagation(),
- this.rTips(record)
- }}
- style={{ marginLeft: 10 }}
- type="primary">领取为私有渠道信息</Button>
- </div>
- }
- }
- ],
- }
- },
- handleClose(removedTag) {
- let businessScope = this.state.businessScope.filter(tag => { return tag !== removedTag });
- this.setState({ businessScope });
- },
- handleCloseCooperation(removedTag) {
- let selectCooperationProjects = this.state.selectCooperationProjects.filter(tag => { return tag.value !== removedTag.value });
- this.setState({ selectCooperationProjects });
- },
- showInput() {
- let str = this.state.businessScope.join('/')
- this.setState({
- inputVisible: true,
- inputValue: str
- });
- },
- handleInputConfirm() {
- let inputValue = this.state.inputValue;
- let arr = inputValue.split('/');
- let lv = true;
- for (let i of arr) {
- if (!i.replace(/\s+/g, '')) {
- message.warning("请填写关键词且不为空");
- return;
- }
- if (i.length > 16) {
- message.warning('单个标签字数不能超过16个字符')
- lv = false;
- return;
- }
- }
- if (lv) {
- arr = Array.from(new Set(arr));
- arr = arr.filter(v => v);
- this.setState({
- businessScope: arr,
- inputVisible: false,
- inputValue: '',
- });
- }
- },
- //加载(自动补全)
- supervisor(value) {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/admin/order/getBusinessProjectByName',
- data: {
- businessName: value
- },
- success: function (data) {
- let thedata = data.data;
- if (data.error.length === 0) {
- this.setState({
- cooperationProjects: thedata,
- });
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this),
- }).always(
- function () {
- }.bind(this)
- );
- },
- onSelect(value) {
- let arr = this.state.cooperationProjects.filter(v => v.id === value);
- let arr1 = this.state.selectCooperationProjects.filter(v => v.value === value);
- if (arr.length > 0) {
- if (arr1.length > 0) {
- message.warning('选项已存在');
- } else {
- this.state.selectCooperationProjects.push({
- label: arr[0].bname,
- value: arr[0].id,
- })
- this.setState({
- selectCooperationProjects: this.state.selectCooperationProjects
- })
- }
- }
- },
- // 查询客户补充完整
- receive(e) {
- this.setState({
- loading: true,
- selectedRowKeys: [],
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/customer/checkUser",
- data: {
- id: e.id || e.uid,
- }
- }).done(function (data) {
- if (!data.error.length) {
- let obj = data.data
- let selectCooperationProjects = !!obj.intendedProject ? obj.intendedProject.split(',') : []
- if (selectCooperationProjects.length > 0) {
- selectCooperationProjects = selectCooperationProjects.map((item) => {
- return { label: item }
- })
- }
- this.setState({
- loading: false,
- verification: true,
- id: obj.id,
- name: obj.name,
- orgCode: obj.orgCode,
- ProvinceCity: [obj.province, obj.city, obj.area],
- // content: obj.contacts,
- position: obj.position,
- // telnum: obj.contactMobile,
- businessScope: !!obj.businessScope ? obj.businessScope.split(',') : [],
- selectCooperationProjects: selectCooperationProjects,
- level: obj.level,
- nature: obj.nature,
- natureOther: obj.natureOther,
- });
- } else {
- message.warning(data.error[0].message);
- };
- }.bind(this));
- },
- /*单个领取(旧)*/
- receives(e) {
- this.setState({
- loading: true,
- selectedRowKeys: [],
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/customer/receiveCustomer",
- data: {
- uid: e.id,
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success(e.signBills == 1 ? '领取成功!客户为签单客户,请在【签单单位客户】列表中查询' : '领取成功!客户为私有客户,请在【私有单位客户】列表中查询');
- this.setState({
- loading: false,
- });
- } else {
- message.warning(data.error[0].message);
- };
- this.loadData(this.state.ispage);
- }.bind(this));
- },
- rTips(e) {
- let _this = this;
- Modal.confirm({
- title: "温馨提示",
- content: (
- <span style={{ color: "red" }}>
- <p>名称中含“协会”“商会”等名称为渠道信息!</p>
- <p>您是否确定将客户信息,领取为“私有渠道”信息,领取后,该信息即成为渠道信息不可再修改!!!</p>
- <p>领取成功后,您可以通过:渠道管理-渠道列表-私有渠道,查询到此条信息</p>
- </span>
- ),
- onOk() {
- _this.receiveNew(e)
- },
- onCancel() { },
- });
- },
- /*领取为私有渠道信息*/
- receiveNew(e) {
- this.setState({
- loading: true,
- selectedRowKeys: [],
- });
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/customer/receiveAsChannel",
- data: {
- uid: e.id,
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('领取成功!');
- this.setState({
- loading: false,
- });
- } else {
- message.warning(data.error[0].message);
- };
- this.loadData(this.state.ispage);
- }.bind(this));
- },
- closeDesc(e) {
- this.state.visitModul = e;
- },
- search() {
- this.loadData();
- },
- reset() {
- this.state.nameSearch = '';
- this.state.provinceSearch = undefined;
- this.state.addressSearch = [];
- this.state.sort = 0
- this.loadData()
- },
- componentWillReceiveProps(nextProps) {
- if (nextProps.ApiUrl != this.props.ApiUrl) {
- this.state.nameSearch = '';
- this.state.provinceSearch = undefined;
- this.state.addressSearch = [];
- this.loadData(null, nextProps.ApiUrl);
- };
- },
- componentWillMount() {
- //城市
- let Province = [];
- provinceList.map(function (item) {
- var id = String(item.id)
- Province.push(
- <Select.Option value={id} key={item.name}>{item.name}</Select.Option>
- )
- });
- this.state.Provinces = Province;
- this.loadData();
- },
- changeList(arr) {
- const newArr = [];
- this.state.columns.forEach(item => {
- arr.forEach(val => {
- if (val === item.title) {
- newArr.push(item);
- }
- });
- });
- this.setState({
- changeList: newArr
- });
- },
- // 补充客户并领取
- handleSubmit(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- let re = new RegExp("^[\u4e00-\u9fa5]");
- if (!re.test(values.name)) {
- message.warning('公司名称必须以汉字开头!')
- return
- }
- if (!re.test(values.name.charAt(values.name.length - 1))) {
- message.warning('公司名称必须以汉字结尾!')
- return
- }
- if (values.name.length > 64) {
- message.warning('公司名称字数不超过64个!')
- return false;
- };
- let regu = /[`~!#$%^&*'_[\]+=<>?:"{}|~!#¥%……&*=-@-!{}|/《》?:“”【】、;;‘’,,.。、\s+]/g;
- if (regu.test(values.name)) {
- message.warning('公司名称不能存在特殊符号或空格!')
- return false;
- }
- if (!/^[A-Z0-9]{15}$|^[A-Z0-9]{17}$|^[A-Z0-9]{18}$|^[A-Z0-9]{20}$/.test(values.orgCode)) {
- message.warning('请输入正确的统一社会信用代码!')
- return
- }
- if (/.*[\u4e00-\u9fa5]+.*$/.test(values.content)) {
- } else {
- message.error("请填写正确的联系人,且至少包含一个汉字");
- return false;
- };
- if (/.*[\u4e00-\u9fa5]+.*$/.test(values.position)) {
- } else {
- message.error("请填写正确的职位,且至少包含一个汉字");
- return false;
- };
- if (!values.ProvinceCity[1]) {
- message.warning('请选择地区');
- return false;
- };
- if (values.content.length > 32) {
- message.warning('联系人字数不超过32个')
- return false;
- };
- if (values.length > 13) {
- message.warning('电话号码字数不超过13个')
- return false;
- };
- if (this.state.businessScope.length === 0) {
- message.warning('请选择主营产品')
- return false;
- }
- if (this.state.selectCooperationProjects.length === 0) {
- message.warning('请选择意向合作项目')
- return false;
- }
- if (!this.state.level && this.state.level != 0) {
- message.warning('请选择客户类型')
- return false;
- }
- if (!this.state.nature && this.state.nature != 0) {
- message.warning('请选择客户性质')
- return false;
- }
- if (this.state.nature == 0 && !this.state.natureOther) {
- message.warning('其他说明不能为空')
- return false;
- }
- let arr = [];
- for (let i of this.state.selectCooperationProjects) {
- arr.push(i.label)
- }
- if (!err) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/admin/customer/updateAndReceiveCustomer',
- data: {
- id: this.state.id,
- orgCode: values.orgCode,
- contacts: values.content,
- contactMobile: values.telnum,
- societyTag: '0', //社会属性默认为 社会企业
- //source:values.customerSource,
- province: (values.ProvinceCity)[0],//省
- city: (values.ProvinceCity)[1],//市
- area: (values.ProvinceCity)[2],//区
- type: '1',
- intendedProject: arr.join(','),
- businessScope: this.state.businessScope.join(','),
- position: values.position,
- level: this.state.level,
- nature: this.state.nature,
- natureOther: this.state.natureOther,
- }
- }).done(function (data) {
- this.setState({
- loading: false
- });
- if (!data.error.length) {
- message.success('领取成功!');
- this.setState({
- verification: false
- })
- this.loadData(this.state.ispage);
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this));
- }
- });
- },
- render() {
- const intentionState = this.props.intentionState;
- const { getFieldDecorator } = this.props.form;
- const formItemLayout = {
- labelCol: { span: 6 },
- wrapperCol: { span: 14 },
- };
- const FormItem = Form.Item;
- const { TabPane } = Tabs
- const rowSelection = {
- selectedRowKeys: this.state.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.setState({
- selectedRows: selectedRows,
- selectedRowKeys: selectedRowKeys
- });
- },
- onSelect: (recordt, selected, selectedData) => {
- this.setState({
- selectedData: selectedData,
- recordt: recordt.id
- })
- },
- };
- return (
- <div className="user-content">
- <ShowModalDiv ShowModal={this.state.showModal} onClose={() => { this.setState({ showModal: false }) }} />
- <div className="content-title" style={{ marginBottom: 10 }}>
- <span style={{ fontWeight: 900, fontSize: 16 }}>{!intentionState ? "单位公共客户" : "个人公共客户"}</span>
- </div>
- <Tabs defaultActiveKey="1" onChange={this.callback} className="test">
- <TabPane tab="搜索" key="1">
- <div className="user-search">
- <Input
- placeholder="客户名称"
- value={this.state.nameSearch}
- style={{ width: 150 }}
- onChange={(e) => {
- this.setState({ nameSearch: e.target.value });
- }}
- />
- <Select
- placeholder="省"
- style={{ width: 80 }}
- value={this.state.provinceSearch}
- onChange={(e) => {
- this.setState({ provinceSearch: e });
- }}
- >
- {this.state.Provinces}
- </Select>
- <span style={{ marginRight: "10px" }}>
- <Cascader
- options={citySelect()}
- value={this.state.addressSearch}
- placeholder="选择城市"
- onChange={(e, pre) => {
- this.setState({ addressSearch: e });
- }}
- />
- </span>
- <span>排序:</span>
- <Select style={{ width: 120 }} value={this.state.sort} onChange={e => { this.setState({ sort: e }) }} placeholder="选择排序">
- <Option value={0}>默认</Option>
- <Option value={1}>降序</Option>
- <Option value={2}>升序</Option>
- </Select>
- <Button type="primary" onClick={this.search}>
- 搜索
- </Button>
- <Button onClick={this.reset}>重置</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>
- </Tabs>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table
- size="middle"
- columns={
- this.state.changeList
- ? this.state.changeList
- : this.state.columns
- }
- dataSource={this.state.dataSource}
- // rowSelection={rowSelection}
- pagination={this.state.pagination}
- />
- </Spin>
- </div>
- <Modal maskClosable={false}
- visible={this.state.verification}
- onCancel={() => {
- this.setState({
- verification: false,
- id: undefined,
- name: undefined,
- orgCode: undefined,
- ProvinceCity: [],
- content: undefined,
- position: undefined,
- telnum: undefined,
- businessScope: [],
- selectCooperationProjects: [],
- level: undefined,
- nature: undefined,
- natureOther: undefined,
- })
- this.props.form.resetFields();
- }}
- width='600px'
- title='客户信息'
- footer={null}
- className="admin-desc-content">
- <Spin spinning={this.state.loading}>
- <div>
- <Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form">
- <Spin spinning={this.state.loading}>
- <div>
- <Col style={{ color: 'red', marginBottom: '10px' }} span={12} offset={6}>注意:请录入真实有效的客户信息</Col>
- <div className="clearfix">
- <FormItem className="mid-item"
- {...formItemLayout}
- label="公司名称" >
- {getFieldDecorator('name', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.name
- })(
- <Input placeholder="公司名称" disabled />
- // <span style={{ display: 'flex', alignItems: 'center', position: 'relative' }}>
- // <Input placeholder="公司名称" value={this.state.name} />
- // {this.state.verification && <Icon type="check-circle" style={{
- // fontSize: 16,
- // color: '#30e031',
- // position: 'absolute',
- // right: '80px',
- // }} />}
- // <Button onClick={this.checkUserName} type="primary" style={{ marginLeft: '10px' }}>验证</Button>
- // </span>
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- {...formItemLayout}
- label="统一社会信用代码"
- >
- {getFieldDecorator('orgCode', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.orgCode
- })(
- <Input placeholder="统一社会信用代码" />
- )}
- </FormItem>
- </div>
- <Col style={{ color: 'red', marginBottom: '10px' }} span={12} offset={6}>如,科德集团则填写91430105670766451M</Col>
- <div className="clearfix">
- <FormItem
- {...formItemLayout}
- label="省-市-区"
- >
- {getFieldDecorator('ProvinceCity', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.ProvinceCity
- })(
- <Cascader options={areaSelect()} placeholder="选择城市" />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="mid-item"
- {...formItemLayout}
- label="联系人" >
- {getFieldDecorator('content', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.content
- })(
- <Input placeholder="联系人姓名" />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="mid-item"
- {...formItemLayout}
- label="职位" >
- {getFieldDecorator('position', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.position
- })(
- <Input placeholder="联系人职位" />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="mid-item"
- {...formItemLayout}
- label="联系电话" >
- {getFieldDecorator('telnum', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: this.state.telnum
- })(
- <Input placeholder="请填写手机号,仅填座机号时,请后续补充手机号" />
- )}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="mid-item"
- {...formItemLayout}
- required
- label="主营产品" >
- <div>
- {this.state.businessScope.map((tag, index) => {
- const isLongTag = tag.length > 20;
- const tagElem = (
- <Tag closable key={tag} afterClose={() => this.handleClose(tag)}>
- {isLongTag ? `${tag.slice(0, 20)}...` : tag}
- </Tag>
- );
- return isLongTag ? <Tooltip title={tag} key={tag}>{tagElem}</Tooltip> : tagElem;
- })}
- {
- !this.state.inputVisible &&
- <Button
- size="small"
- type="primary"
- onClick={this.showInput}>
- + 新增主营产品
- </Button>
- }
- </div>
- {this.state.inputVisible && (<div>
- <TextArea
- style={{ width: '300px', height: '100px' }}
- value={this.state.inputValue}
- onChange={(e) => {
- this.setState({
- inputValue: e.target.value
- })
- }} />
- <div style={{ color: '#f00' }}>提示:请用 / 符号隔开关键字</div>
- <div>
- <Button
- size="small"
- type="primary"
- onClick={this.handleInputConfirm}>
- 确定
- </Button>
- <Button
- size="small"
- style={{ marginLeft: '5px' }}
- onClick={() => {
- this.setState({
- inputVisible: false,
- inputValue: ''
- })
- }}>
- 取消
- </Button>
- </div>
- </div>)}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="mid-item"
- {...formItemLayout}
- required
- label="意向合作项目" >
- <div>
- <div style={{ paddingBottom: this.state.selectCooperationProjects.length === 0 ? 0 : '10px' }}>
- {this.state.selectCooperationProjects.map((tag, index) => {
- const isLongTag = tag.label.length > 20;
- const tagElem = (
- <Tag closable key={tag.label} afterClose={() => this.handleCloseCooperation(tag)}>
- {isLongTag ? `${tag.label.slice(0, 20)}...` : tag.label}
- </Tag>
- );
- return isLongTag ? <Tooltip title={tag.label} key={tag.label}>{tagElem}</Tooltip> : tagElem;
- })}
- </div>
- <div>
- <AutoComplete
- style={{ width: 200 }}
- onSearch={this.supervisor}
- onSelect={this.onSelect}
- placeholder="请输入关键字"
- >
- {
- this.state.cooperationProjects.map(function (item) {
- return <Select.Option key={item.id} value={item.id}>{item.bname}</Select.Option>
- })
- }
- </AutoComplete>
- </div>
- </div>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="mid-item"
- {...formItemLayout}
- required
- label="客户类型" >
- <Select
- placeholder="请选择客户类型"
- value={this.state.level}
- onChange={(e) => {
- this.setState({ level: e });
- }}
- >
- <Option value={0}>一般客户(一年以上预签)</Option>
- <Option value={1}>意向客户(半年内预签)</Option>
- <Option value={2}>重点客户(一个月内预签)</Option>
- </Select>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="mid-item"
- {...formItemLayout}
- required
- label="客户性质" >
- <Select
- placeholder="请选择客户性质"
- value={this.state.nature}
- onChange={(e) => {
- this.setState({ nature: e });
- }}
- >
- <Option value={1}>政府机构</Option>
- <Option value={2}>科研院所</Option>
- <Option value={3}>高等院校</Option>
- <Option value={4}>国有企业</Option>
- <Option value={5}>民营企业</Option>
- <Option value={6}>社会团体</Option>
- <Option value={0}>其他(请注明)</Option>
- </Select>
- </FormItem>
- </div>
- {
- this.state.nature == 0 &&
- <div className="clearfix">
- <FormItem
- className="mid-item"
- {...formItemLayout}
- required
- label="其他说明" >
- <Input
- placeholder="其他说明"
- value={this.state.natureOther}
- onChange={e => {
- this.setState({
- natureOther: e.target.value
- })
- }}
- />
- </FormItem>
- </div>
- }
- </div>
- <FormItem wrapperCol={{ span: 12, offset: 6 }}>
- <Button type="primary" htmlType="submit" style={{}}>领取客户</Button>
- </FormItem>
- </Spin>
- </Form >
- </div>
- </Spin>
- </Modal>
- </div>
- );
- }
- })
- export default Form.create({})(QueryCustomer);
|