import React from 'react'; import { Form, Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload, Tabs } from 'antd'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; import moment from 'moment'; import './techDemand.less'; import TechDemandDesc from './techDemandDesc.jsx'; import { demandTypeList } from '../../dataDic.js'; import { companySearch, getDemandType, getSearchUrl, beforeUploadFile ,getboutique,gethot} from '../../tools.js'; import BatchImport from './batchImport'; import {ChooseList} from "../order/orderNew/chooseList"; const TabPane = Tabs.TabPane; const DemandList = React.createClass({ loadData(pageNo, apiUrl) { this.state.data = []; if(this.state.serialNumber&&isNaN(this.state.serialNumber)){ message.warning('请输入正确的编号格式'); return false; } this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + (apiUrl || this.props['data-listApiUrl']), data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, serialNumber: this.state.serialNumber, name: this.state.name, keyword: this.state.keyword, employerName: this.state.employerName, infoSources: this.state.infoSources ? Number(this.state.infoSources) : undefined, demandType: this.state.demandType ? Number(this.state.demandType) : undefined, //username: this.state.username, status: this.state.status ? Number(this.state.status) : undefined, releaseStatus: this.state.releaseStatus ? Number(this.state.releaseStatus) : undefined, validityPeriodStartDate: this.state.validityPeriodDate[0], validityPeriodEndDate: this.state.validityPeriodDate[1], releaseDateStartDate: this.state.releaseDate[0], releaseDateEndDate: this.state.releaseDate[1], createDateStartDate: this.state.releaseDateS[0], createDateEndDate: this.state.releaseDateS[1], auditStatus: this.state.auditStatus, boutique:this.state.boutique, hot:this.state.hot, dataCategory:this.state.dataCategory, //employerName: this.state.searchType == 1 ? this.state.searchName : undefined, username: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('org') == -1 ? this.state.searchName : undefined, unitName: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('user') == -1 ? this.state.searchName : undefined, }, success: function (data) { let theArr = []; if (!data.data || !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.id, serialNumber: thisdata.serialNumber, dataCategory: thisdata.dataCategory, name: thisdata.name, keyword: thisdata.keyword, infoSources: thisdata.infoSources, username: thisdata.username, theName: thisdata.username || thisdata.employerName, demandType: thisdata.demandType, validityPeriod: thisdata.validityPeriod, employerName: thisdata.employerName, employerId: thisdata.employerId, province: thisdata.province, status: thisdata.status, releaseStatus: thisdata.releaseStatus, releaseDate: thisdata.releaseDate, principalId: thisdata.principalId, validityPeriodFormattedDate: thisdata.validityPeriodFormattedDate, releaseDateFormattedDate: thisdata.releaseDateFormattedDate, auditStatus: thisdata.auditStatus, boutique: thisdata.boutique, urgentMoney:thisdata.urgentMoney, urgentDays:thisdata.urgentDays, hot: thisdata.hot, techBrokerId:thisdata.techBrokerId, createTimeFormattedDate: thisdata.createTimeFormattedDate, }); }; this.state.pagination.current = data.data.pageNo; this.state.pagination.total = data.data.totalCount; }; this.setState({ dataSource: theArr, pagination: this.state.pagination }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, mateLoadData(pageNo, apiUrl) { let demandId =''; for (let idx = 0; idx < this.state.selectedRows.length; idx++) { let rowItem = this.state.selectedRows[idx]; if (rowItem.id) { demandId=rowItem.id; }; }; this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/admin/demand/listDemandFollow', data: { id:demandId, pNo: pageNo || 1, pSize: this.state.matepagination.pageSize, }, success: function (data) { let theArr = []; if (!data.data || !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]; let thisdataDet=data.data.list[i].demandFollowDetail; let followUp=''; let a=thisdataDet?thisdataDet.length:0; for(let j=0;j { return getboutique(text) } }, { title: '关键字', dataIndex: 'keyword', key: 'keyword', }, { title: '需求类型', dataIndex: 'demandType', key: 'demandType', render: text => { return getDemandType(text); } }, { title: '信息来源', dataIndex: 'infoSources', key: 'infoSources', render: text => { switch (text) { case "0": return 平台采集; case "1": return 客户发布; case "2": return 批量导入 case "3": return 三方对接 } } }, { title: '审核状态', dataIndex: 'auditStatus', key: 'auditStatus', render: text => { switch (text) { case 0: return 未提交审核(草稿); case 1: return 提交审核; case 2: return 审核中; case 3: return 审核通过; case 4: return 审核未通过; } } }, { title: '需求状态', dataIndex: 'status', key: 'status', render: text => { switch (text) { case "0": return 进行中; case "1": return 未解决; case "2": return 已解决; } } }, { title: '有效期限', dataIndex: 'validityPeriodFormattedDate', key: 'validityPeriodFormattedDate', }, { title: '发布时间', dataIndex: 'releaseDateFormattedDate', key: 'releaseDateFormattedDate', },{ title: '录入时间', dataIndex: 'createTimeFormattedDate', key: 'createTimeFormattedDate', } ], dataSource: [], searchTime: [], mateColumns: [ { title: '企业名称', dataIndex: 'employerName', key: 'employerName', }, { title: '需求名称', dataIndex: 'name', key: 'name', }, { title: '联系人', dataIndex: 'employerContactsMobile', key: 'employerContactsMobile', },{ title: '匹配机构', dataIndex: 'organization', key: 'organization', },{ title: '成果联系人', dataIndex: 'contacts', key: 'contacts', },{ title: '成果方联系方式', dataIndex: 'contactMobile', key: 'contactMobile', },{ title: '跟进结果', dataIndex: 'result', key: 'result', render: text => { switch (text) { case 0: return 跟进中; case 1: return 已匹配; } } },{ title: '最新跟进时间', dataIndex: 'lastFollowTimeFormattedDate', key: 'lastFollowTimeFormattedDate', } ], mateDataSource: [], searchTime: [], mateColumnsExport: [ { title: '企业名称', dataIndex: 'employerName', key: 'employerName', }, { title: '需求名称', dataIndex: 'name', key: 'name', },{ title: '联系人', dataIndex: 'employerContactsMobile', key: 'employerContactsMobile', },{ title: '联系人邮箱', dataIndex: 'employerContactsMailbox', key: 'employerContactsMailbox', },{ title: '匹配机构', dataIndex: 'organization', key: 'organization', },{ title: '成果联系人', dataIndex: 'contacts', key: 'contacts', },{ title: '成果方联系方式', dataIndex: 'contactMobile', key: 'contactMobile', },{ title: '来源', dataIndex: 'sources', key: 'sources', },{ title: '备注', dataIndex: 'remark', key: 'remark', },{ title: '跟进汇总', dataIndex: 'followUp', key: 'followUp', } ], mateDataSource: [], searchTime: [], lookColumns: [ { title: '跟进时间', dataIndex: 'createTimeFormattedDate', key: 'createTimeFormattedDate', },{ title: '跟进结果', dataIndex: 'result', key: 'result', render: text => { switch (text) { case 0: return 跟进中; case 1: return 已匹配; } } },{ title: '跟进情况', dataIndex: 'remarks', key: 'remarks', } ], lookDataSource: [], searchTime: [] }; }, getCompanyList() { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/demand/unitNames", success: function (data) { let theArr = []; if (!data.data) { if (data.error && data.error.length) { message.warning(data.error[0].message); }; } else { data.data.map(function (item) { theArr.push( {item.unitName} ) }); }; this.setState({ companyOption: theArr }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, getUserList() { this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/demand/userNames", success: function (data) { let theArr = []; if (!data.data) { if (data.error && data.error.length) { message.warning(data.error[0].message); }; } else { data.data.map(function (item) { theArr.push( {item.username} ) }); }; this.setState({ userOption: theArr }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, componentWillMount() { let theArr = []; demandTypeList.map(function (item) { theArr.push( {item.key} ) }); this.state.demandTypeOption = theArr; if (window.location.search) { let theObj = getSearchUrl(window.location.search); if (theObj.rid) { theObj.id = theObj.rid; theObj.employerId = theObj.uid; if (theObj.rid != 'null') { this.tableRowClick(theObj); }; }; }; this.loadData(); this.getCompanyList(); this.getUserList(); }, componentWillReceiveProps(nextProps) { if (this.props['data-listApiUrl'] != nextProps['data-listApiUrl']) { this.state.selectedRowKeys = []; this.state.selectedRows = []; this.state.serialNumber = undefined; this.state.name = undefined; this.state.keyword = undefined; this.state.infoSources = undefined; this.state.demandType = undefined; this.state.searchName = undefined; this.state.searchType = 0; this.state.status = undefined; this.state.releaseStatus = undefined; this.state.auditStatus = undefined; this.state.validityPeriodDate = []; this.state.releaseDate = []; this.state.releaseDateS = []; this.loadData(null, nextProps['data-listApiUrl']); }; }, tableRowClick(record, index) { this.state.RowData = record; if(index!=undefined){ this.setState({ showDesc: true }); } }, //删除需求 delectRow() { let deletedIds = []; for (let idx = 0; idx < this.state.selectedRows.length; idx++) { let rowItem = this.state.selectedRows[idx]; if (rowItem.id) { deletedIds.push(rowItem.id) }; }; this.setState({ selectedRowKeys: [], loading: deletedIds.length > 0 }); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/demand/delete", data: { ids: deletedIds } }).done(function (data) { if (!data.error.length) { message.success('删除成功!'); this.setState({ loading: false, }); } else { message.warning(data.error[0].message); }; this.loadData(); }.bind(this)); }, //删除匹配记录 delect(e) { let rowItem = ''; for (let idx = 0; idx < this.state.mateselectedRows.length; idx++) { rowItem = this.state.mateselectedRows[idx]; }; this.setState({ mateselectedRowKeys: [], }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/demand/deleteDemandFollow", data: { id: rowItem.id } }).done(function (data) { if (!data.error.length) { message.success('删除成功!'); this.setState({ loading: false, }); } else { message.warning(data.error[0].message); }; this.mateLoadData(); }.bind(this)); }, //判断浏览器类型 getExplorer() { var explorer = window.navigator.userAgent; //ie if(explorer.indexOf("MSIE") >= 0) { return 'ie'; } //firefox else if(explorer.indexOf("Firefox") >= 0) { return 'Firefox'; } //Chrome else if(explorer.indexOf("Chrome") >= 0) { return 'Chrome'; } //Opera else if(explorer.indexOf("Opera") >= 0) { return 'Opera'; } //Safari else if(explorer.indexOf("Safari") >= 0) { return 'Safari'; } }, //导出为exel表格 tabExel() { var table = document.querySelector('#daochu'); var idTmr; //debugger; //整个表格拷贝到EXCEL中 if(this.getExplorer() == 'ie') { var curTbl = document.getElementById(tableid); var oXL = new ActiveXObject("Excel.Application"); //创建AX对象excel var oWB = oXL.Workbooks.Add(); //获取workbook对象 var xlsheet = oWB.Worksheets(1); //激活当前sheet var sel = document.body.createTextRange(); sel.moveToElementText(curTbl); //把表格中的内容移到TextRange中 sel.select(); //全选TextRange中内容 sel.execCommand("Copy"); //复制TextRange中内容 xlsheet.Paste(); //粘贴到活动的EXCEL中 oXL.Visible = true; //设置excel可见属性 try { var fname = oXL.Application.GetSaveAsFilename("Excel.xls", "Excel Spreadsheets (*.xls), *.xls"); } catch(e) { print("Nested catch caught " + e); } finally { oWB.SaveAs(fname); oWB.Close(savechanges = false); //xls.visible = false; oXL.Quit(); oXL = null; //结束excel进程,退出完成 //window.setInterval("Cleanup();",1); idTmr = window.setInterval("Cleanup();", 1); } } else { // console.log(table); this.tableToExcel(table,this.getExplorer()); } function Cleanup() { window.clearInterval(idTmr); CollectGarbage(); } }, tableToExcel(table,name) { var uri = 'data:application/vnd.ms-excel;base64,', template = '{table}
', base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) }, format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) } // console.log(table.nodeType); if(!table.nodeType) table = document.getElementById(table); // console.log(table); var ctx = { worksheet: name || 'Worksheet', table: table.innerHTML }; window.location.href = uri + base64(format(template, ctx)) }, //匹配跟进的显示和隐藏 mate(){ this.setState({ matevisible: true }); this.mateLoadData(); }, mateNo(){ this.setState({ matevisible: false }); this.reset(); }, //点开新增或者匹配记录详情的时候发送请求获取上面的内容 mateTop(e){ let demandId =''; for (let idx = 0; idx < this.state.selectedRows.length; idx++) { let rowItem = this.state.selectedRows[idx]; if (rowItem.id) { demandId=rowItem.id; }; }; this.setState({ loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + '/api/admin/demand/DemandFollowDetails', data: { id:demandId, }, success: function (data) { this.setState({ mademandId:data.data.id,//录入人 adminName: data.data.techBrokerId,//录入人 createTime: data.data.createTime,//录入时间 employerName: data.data.employerName,//公司名称 name: data.data.name,//需求名称 employerContactsMobile:data.data.employerContactsMobile,//联系人电话 employerContactsMailbox:data.data.employerContactsMailbox,//联系人邮箱 createTimeFormattedDate:data.data.createTimeFormattedDate,//录入时间转格式 }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, //点击新增 addmate(e){ this.setState({ addmatevisible: true }); this.matereset(); this.mateTop(); }, //修改一条匹配记录 addmateSubmits(e){ e.preventDefault(); this.setState({ loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url:globalConfig.context + '/api/admin/demand/updateDemandFollow', data:{ id:this.state.mademandIds,//需求ID contactMobile:this.state.mateContactMobile,//成果方联系方式 contacts:this.state.mateContacts,//成果联系人 organization:this.state.mateOrganization,//匹配机构 sources:this.state.mateSources,//来源 remark:this.state.mateRemark,//备注 } }).done(function (data) { this.setState({ loading: false }); if (!data.error.length) { message.success('修改匹配跟进成功!'); this.mateLoadData(); this.addmateNos(); } else { message.warning(data.error[0].message); } }.bind(this)); }, //新增一条匹配记录 addmateSubmit(e){ e.preventDefault(); this.setState({ loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url:globalConfig.context + '/api/admin/demand/addDemandFollow', data:{ demandId:this.state.mademandId,//需求ID contactMobile:this.state.mateContactMobile,//成果方联系方式 contacts:this.state.mateContacts,//成果联系人 organization:this.state.mateOrganization,//匹配机构 sources:this.state.mateSources,//来源 remark:this.state.mateRemark,//备注 } }).done(function (data) { this.setState({ loading: false }); if (!data.error.length) { message.success('新增匹配跟进成功!'); this.mateLoadData(); this.addmateNo(); } else { message.warning(data.error[0].message); } }.bind(this)); }, //新增跟进记录 addhandleSubmit(e){ e.preventDefault(); let rowItem = ''; for (let idx = 0; idx < this.state.mateselectedRows.length; idx++) { rowItem = this.state.mateselectedRows[idx]; }; this.setState({ mateselectedRowKeys: [], loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url:globalConfig.context + '/api/admin/demand/addDemandFollowDetail', data:{ demandFollowId:rowItem.id,//需求跟进ID createTimeFormattedDate:this.state.RowData.addcreateTime,//跟进时间 result:this.state.addresult,//跟进结果 remarks:this.state.addremarks,//跟进情况 } }).done(function (data) { this.setState({ loading: false }); if (!data.error.length) { message.success('最新跟进添加成功成功!'); this.addmateNo1(); } else { message.warning(data.error[0].message); } }.bind(this)); }, //点开详情 mateTableRowClick(record, index){ // console.log(record); this.mateTop(); this.setState({ addmatevisibles: true, mateOrganization:record.organization,//匹配机构 mateSources:record.sources,//来源 mateContacts:record.contacts,//成果联系人 mateContactMobile:record.contactMobile,//联系人电话 mateRemark:record.remark,//备注 mademandIds:record.id,//该条匹配跟进的ID }); }, addmateNos(){ this.setState({ addmatevisibles: false }) }, addmateNo(){ this.setState({ addmatevisible: false }) }, addmate1(){ this.setState({ addmatevisible1: true }); this.lookreset(); }, addmateNo1(){ this.setState({ addmatevisible1: false }); this.mateLoadData(); }, lookmate(){ this.setState({ lookvisible: true }); this.lookLoadData(); }, lookmateNo(){ this.setState({ lookvisible: false }) }, addClick() { this.state.RowData = {}; this.setState({ showDesc: true }); }, closeDesc(e, s) { this.state.showDesc = e; if (s) { this.loadData(this.state.page); }; }, search() { this.loadData(); }, reset() { this.state.serialNumber = undefined; this.state.name = undefined; this.state.keyword = undefined; this.state.employerName= undefined; this.state.infoSources = undefined; this.state.demandType = undefined; this.state.searchName = undefined; this.state.searchType = 0; this.state.boutique = ''; this.state.hot='' ; this.state.status = undefined; this.state.releaseStatus = undefined; this.state.auditStatus = undefined; this.state.dataCategory = undefined; this.state.validityPeriodDate = []; this.state.releaseDate = []; this.state.releaseDateS = []; this.loadData(); }, matereset(){ this.state.mateContactMobile = undefined;//成果方联系方式 this.state.mateContacts = undefined;//成果联系人 this.state.mateOrganization = undefined;//匹配机构 this.state.mateSources = undefined;//来源 this.state.mateRemark = undefined;//备注 }, //点击新增跟进记录是清空里面的内容 lookreset(){ this.state.RowData.addcreateTime = undefined; this.state.addresult = ''; this.state.addremarks = undefined; }, searchSwitch() { this.setState({ searchMore: !this.state.searchMore }); }, changeList(arr) { const newArr = []; this.state.columns.forEach(item => { arr.forEach(val => { if (val === item.title) { newArr.push(item); } }); }); this.setState({ changeList: newArr }); }, render() { const rowSelection = { selectedRowKeys: this.state.selectedRowKeys, onChange: (selectedRowKeys, selectedRows) => { this.setState({ selectedRows: selectedRows.slice(-1), selectedRowKeys: selectedRowKeys.slice(-1) }); } }; const materowSelection = { selectedRowKeys: this.state.mateselectedRowKeys, onChange: (mateselectedRowKeys, mateselectedRows) => { this.setState({ mateselectedRows: mateselectedRows.slice(-1), mateselectedRowKeys: mateselectedRowKeys.slice(-1) }); } }; const hasSelected = this.state.selectedRowKeys.length > 0; const matehasSelected= this.state.mateselectedRowKeys.length > 0; const { RangePicker } = DatePicker; const FormItem = Form.Item return (
我的科技需求
{ if (info.file.status !== 'uploading') { // console.log(info.file, info.fileList); } if (info.file.status === 'done') { if (!info.file.response.error.length) { message.success(`${info.file.name} 文件上传成功!`); } else { message.warning(info.file.response.error[0].message); return; }; } else if (info.file.status === 'error') { message.error(`${info.file.name} 文件上传失败。`); }; }} >
{ this.setState({ serialNumber: e.target.value }); }} /> { this.setState({ name: e.target.value }); }} /> { this.setState({ keyword: e.target.value }); }} /> { this.setState({ employerName: e.target.value }); }} /> { this.setState({ searchType: e.target.value }) }}> 认证用户 非认证用户 更多搜索
{ this.setState({ boutique: e.target.value }) }}> 精品 非精品
有效期限 : { this.setState({ validityPeriodDate: dataString }); }} /> 发布时间 : { this.setState({ releaseDate: dataString }); }} /> 录入时间 : { this.setState({ releaseDateS: dataString }); }} />
{this.state.adminName} {this.state.createTimeFormattedDate}
{this.state.employerName} {this.state.name}
{this.state.employerContactsMobile} {this.state.employerContactsMailbox}
{this.setState({mateOrganization:e.target.value})}} required="required"/> * {this.setState({mateSources:e.target.value})}} />
{this.setState({mateContacts:e.target.value})}} required="required"/> * {this.setState({mateContactMobile:e.target.value})}} required="required"/> *
{ this.setState({ mateRemark: e.target.value }) }} style={{width:'95%'}}/>
{this.state.adminName} {this.state.createTimeFormattedDate}
{this.state.employerName} {this.state.name}
{this.state.employerContactsMobile} {this.state.employerContactsMailbox}
{this.setState({mateOrganization:e.target.value})}} required="required"/> * {this.setState({mateSources:e.target.value})}} />
{this.setState({mateContacts:e.target.value})}} required="required"/> * {this.setState({mateContactMobile:e.target.value})}} required="required"/> *
{ this.setState({ mateRemark: e.target.value }) }} style={{width:'95%'}}/>
{ this.state.RowData.addcreateTime = str; this.setState({ RowData: this.state.RowData}); }} /> *
*
{ this.setState({ addremarks: e.target.value }) }} style={{width:'95%'}}/> *
); } }); export default DemandList;