import React from 'react'; import { Icon, Button, Input, Select, Spin, Table, message, DatePicker } from 'antd'; import $ from 'jquery/src/ajax'; import moment from 'moment'; import NewDesc from '@/administration/messagePush/messageIn/messageDesc'; import '@/account/demand/techDemand.less'; import '@/administration/news/news.less'; const DemandList = React.createClass({ loadData(pageNo) { this.state.data = []; this.setState({ selectedRowKeys:[], page:pageNo, loading: true }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/message/getMessageList", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, title: this.state.nameSearch, //需求名称 subject:0, isSend:this.state.auditStatusSearch, sendStartTime: this.state.releaseDate[0], sendEndTime: this.state.releaseDate[1], }, 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, title: thisdata.title, isSend:thisdata.isSend, admin:thisdata.admin?thisdata.admin:'管理员', body: thisdata.body, createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'', releaseDate:thisdata.sendTime?(new Date(thisdata.sendTime)).toLocaleString():'' }); }; }; 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 }); }.bind(this), }).always(function () { this.setState({ loading: false }); }.bind(this)); }, getInitialState() { return { searchMore: true, validityPeriodDate: [], releaseDate: [], 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: 'title', key: 'title', }, { title: '消息内容', dataIndex: 'body', key: 'body', render: text => { return text&&text.length>16?text.substr(0,16)+'...':text} }, { title: '创建人', dataIndex: 'admin', key: 'admin' }, { title: '创建时间', dataIndex: 'createTime', key: 'createTime' }, { title: '推送时间', dataIndex: 'releaseDate', key: 'releaseDate' }, { title: '操作', dataIndex: 'caozuo', key: 'caozuo', render:(text,recard) => { return