Skip to content

Commit

Permalink
Merge branch 'main' ofhttps://github.com/eryajf/go-ldap-admin-ui (#9)
Browse files Browse the repository at this point in the history
* 补充issue模板与pr模板

* fix: 分组内成员过滤的问题
  • Loading branch information
eryajf authored Jun 18, 2022
1 parent 7e26932 commit 3f585fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/groupUser/userList/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default {
},
methods: {
handleClick(tab, event) {
if (tab.index === 0) {
if (tab.index === '0') {
this.transParams.nickname = ''
this.tabIndex = tab.index
this.getTableData()
Expand All @@ -114,7 +114,7 @@ export default {
},
// 搜索框查询
onInput(e) {
if (this.tabIndex === 0) {
if (this.tabIndex === '0') {
this.transParams.nickname = e
this.getTableData()
} else {
Expand All @@ -124,7 +124,7 @@ export default {
},
// 搜索框查询
search() {
if (this.tabIndex === 0) {
if (this.tabIndex === '0') {
this.getTableData()
} else {
this.getNoMenu()
Expand Down

0 comments on commit 3f585fe

Please sign in to comment.