|
@@ -1,5 +1,5 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
-import { Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal } from 'antd';
|
|
|
|
|
|
+import { Icon, Button, Input, Select, Spin, Popconfirm,Table, Switch, message, DatePicker, Modal } from 'antd';
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
import $ from 'jquery/src/ajax';
|
|
import $ from 'jquery/src/ajax';
|
|
import moment from 'moment';
|
|
import moment from 'moment';
|
|
@@ -136,7 +136,6 @@ const DemandList = React.createClass({
|
|
render:(text,recard) => {
|
|
render:(text,recard) => {
|
|
return <div className="btnRight">
|
|
return <div className="btnRight">
|
|
{recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="primary" style={{ background: "#3fcf9e", border: "none", color: "#fff" }} onClick={(e)=>{e.stopPropagation(),this.submission(recard)}}>提交审核</Button>}
|
|
{recard.auditStatus!='1'&&recard.auditStatus!='2'&&<Button type="primary" style={{ background: "#3fcf9e", border: "none", color: "#fff" }} onClick={(e)=>{e.stopPropagation(),this.submission(recard)}}>提交审核</Button>}
|
|
- <Button type="danger" onClick={(e)=>{e.stopPropagation();this.delectRow(recard)}}>删除</Button>
|
|
|
|
{recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="success" onClick={(e)=>{ e.stopPropagation(),this.updateFun(recard)}}>刷新发布</Button>}
|
|
{recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="success" onClick={(e)=>{ e.stopPropagation(),this.updateFun(recard)}}>刷新发布</Button>}
|
|
{recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="danger" onClick={(e)=>{e.stopPropagation(),this.revokeFun(recard)}}>撤销发布</Button>}
|
|
{recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="danger" onClick={(e)=>{e.stopPropagation(),this.revokeFun(recard)}}>撤销发布</Button>}
|
|
</div>
|
|
</div>
|
|
@@ -243,18 +242,24 @@ const DemandList = React.createClass({
|
|
});
|
|
});
|
|
},
|
|
},
|
|
delectRow(recard) {
|
|
delectRow(recard) {
|
|
|
|
+ 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({
|
|
this.setState({
|
|
- loading:true
|
|
|
|
- })
|
|
|
|
- let idArr=[];
|
|
|
|
- idArr.push(recard.id);
|
|
|
|
|
|
+ selectedRowKeys: [],
|
|
|
|
+ loading: deletedIds.length > 0
|
|
|
|
+ });
|
|
$.ajax({
|
|
$.ajax({
|
|
method: "POST",
|
|
method: "POST",
|
|
dataType: "json",
|
|
dataType: "json",
|
|
crossDomain: false,
|
|
crossDomain: false,
|
|
url: globalConfig.context + "/api/user/demand/delete",
|
|
url: globalConfig.context + "/api/user/demand/delete",
|
|
data: {
|
|
data: {
|
|
- ids: idArr
|
|
|
|
|
|
+ ids: deletedIds
|
|
}
|
|
}
|
|
}).done(function (data) {
|
|
}).done(function (data) {
|
|
if (!data.error.length) {
|
|
if (!data.error.length) {
|
|
@@ -323,6 +328,13 @@ const DemandList = React.createClass({
|
|
onChange={(e) => { this.setState({ name: e.target.value }); }} />
|
|
onChange={(e) => { this.setState({ name: e.target.value }); }} />
|
|
<Button type="primary" onClick={this.search}>搜索</Button>
|
|
<Button type="primary" onClick={this.search}>搜索</Button>
|
|
<Button onClick={this.reset}>重置</Button>
|
|
<Button onClick={this.reset}>重置</Button>
|
|
|
|
+ <Button
|
|
|
|
+ type="danger"
|
|
|
|
+ disabled={!hasSelected}
|
|
|
|
+ onClick={this.delectRow}
|
|
|
|
+ >
|
|
|
|
+ 删除<Icon type="minus" />
|
|
|
|
+ </Button>
|
|
<span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
|
|
<span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
|
|
<div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
|
|
<div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
|
|
<span>发布时间 :</span>
|
|
<span>发布时间 :</span>
|