import React, { Component } from "react";
import {
AutoComplete,
Button,
Cascader,
Input,
message,
Modal,
Popconfirm,
Select,
Spin,
Table,
Tag,
Tooltip
} from "antd";
import { areaSelect, getProvince } from '@/NewDicProvinceList';
import { industry, natureList } from '@/dataDic.js'
import { getIndustry, getNatureType } from '@/tools.js'
import $ from "jquery/src/ajax";
import TextArea from "antd/es/input/TextArea";
const Option = Select.Option;
class InforChange extends Component {
constructor(props) {
super(props);
let nature = [];
if (props.data.nature !== undefined || props.data.nature !== null) {
nature.push(props.data.nature);
}
if (props.data.enterpriseNature !== undefined || props.data.enterpriseNature !== null) {
nature.push(props.data.enterpriseNature);
}
if (props.data.listedNature !== undefined || props.data.listedNature !== null) {
nature.push(props.data.listedNature);
}
this.state = {
visible: false,
changeType: 0,
colunmn: [
{
title: "操作人名称",
dataIndex: "adminName",
key: "adminName",
},
{
title: "客户名称",
dataIndex: "name",
key: "name",
render: (text) => {
return (
{text}
)
}
},
{
title: "操作时间",
dataIndex: "createTimes",
key: "createTimes",
},
],
dataSource: [],
inputVisible: false,
inputValue: '',
dataArrar: [],
cooperationProjects: [],
orgCode: props.data.orgCode,
locationProvince: props.data.locationProvince,
businessScope: props.data.businessScope,
intendedProject: props.data.intendedProject,
industryName: props.data.industry,
nature: nature,
natureText: "",
natureOther: props.data.natureOther,
natureOptions: [{
value: 1,
label: "政府机构"
}, {
value: 2,
label: "科研院所"
}, {
value: 3,
label: "高等院校"
}, {
value: 4,
label: "社会团体"
}, {
value: 5,
label: "企业",
children: [{
value: 1,
label: "国企",
children: [{
value: 1,
label: "上市公司",
}, {
value: 0,
label: "非上市公司",
}]
}, {
value: 2,
label: "央企",
children: [{
value: 1,
label: "上市公司",
}, {
value: 0,
label: "非上市公司",
}]
}, {
value: 3,
label: "私企",
children: [{
value: 1,
label: "上市公司",
}, {
value: 0,
label: "非上市公司",
}]
}, {
value: 4,
label: "合资企业(含港澳台)",
children: [{
value: 1,
label: "上市公司",
}, {
value: 0,
label: "非上市公司",
}]
}, {
value: 5,
label: "外资控股",
children: [{
value: 1,
label: "上市公司",
}, {
value: 0,
label: "非上市公司",
}]
}]
}, {
value: 0,
label: "其他组织"
}]
}
this.onChange = this.onChange.bind(this);
this.onCancel = this.onCancel.bind(this);
this.loadData = this.loadData.bind(this);
this.onOk = this.onOk.bind(this);
this.showInput = this.showInput.bind(this);
this.handleInputConfirm = this.handleInputConfirm.bind(this);
this.handleClose = this.handleClose.bind(this);
this.handleCloseCooperation = this.handleCloseCooperation.bind(this);
this.supervisor = this.supervisor.bind(this);
this.onSelect = this.onSelect.bind(this);
}
componentDidMount() {
let natureText = this.getNatureText(this.state.nature);
this.setState({ natureText });
}
onChange(type) {
if (!this.props.data.level && this.props.data.level != 0) {
Modal.warning({
title: '系统提示',
content: (
请先设置客户类型。操作位置:
1.勾选客户名称
2.点击切换至“操作”项
3.选择相应的客户类型即可。
),
});
return
}
this.setState({
visible: true,
changeType: type,
})
}
onCancel() {
this.setState({
visible: false,
loading: false,
changeType: 0,
dataArrar: []
})
}
loadData() {
this.setState({
loading: true
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context + "/api/admin/customer/listUserName",
data: {
uid: this.props.enterpriseId,
},
success: function (data) {
if (data.error.length || data.data.list == "") {
if (data.error && data.error.length) {
message.warning(data.error[0].message);
}
} else {
this.setState({
initialName: data.data[0] ? data.data[0].name : ''
})
data.data.splice(0, 1);
this.setState({
dataSource: data.data,
});
}
}.bind(this),
}).always(
function () {
this.setState({
loading: false,
});
}.bind(this)
);
}
onOk() {
const { dataArrar } = this.state;
if (this.state.changeType === 3 && !/^[A-Z0-9]{15}$|^[A-Z0-9]{17}$|^[A-Z0-9]{18}$|^[A-Z0-9]{20}$/.test(dataArrar)) {
message.warning('请输入正确的统一社会信用代码')
return
}
if (this.state.changeType === 0 && dataArrar.length === 0) {
message.warning('请输入省-市-区');
return;
}
if (this.state.changeType === 1 && dataArrar.length === 0) {
message.warning('请输入企业主管产品/服务');
return;
}
if (this.state.changeType === 2 && dataArrar.length === 0) {
message.warning('请输入意向合作项目');
return;
}
if (this.state.changeType === 4 && dataArrar.length === 0) {
message.warning('请选择企业行业');
return
}
if (this.state.changeType === 5 && dataArrar.length === 0) {
message.warning('请选择客户性质');
return
}
this.setState({
loading: true
});
let data = {
uid: this.props.enterpriseId,
}
if (this.state.changeType === 0) {
data.province = dataArrar[0] || undefined;
data.city = dataArrar[1] || undefined;
data.area = dataArrar[2] || undefined;
}
if (this.state.changeType === 1) {
data.businessScope = dataArrar.join(',')
}
if (this.state.changeType === 2) {
let arr = [];
for (let i of dataArrar) {
arr.push(i.label)
}
data.intendedProject = arr.join(',')
}
if (this.state.changeType === 3) {
data.orgCode = dataArrar
// this.props.onCancel();
}
if (this.state.changeType === 4) {
data.industry = dataArrar
}
if (this.state.changeType === 5) {
let enterpriseNature = undefined; // 企业性质 0=其他,1=国企,2=央企,3=私企,4=合资企业(含港澳台),5=外资控股
let listedNature = undefined; // 上市 0=否,1=是
if (dataArrar.length >= 2) {
enterpriseNature = dataArrar[1];
}
if (dataArrar.length >= 3) {
listedNature = dataArrar[2];
}
data.nature = dataArrar[0];
data.enterpriseNature = enterpriseNature;
data.listedNature = listedNature;
data.natureOther = this.state.natureOther;
}
$.ajax({
url: globalConfig.context + "/api/admin/customer/updateUserDate",
method: "post",
data: data
}).done(
function (data) {
this.setState({
loading: false
});
if (data.error.length === 0) {
message.success("恭喜您,更改成功!");
if (this.state.changeType === 0) {
this.setState({
locationProvince: getProvince(dataArrar[0], dataArrar[1], dataArrar[2])
})
}
if (this.state.changeType === 1) {
this.setState({
businessScope: dataArrar.join(',')
})
}
if (this.state.changeType === 2) {
let arr = [];
for (let i of dataArrar) {
arr.push(i.label)
}
this.setState({
intendedProject: arr.join(',')
})
}
if (this.state.changeType === 3) {
this.setState({
orgCode: dataArrar
})
this.props.onCancel();
}
if (this.state.changeType === 4) {
this.setState({
industryName: getIndustry(dataArrar)
})
}
if (this.state.changeType === 5) {
this.setState({
natureText: this.getNatureText(dataArrar)
})
}
this.onCancel();
} else {
message.warning(data.error[0].message);
}
}.bind(this)
)
}
/**
* 转译客户性质
* @param {*} value
* @returns
*/
getNatureText(value) {
if (value.length === 1 && value[0] === 0) {
// 其他
return `其他(${this.state.natureOther})`;
} else {
let text = [];
let level = 0;
const loopData = (data) => {
for (let i=0; i 16) {
message.warning('单个标签字数不能超过16个字符')
lv = false;
return;
}
}
if (lv) {
arr = Array.from(new Set(arr));
arr = arr.filter(v => v);
this.setState({
dataArrar: arr,
inputVisible: false,
inputValue: '',
});
}
}
handleClose(removedTag) {
let dataArrar = this.state.dataArrar.filter(tag => { return tag !== removedTag });
this.setState({ dataArrar });
}
handleCloseCooperation(removedTag) {
let dataArrar = this.state.dataArrar.filter(tag => { return tag.value !== removedTag.value });
this.setState({ dataArrar });
}
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.dataArrar.filter(v => v.value === value);
if (arr.length > 0) {
if (arr1.length > 0) {
message.warning('选项已存在');
} else {
this.state.dataArrar.push({
label: arr[0].bname,
value: arr[0].id,
})
this.setState({
dataArrar: this.state.dataArrar
})
}
}
}
render() {
return (
统一社会信用代码:
{
!this.state.orgCode ? "待补充" : this.state.orgCode
}
{this.props.type === 'modify' &&
}
{this.props.type === 'modify' &&
如,科德集团则填写91430105670766451M}
省-市-区:
{
this.state.locationProvince
}
{this.props.type === 'modify' &&
}
企业主营产品/服务:
{
this.state.businessScope
}
{this.props.type === 'modify' &&
}
意向合作项目:
{
this.state.intendedProject
}
{this.props.type === 'modify' &&
}
企业行业:
{
this.state.industryName
}
{this.props.type === 'modify' &&
}
客户性质:
{
this.state.natureText
}
{this.props.type === 'modify' &&
}
{this.props.type === 'modify' ?
{
this.state.changeType === 0 ? '省-市-区' :
this.state.changeType === 1 ? '企业主管产品/服务' :
this.state.changeType === 2 ? '意向合作项目' :
this.state.changeType === 3 ? '统一社会信用代码' :
this.state.changeType === 4 ? '企业行业' :
this.state.changeType === 5 ? '客户性质' : ''
}
:
{
this.state.changeType === 0 ? this.state.locationProvince :
this.state.changeType === 1 ? this.state.businessScope :
this.state.changeType === 2 ? this.state.intendedProject :
this.state.changeType === 3 ? this.state.orgCode :
this.state.changeType === 4 ? this.state.industryName :
this.state.changeType === 5 ? this.state.natureText : ''
}
更改:
{
this.state.changeType === 0 ?
{
this.setState({
dataArrar: e
})
}}
/> :
this.state.changeType === 1 ?
{this.state.dataArrar.map((tag) => {
const isLongTag = tag.length > 20;
const tagElem = (
this.handleClose(tag)}>
{isLongTag ? `${tag.slice(0, 20)}...` : tag}
);
return isLongTag ? {tagElem} : tagElem;
})}
{
!this.state.inputVisible &&
}
{this.state.inputVisible && (
)}
:
this.state.changeType === 2 ?
{this.state.dataArrar.map((tag, index) => {
const isLongTag = tag.label.length > 20;
const tagElem = (
this.handleCloseCooperation(tag)}>
{isLongTag ? `${tag.label.slice(0, 20)}...` : tag.label}
);
return isLongTag ? {tagElem} : tagElem;
})}
{
this.state.cooperationProjects.map(function (item) {
return {item.bname}
})
}
:
this.state.changeType === 3 ?
: this.state.changeType === 4 ?
: this.state.changeType === 5 ?
{/* */}
{ this.setState({ dataArrar: e }) }}
/>
{
!!this.state.dataArrar && this.state.dataArrar[0] == 0 &&
}
: ''
}
: this.props.type === 'journal' ?
: null
}
{
this.props.type === 'modify' ?
{
e.stopPropagation();
this.onOk();
}} okText="确定" cancelText="取消">
: null
}
)
}
}
export default InforChange;