Skip to content

Commit 3f585fe

Browse files
authored
Merge branch 'main' ofhttps://github.com/eryajf/go-ldap-admin-ui (#9)
* 补充issue模板与pr模板 * fix: 分组内成员过滤的问题
1 parent 7e26932 commit 3f585fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/views/groupUser/userList/index.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default {
102102
},
103103
methods: {
104104
handleClick(tab, event) {
105-
if (tab.index === 0) {
105+
if (tab.index === '0') {
106106
this.transParams.nickname = ''
107107
this.tabIndex = tab.index
108108
this.getTableData()
@@ -114,7 +114,7 @@ export default {
114114
},
115115
// 搜索框查询
116116
onInput(e) {
117-
if (this.tabIndex === 0) {
117+
if (this.tabIndex === '0') {
118118
this.transParams.nickname = e
119119
this.getTableData()
120120
} else {
@@ -124,7 +124,7 @@ export default {
124124
},
125125
// 搜索框查询
126126
search() {
127-
if (this.tabIndex === 0) {
127+
if (this.tabIndex === '0') {
128128
this.getTableData()
129129
} else {
130130
this.getNoMenu()

0 commit comments

Comments
 (0)