import React from 'react';
import { Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload ,Popconfirm} from 'antd';
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';
import moment from 'moment';
import '../techDemand.less';
import DemandDetail from './demandReleaseDesc.jsx';
import { demandTypeList } from '../../../dataDic.js';
import { companySearch, getDemandType, getSearchUrl, beforeUploadFile ,getboutique,gethot} from '../../../tools.js';
const TechDemandPublish = React.createClass({
loadData(pageNo, apiUrl) {
this.state.data = [];
if(this.state.serialNumber&&isNaN(this.state.serialNumber)){
message.warning('请输入正确的编号格式');
return false;
}
this.setState({
loading: true,
ispage:pageNo,
});
$.ajax({
method: "get",
dataType: "json",
crossDomain: false,
url: globalConfig.context +'/api/admin/demand/orgList',
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:3,
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));
},
getInitialState() {
return {
searchMore: true,
searchType: 0,
validityPeriodDate: [],
releaseDate: [],
releaseDateS: [],
selectedRowKeys: [],
selectedRows: [],
loading: false,
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: 'serialNumber',
key: 'serialNumber',
}, {
title: '需求名称',
dataIndex: 'name',
key: 'name',
},
{
title: '录入人',
dataIndex: 'techBrokerId',
key: 'techBrokerId',
},
{
title: '是否精品',
dataIndex: 'boutique',
key: 'boutique',
render: text => { 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: 'releaseStatus',
key: 'releaseStatus',
render: text => { return (text)?'已发布':'未发布' }
},
{
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: 'createTimeFormattedDate',
key: 'createTimeFormattedDate',
},{
title: '发布操作',
dataIndex: 'ee',
key: 'ee',
render: (text, record, index) => {
return
{(record.releaseStatus=="0")?
{this.examineOK(record)}} okText="确认" cancelText="取消">
:
{this.examineCancel(record)}} okText="确认" cancelText="取消">
}
}
}
],
dataSource: [],
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));
},
//撤销发布
examineCancel(record){
let api=0;
this.examine(api,record);
},
//发布
examineOK(record){
let api=1;
this.examine(api,record);
},
examine(nub,record) {
this.setState({
selectedRowKeys: [],
});
$.ajax({
method: "POST",
dataType: "json",
crossDomain: false,
url: globalConfig.context + '/api/admin/demand/offShelf',
data: {
id: record.id,
releaseStatus:nub,
auditStatus:3
}
}).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));
},
componentWillMount() {
let theArr = [];
demandTypeList.map(function (item) {
theArr.push(
{item.key}
)
});
this.state.demandTypeOption = theArr;
let data=localStorage.getItem('newData');
if(data!='{}'&&data){
var newData = JSON.parse(data);
this.tableRowClick(newData);
};
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;
this.setState({
showDesc: true
});
localStorage.setItem('newData','{}');
},
// 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));
// },
addClick() {
this.state.RowData = {};
this.setState({
showDesc: true
});
},
closeDesc(e, s) {
this.state.showDesc = e;
if (s) {
this.loadData(this.state.ispage);
};
},
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();
},
searchSwitch() {
this.setState({
searchMore: !this.state.searchMore
});
},
render() {
const rowSelection = {
selectedRowKeys: this.state.selectedRowKeys,
onChange: (selectedRowKeys, selectedRows) => {
this.setState({
selectedRows: selectedRows.slice(-1),
selectedRowKeys: selectedRowKeys.slice(-1)
});
}
};
const hasSelected = this.state.selectedRowKeys.length > 0;
const { RangePicker } = DatePicker;
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} 文件上传失败。`);
};
}} >
);
}
});
export default TechDemandPublish;