123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939 |
- import React from "react";
- import $ from "jquery/src/ajax";
- import moment from "moment";
- import {
- Button,
- Form,
- Input,
- Spin,
- Table,
- Select,
- message,
- Tabs,
- DatePicker,
- AutoComplete,
- Modal,
- Upload,
- Icon,
- Tooltip,
- Tag,
- } from "antd";
- import { ChooseList } from "../../../order/orderNew/chooseList";
- import { ShowModal, } from "@/tools.js"
- import { accountType, accountStatus } from "@/dataDic";
- import ZhuanjiaoDetail from "@/zhuanjiaoDetail.jsx";
- import IntentionDetail from "./intentionDetail/intentionDetail";
- import ShowModalDiv from "@/showModal.jsx";
- import FollowDetail from "./followDetail"
- import Outbound from '../components/outbound';
- import './clue.less';
- const FormItem = Form.Item;
- const { RangePicker } = DatePicker;
- const { TabPane } = Tabs;
- const LimitedProject = React.createClass({
- getInitialState() {
- return {
- searchValues: {
- clueProcess: this.props.intentionState == 1 ? "0" : ""
- }, // 列表筛选条件
- loading: false, //加载动画
- changeList: undefined, // 更改后的表格显示数据
- dataSource: [], // 列表数据
- fjlist: [],
- 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: "nickname",
- key: "nickname",
- width: 200,
- },
- {
- title: "联系人",
- dataIndex: "contacts",
- key: "contacts",
- },
- {
- title: "联系电话",
- dataIndex: "contactMobile",
- key: "contactMobile",
- width: 100,
- },
- {
- title: "所属人",
- dataIndex: "adminName",
- key: "adminName",
- isSelect: "jl",
- },
- {
- title: "转交人",
- dataIndex: "clueAname",
- key: "clueAname",
- isSelect: "yxy",
- },
- {
- title: "状态",
- dataIndex: "clueProcess",
- key: "clueProcess",
- render: (text, record) => {
- return (
- <div style={{ color: ["green", "", "red", "", ""][text] }}>
- {["待分配", "已分配", "已回退", "已释放", "已领取"][text]}
- </div>
- );
- },
- },
- {
- title: "线索释放天数",
- dataIndex: "days",
- key: "days",
- width: 60,
- },
- {
- title: "转入时间",
- dataIndex: "clueTransferTime",
- key: "clueTransferTime",
- render: (text, record) => {
- return (
- <div>
- {text}
- </div>
- );
- },
- },
- {
- title: "操作",
- dataIndex: "op",
- key: "op",
- render: (text, record) => {
- return (
- <div>
- <Outbound
- type="private"
- noTransfer={true}
- uid={record.id}
- isOwn={1}
- />
- {
- ((record.clueProcess == 1 && this.props.intentionState == 2) ||
- ((record.clueProcess == 0 || record.clueProcess == 2) && this.props.intentionState == 1)
- ) &&
- <Button
- style={{ marginLeft: 10 }}
- type="primary"
- onClick={(e) => {
- let _this = this;
- Modal.confirm({
- title: "提示",
- content: (
- <span style={{ color: "red" }}>
- 确定将此客户领取至私有库吗?
- <div style={{ marginTop: "5px", color: "#000" }}>
- {record.nickname}
- </div>
- </span>
- ),
- onOk() {
- _this.changeAssigner(3, record.id)
- },
- onCancel() { },
- });
- }}
- >
- 领取
- </Button>
- }
- {this.props.intentionState == 2 &&
- <Button
- style={{ marginLeft: 10 }}
- type="primary"
- onClick={(e) => {
- let _this = this;
- Modal.confirm({
- title: "提示",
- content: (
- <span style={{ color: "red" }}>
- 确定将此客户退回吗?
- <div style={{ marginTop: "5px", color: "#000" }}>
- {record.nickname}
- </div>
- </span>
- ),
- onOk() {
- _this.changeAssigner(1, record.id)
- },
- onCancel() { },
- });
- }}
- >
- 回退
- </Button>}
- <Button
- style={{ marginLeft: 10 }}
- type="primary"
- onClick={(e) => {
- e.stopPropagation();
- this.zhuanjiaoDetail(record);
- }}
- >
- 记录
- </Button>
- </div>
- );
- },
- },
- ],
- customerArr: [],
- selectedRowKeys: [],
- selectedRows: [],
- zhuanjiaoVisible: false,
- categoryArr: [],
- upLoad: {
- customRequest: (options) => {
- this.setState({
- upLoadFileLoading: true,
- })
- let params = new FormData();
- params.append("file", options.file);
- $.ajax({
- method: "post",
- url: globalConfig.context + "/api/admin/userClue/import",
- async: true,
- cache: false,
- contentType: false,
- processData: false,
- data: params
- }).done(
- function (data) {
- this.setState({
- upLoadFileLoading: false,
- })
- if (data.error.length === 0) {
- if (data.data.errorCount == 0) {
- message.success("上传成功!");
- } else {
- Modal.info({
- title: "提示",
- width: 500,
- content: (
- <span>
- {data.data.errorCount}个客户信息导入失败!
- <div style={{ color: "red" }} dangerouslySetInnerHTML={{ __html: data.data.msg }} />
- </span>
- ),
- onOk() { },
- });
- }
- this.loadData();
- } else {
- message.warning(data.error[0].message);
- this.loadData();
- }
- }.bind(this)
- ).always(
- function () {
- this.loadData();
- this.setState({
- upLoadFileLoading: false,
- });
- }.bind(this)
- );
- },
- name: "file",
- action: globalConfig.context + "/api/admin/userClue/import",
- showUploadList: false,
- },
- status: this.props.intentionState,
- };
- },
- componentWillMount() {
- this.defaultcolumns()
- },
- defaultcolumns() {
- const newArr = [];
- this.state.columns.forEach((item) => {
- if (this.props.intentionState == 1) {
- if (item.isSelect == "yxy") {
- return
- } else {
- newArr.push(item);
- }
- } else if (this.props.intentionState == 2) {
- if (item.isSelect == "jl") {
- return
- } else {
- newArr.push(item);
- }
- }
- });
- this.setState({
- changeList: newArr,
- }, () => {
- this.loadData();
- });
- },
- componentWillReceiveProps(prevProps) {
- if (prevProps.intentionState !== this.state.status) {
- this.setState({
- status: prevProps.intentionState
- }, () => {
- this.defaultcolumns()
- })
- }
- },
- // 列表接口
- loadData(pageNo) {
- const { searchValues, pagination } = this.state;
- this.setState({
- loading: true,
- });
- let datas = Object.assign(searchValues, {
- pageNo: pageNo || 1,
- pageSize: pagination.pageSize,
- shiroType: this.props.intentionState,
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/userClue/list",
- data: datas,
- success: function (data) {
- ShowModal(this);
- this.setState({
- loading: false,
- });
- let theArr = [];
- if (data.error && data.error.length === 0) {
- if (data.data) {
- pagination.current = data.data.pageNo;
- pagination.total = data.data.totalCount;
- if (data.data && data.data.list && !data.data.list.length) {
- pagination.current = 0
- pagination.total = 0
- };
- this.setState({
- dataSource: data.data.list,
- 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)
- );
- },
- // 搜索
- search() {
- this.loadData();
- },
- // 重置
- reset() {
- this.setState({
- searchValues: {
- clueProcess: this.props.intentionState == 1 ? "0" : ""
- },
- }, () => {
- this.defaultcolumns();
- })
- },
- changeList(arr) {
- const newArr = [];
- this.state.columns.forEach((item) => {
- arr.forEach((val) => {
- if (val === item.title) {
- newArr.push(item);
- }
- });
- });
- this.setState({
- changeList: newArr,
- });
- },
- 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 () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- 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,
- });
- },
- httpChange(e) {
- if (e.length >= 1) {
- this.supervisor(e);
- }
- this.setState({
- auto: e,
- });
- },
- showConfirm() {
- let _this = this;
- Modal.confirm({
- title: "提示",
- content: (
- <span style={{ color: "red" }}>
- 确定要转交以下客户吗?
- {this.state.selectedRows.map((value, index) => (
- <div key={index} style={{ marginTop: "5px", color: "#000" }}>
- {value.nickname}
- </div>
- ))}
- </span>
- ),
- onOk() {
- _this.changeAssigner(0)
- },
- onCancel() { },
- });
- },
- showConfirms() {
- let _this = this;
- Modal.confirm({
- title: "您确定将以下客户移至公共库吗?",
- content: (
- <span style={{ color: "red" }}>
- 移除后,以下客户将被别人领取!
- {this.state.selectedRows.map((value, index) => (
- <div key={index} style={{ marginTop: "5px", color: "#000" }}>
- {value.nickname}
- </div>
- ))}
- </span>
- ),
- onOk() {
- _this.changeAssigner(2);
- },
- onCancel() { },
- });
- },
- // 批量转交,移至公共库
- changeAssigner(type, uid) {
- const _this = this;
- if (type == 0 && !this.state.theTypes) {
- message.warning("请输入转交人姓名");
- return
- }
- let changeIds = "";
- if (type == 0 || type == 2) {
- for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
- let rowItem = this.state.selectedRows[idx];
- if (rowItem.id) {
- changeIds =
- this.state.selectedRows.length - 1 === idx
- ? changeIds + rowItem.id
- : changeIds + rowItem.id + ",";
- }
- }
- } else if (type == 1 || type == 3) {
- changeIds = uid
- }
- let loading = message.loading("加载中...");
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/userClue/transfer",
- data: {
- uid: changeIds,
- type,
- transferId: type == 0 ? this.state.theTypes : undefined,
- },
- }).done(
- function (data) {
- loading();
- this.setState({
- selList: [],
- })
- if (!data.error.length) {
- this.setState({
- auto: "",
- loading: false,
- selectedRowKeys: [],
- });
- if (data.data == 1) {
- message.success(["转交成功!", "退回成功!", "成功移至公共库!", "领取成功!"][type]);
- _this.loadData();
- } else {
- data.data.forEach(function (e) { message.warning(e) })
- }
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this)
- );
- },
- zhuanjiaoDetail(record) {
- this.setState({
- zhuanjiaoVisible: true,
- zhuanjiaoId: record.id,
- });
- },
- zhuanjiaoDetailCancel() {
- this.setState({
- zhuanjiaoVisible: false,
- });
- },
- tableRowClick(record, index) {
- this.state.visitModul = false;
- this.setState({
- modalVisible: true,
- basicState: true,
- contactState: true,
- modalName: record.name,
- RowData: record,
- });
- },
- closeDesc(e, s) {
- this.state.basicState = e;
- this.state.visitModul = e;
- this.state.modalVisible = e;
- this.state.visitModuls = e;
- this.state.showDesc = e;
- this.setState({
- tabsKey: "",
- });
- if (s) {
- this.loadData(this.state.ispage);
- }
- },
- //查看跟进记录列表
- loadVisit(pageNo) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + '/api/admin/customer/listFollowHistory',
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.paginations.pageSize,
- uid: this.state.RowData.id, //名称1
- },
- success: function (data) {
- 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(thisdata);
- };
- this.state.paginations.current = data.data.pageNo;
- this.state.paginations.total = data.data.totalCount;
- this.setState({
- ispage: data.data.pageNo
- })
- };
- if (data.data.list && !data.data.list.length) {
- this.state.paginations.current = 0;
- this.state.paginations.total = 0;
- };
- this.setState({
- visitArrList: theArr,
- paginations: this.state.paginations
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- // 模版下载
- exportExec() {
- message.config({
- duration: 20,
- });
- let loading = message.loading("下载中...");
- this.setState({
- exportPendingLoading: true,
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/userClue/exportTemplate",
- success: function (data) {
- if (data.error.length === 0) {
- this.download(data.data);
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this),
- }).always(
- function () {
- loading();
- this.setState({
- exportPendingLoading: false,
- });
- }.bind(this)
- );
- },
- download(fileName) {
- window.location.href =
- globalConfig.context + "/open/download?fileName=" + fileName + "&delete=false";
- },
- followUp(e) {
- const { searchValues } = this.state;
- this.setState({
- searchValues: Object.assign(searchValues, {
- belongname: 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({
- fjlist: thedata,
- });
- }.bind(this),
- }).always(
- function () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- selectF(value) {
- const { searchValues, fjlist } = this.state;
- const newdataSources = JSON.stringify(fjlist) == "{}" ? [] : fjlist;
- this.setState({
- searchValues: Object.assign(searchValues, {
- belongName: newdataSources.find((item) => item.name == value).id,
- }),
- });
- },
- render() {
- const { searchValues, } = this.state
- const rowSelection = {
- selectedRowKeys: this.state.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.setState({
- modalVisible: false,
- selectedRows: selectedRows,
- selectedRowKeys: selectedRowKeys,
- });
- },
- onSelect: (recordt, selected, selectedRows) => {
- this.setState({
- modalVisible: false,
- });
- },
- };
- const hasSelected = this.state.selectedRowKeys.length > 0;
- const dataSources = this.state.customerArr || [];
- const options = dataSources.map((group) => (
- <Select.Option key={group.id} value={group.name}>
- {group.name}
- </Select.Option>
- ));
- const newdataSources =
- JSON.stringify(this.state.fjlist) == "{}" ? [] : this.state.fjlist;
- const newoptions = newdataSources.map((group) => (
- <Select.Option key={group.id} value={group.name}>
- {group.name}
- </Select.Option>
- ));
- return (
- <div className="user-content clue">
- <ShowModalDiv ShowModal={this.state.showModal} onClose={() => { this.setState({ showModal: false }) }} />
- <div className="content-title" style={{ marginBottom: 10 }}>
- <span style={{ fontWeight: 900, fontSize: 16 }}>线索客户</span>
- </div>
- <div className="user-search">
- <Tabs defaultActiveKey="1" className="test">
- <TabPane tab="搜索" key="1">
- <div className="user-search" style={{ marginLeft: 10 }}>
- <Input
- placeholder="客户名称"
- value={searchValues["userName"]
- ? searchValues["userName"]
- : ""}
- onChange={(e) => {
- searchValues["userName"] = e.target.value;
- this.setState({
- searchValues: searchValues,
- });
- }}
- />
- <AutoComplete
- className="certain-category-search"
- dropdownClassName="certain-category-search-dropdown"
- dropdownMatchSelectWidth={false}
- style={{ width: "150px" }}
- dataSource={newoptions}
- placeholder="所属人"
- value={searchValues["belongname"] || undefined}
- onChange={this.followUp.bind(this)}
- filterOption={true}
- onSelect={this.selectF.bind(this)}
- >
- <Input />
- </AutoComplete>
- <Select
- style={{ width: 140 }}
- placeholder=""
- value={searchValues["clueProcess"]
- ? searchValues["clueProcess"]
- : ""}
- onChange={(e) => {
- searchValues["clueProcess"] = e;
- this.setState({
- searchValues: searchValues,
- });
- }}
- >
- <Option value="">全部</Option>
- <Option value="0">待分配</Option>
- <Option value="1">已分配</Option>
- <Option value="2">已回退</Option>
- <Option value="3">已移除</Option>
- <Option value="4">已领取</Option>
- </Select>
- <RangePicker
- style={{ width: 300 }}
- value={[
- searchValues.startTime ? moment(searchValues.startTime) : null,
- searchValues.endTime ? moment(searchValues.endTime) : null,
- ]}
- onChange={(data, dataString) => {
- this.setState({
- searchValues: Object.assign(searchValues, {
- startTime: dataString[0],
- endTime: dataString[1],
- }),
- });
- }}
- />
- <Button
- type="primary"
- onClick={this.search}
- style={{ margin: "0 10px" }}
- >搜索</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>
- {this.props.intentionState == 1
- ? <TabPane tab="操作" key="3">
- <div className="user-search" >
- <AutoComplete
- className="certain-category-search"
- dropdownClassName="certain-category-search-dropdown"
- dropdownMatchSelectWidth={false}
- style={{ width: "120px" }}
- dataSource={options}
- placeholder="输入转交人姓名"
- value={this.state.auto}
- onChange={this.httpChange}
- filterOption={true}
- onBlur={this.blurChange}
- onSelect={this.selectAuto}
- disabled={!hasSelected}
- >
- <Input />
- </AutoComplete>
- <Button
- type="primary"
- onClick={(e) => {
- e.stopPropagation();
- this.showConfirm();
- }}
- disabled={!hasSelected}
- style={{ marginRight: 10 }}
- >
- 批量转交
- </Button>
- <Button
- style={{ marginLeft: 10 }}
- onClick={(e) => {
- e.stopPropagation();
- this.showConfirms();
- }}
- type="primary"
- disabled={!hasSelected}
- >
- 批量移至公共库
- </Button>
- <Upload {...this.state.upLoad} disabled={this.state.upLoadFileLoading}>
- <Button
- loading={this.state.upLoadFileLoading}
- type="primary"
- style={{ marginLeft: 10 }}
- >
- 批量上传
- </Button>
- </Upload>
- <Button
- style={{ marginLeft: 10 }}
- onClick={(e) => {
- this.exportExec()
- }}
- type="primary"
- >
- 下载模板
- </Button>
- </div>
- </TabPane> : ""}
- </Tabs>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table
- size="middle"
- bordered
- columns={
- this.state.changeList == undefined
- ? this.state.columns
- : this.state.changeList
- }
- dataSource={this.state.dataSource}
- rowSelection={rowSelection}
- pagination={this.state.pagination}
- // onRowDoubleClick={this.tableRowClick}
- />
- </Spin>
- </div>
- {
- this.state.zhuanjiaoVisible &&
- <ZhuanjiaoDetail
- cancel={this.zhuanjiaoDetailCancel}
- visible={this.state.zhuanjiaoVisible}
- id={this.state.zhuanjiaoId}
- />
- }
- {
- this.state.modalVisible &&
- <IntentionDetail
- isLimit={true}
- isCustomerAdmin={true}
- tabsKey={this.state.tabsKey}
- categoryArr={this.state.categoryArr}
- detailApi={'/api/admin/customer/findOrganizationCustomerDetail'}
- IntentionData={this.state.RowData}
- modalVisible={this.state.modalVisible}
- name={this.state.modalName}
- closeDesc={this.closeDesc}
- basicState={this.state.basicState}
- contactState={this.state.contactState}
- />
- }
- </div>
- );
- },
- });
- export default LimitedProject;
|