dengzhiguo vor 7 Jahren
Ursprung
Commit
adb7dd2d0b

+ 5 - 0
js/component/manageCenter/achievement/techAchievement.jsx

@@ -30,6 +30,7 @@ const AchievementList = React.createClass({
                 pageSize: this.state.pagination.pageSize,
                 serialNumber: this.state.serialNumber, //编号
                 name: this.state.name, //名称
+                recordPerson: this.state.recordPerson,
                 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,
                 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() {
         this.state.serialNumber = undefined;
         this.state.name = undefined;
+        this.state.recordPerson= undefined;
         this.state.keyword = undefined;
         this.state.category = undefined;
         this.state.ownerType = undefined;
@@ -341,6 +343,9 @@ const AchievementList = React.createClass({
                     <Input placeholder="关键字"
                         value={this.state.keyword}
                         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) => {
                         this.setState({ searchType: e.target.value })
                     }}>

+ 5 - 0
js/component/manageCenter/achievement/techAchievementQuery.jsx

@@ -29,6 +29,7 @@ const AchievementList = React.createClass({
                 pageSize: this.state.pagination.pageSize,
                 serialNumber: this.state.serialNumber, //编号
                 name: this.state.name, //名称
+                recordPerson: this.state.recordPerson,
                 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,
                 unitName: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('user') == -1 ? this.state.searchName : undefined,
@@ -237,6 +238,7 @@ const AchievementList = React.createClass({
     reset() {
         this.state.serialNumber = undefined;
         this.state.name = undefined;
+        this.state.recordPerson= undefined;
         this.state.keyword = undefined;
         this.state.category = undefined;
         this.state.ownerType = undefined;
@@ -308,6 +310,9 @@ const AchievementList = React.createClass({
                     <Input placeholder="关键字"
                         value={this.state.keyword}
                         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) => {
                         this.setState({ searchType: e.target.value })
                     }}>

+ 5 - 0
js/component/manageCenter/demand/techDemand.jsx

@@ -30,6 +30,7 @@ const DemandList = React.createClass({
                 pageSize: this.state.pagination.pageSize,
                 serialNumber: this.state.serialNumber,
                 name: this.state.name,
+                recordPerson:this.state.recordPerson,//录入人
                 keyword: this.state.keyword,
                 infoSources: this.state.infoSources ? Number(this.state.infoSources) : undefined,
                 demandType: this.state.demandType ? Number(this.state.demandType) : undefined,
@@ -399,6 +400,7 @@ const DemandList = React.createClass({
     reset() {
         this.state.serialNumber = undefined;
         this.state.name = undefined;
+        this.state.recordPerson= undefined;
         this.state.keyword = undefined;
         this.state.infoSources = undefined;
         this.state.demandType = undefined;
@@ -474,6 +476,9 @@ const DemandList = React.createClass({
                     <Input placeholder="关键字"
                         value={this.state.keyword}
                         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) => {
                         this.setState({ searchType: e.target.value })
                     }}>

+ 5 - 0
js/component/manageCenter/demand/techDemandQuery.jsx

@@ -29,6 +29,7 @@ const DemandList = React.createClass({
                 pageSize: this.state.pagination.pageSize,
                 serialNumber: this.state.serialNumber,
                 name: this.state.name,
+                recordPerson: this.state.recordPerson,
                 keyword: this.state.keyword,
                 infoSources: this.state.infoSources ? Number(this.state.infoSources) : undefined,
                 demandType: this.state.demandType ? Number(this.state.demandType) : undefined,
@@ -398,6 +399,7 @@ const DemandList = React.createClass({
     reset() {
         this.state.serialNumber = undefined;
         this.state.name = undefined;
+        this.state.recordPerson= undefined;
         this.state.keyword = undefined;
         this.state.infoSources = undefined;
         this.state.demandType = undefined;
@@ -473,6 +475,9 @@ const DemandList = React.createClass({
                     <Input placeholder="关键字"
                         value={this.state.keyword}
                         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) => {
                         this.setState({ searchType: e.target.value })
                     }}>