

250407 김혜민 부서관리 체크박스 오작동 수정
@f488fa17addf788dc63c0e27e3f615bb48a42852
--- client/views/pages/adm/departmentManagement/DepartmentManagement.vue
+++ client/views/pages/adm/departmentManagement/DepartmentManagement.vue
... | ... | @@ -130,7 +130,7 @@ |
130 | 130 |
:checked="selectedMbr.includes(row.loginId)" |
131 | 131 |
@change="() => checkboxChange(row, idx)" |
132 | 132 |
/> |
133 |
- <label for="'check_' + idx"></label> |
|
133 |
+ <label :for="'check_' + idx"></label> |
|
134 | 134 |
</div> |
135 | 135 |
</template> |
136 | 136 |
</ListTable> |
... | ... | @@ -167,7 +167,7 @@ |
167 | 167 |
<div class="modal-title"> |
168 | 168 |
<p>사용자 목록</p> |
169 | 169 |
</div> |
170 |
- <button class="close-btn" @click="modalClose">X</button> |
|
170 |
+ <button class="btn-close" @click="modalClose">X</button> |
|
171 | 171 |
</template> |
172 | 172 |
<ListTable |
173 | 173 |
:className="'admin-list'" |
--- client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
+++ client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
... | ... | @@ -121,9 +121,9 @@ |
121 | 121 |
const loginPolicy = {}; |
122 | 122 |
loginPolicy.allowMultipleLogin = this.allowMultipleLogin; |
123 | 123 |
await saveByLoginPolicy(loginPolicy); |
124 |
- alert('중복 로그인 설정이 저장되었습니다.'); |
|
124 |
+ alert(res.data.message); |
|
125 | 125 |
} catch (err) { |
126 |
- alert('중복 로그인 설정 저장 실패'); |
|
126 |
+ alert(res.data.message); |
|
127 | 127 |
this.allowMultipleLogin = this.previousAllowMultipleLogin; |
128 | 128 |
} |
129 | 129 |
}, |
... | ... | @@ -139,7 +139,7 @@ |
139 | 139 |
try { |
140 | 140 |
const loginMode = {}; |
141 | 141 |
loginMode.lgnMode = this.lgnMode; |
142 |
- // await saveByLoginMode(loginMode); |
|
142 |
+ await saveByLoginMode(loginMode); |
|
143 | 143 |
alert('로그인 방식이 변경되었습니다.\n다시 로그인해주세요.'); |
144 | 144 |
store.commit("setStoreReset"); |
145 | 145 |
window.location = this.$filters.ctxPath('/login.page'); |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?