|
@@ -30,6 +30,7 @@ const AchievementList = React.createClass({
|
|
pageSize: this.state.pagination.pageSize,
|
|
pageSize: this.state.pagination.pageSize,
|
|
serialNumber: this.state.serialNumber, //编号
|
|
serialNumber: this.state.serialNumber, //编号
|
|
name: this.state.name, //名称
|
|
name: this.state.name, //名称
|
|
|
|
+ recordPerson: this.state.recordPerson,
|
|
ownerName: this.state.searchType == 1 ? this.state.searchName : undefined,
|
|
ownerName: this.state.searchType == 1 ? this.state.searchName : undefined,
|
|
username: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('org') == -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,
|
|
unitName: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('user') == -1 ? this.state.searchName : undefined,
|
|
@@ -270,6 +271,7 @@ const AchievementList = React.createClass({
|
|
reset() {
|
|
reset() {
|
|
this.state.serialNumber = undefined;
|
|
this.state.serialNumber = undefined;
|
|
this.state.name = undefined;
|
|
this.state.name = undefined;
|
|
|
|
+ this.state.recordPerson= undefined;
|
|
this.state.keyword = undefined;
|
|
this.state.keyword = undefined;
|
|
this.state.category = undefined;
|
|
this.state.category = undefined;
|
|
this.state.ownerType = undefined;
|
|
this.state.ownerType = undefined;
|
|
@@ -341,6 +343,9 @@ const AchievementList = React.createClass({
|
|
<Input placeholder="关键字"
|
|
<Input placeholder="关键字"
|
|
value={this.state.keyword}
|
|
value={this.state.keyword}
|
|
onChange={(e) => { this.setState({ keyword: e.target.value }); }} />
|
|
onChange={(e) => { this.setState({ keyword: e.target.value }); }} />
|
|
|
|
+ <Input placeholder="录入人名称"
|
|
|
|
+ value={this.state.recordPerson}
|
|
|
|
+ onChange={(e) => { this.setState({ recordPerson: e.target.value }); }} />
|
|
<Radio.Group value={this.state.searchType} onChange={(e) => {
|
|
<Radio.Group value={this.state.searchType} onChange={(e) => {
|
|
this.setState({ searchType: e.target.value })
|
|
this.setState({ searchType: e.target.value })
|
|
}}>
|
|
}}>
|