Skip to content

Commit

Permalink
fix pluginDropDownList (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
dengliming authored Aug 7, 2022
1 parent 7cf8be8 commit c5e02a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/routes/System/PluginHandle/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export default class PluginHandle extends Component {
if (arr && arr.length > 0) {
return <div>{arr[0].name}</div>
} else {
return <div>111</div>
return <div>text</div>
}
}
}
Expand Down Expand Up @@ -459,7 +459,8 @@ export default class PluginHandle extends Component {

render() {
const {pluginHandle, loading} = this.props;
const {pluginHandleList, total, pluginDropDownList} = pluginHandle;
const {pluginHandleList, total} = pluginHandle;
const pluginDropDownList = this.state.pluginDict
const {currentPage, pageSize, selectedRowKeys, pluginId, field, popup, columns = []} = this.state;


Expand Down

0 comments on commit c5e02a4

Please sign in to comment.