import React from 'react'; import { Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker } from 'antd'; import $ from 'jquery/src/ajax'; import moment from 'moment'; import '@/account/demand/techDemand.less'; import NewDesc from '@/administration/product/proDesc'; import '@/administration/news/news.less'; import {proStatus,productType } from '@/dataDic.js'; import {getProStatus,getProductType } from '@/tools.js'; 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/community/list", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, title: this.state.nameSearch, //需求名称 startTime: this.state.releaseDate[0], endTime: this.state.releaseDate[1], status:this.state.auditStatusSearch, category:this.state.typeSearch }, 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, category:thisdata.category, status: thisdata.status, releaseTime:thisdata.releaseTime?(new Date(thisdata.releaseTime)).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', render:text=>{ return text&&text.length>30?text.substr(0,30)+'...':text } }, { title: '产品类型', dataIndex: 'category', key: 'category', render:text=>{return getProductType(text)} }, { title: '发布状态', dataIndex: 'status', key: 'status', render: text => { return getProStatus(text) } }, { title: '发布时间', dataIndex: 'releaseTime', key: 'releaseTime' }, { title: '操作', dataIndex: 'caozuo', key: 'caozuo', render:(text,recard) => { return