
--- client/views/component/userInfo/UserInfoInsert.vue
+++ client/views/component/userInfo/UserInfoInsert.vue
... | ... | @@ -389,7 +389,6 @@ |
389 | 389 |
|
390 | 390 |
// 비밀번호변경 검증 |
391 | 391 |
pswdCheck() { |
392 |
- console.log("비밀번호: ", this.pswd.newPswd); |
|
393 | 392 |
if (this.pswd.newPswd != null && this.pswd.newPswd != "") { |
394 | 393 |
const validate = |
395 | 394 |
/^(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[$`~!@$!%*#^?&()\-_=+])/; |
--- client/views/pages/adm/departmentManagement/DepartmentManagement.vue
+++ client/views/pages/adm/departmentManagement/DepartmentManagement.vue
... | ... | @@ -321,6 +321,7 @@ |
321 | 321 |
const res = await action(this.viewDept); |
322 | 322 |
alert(res.data.message); |
323 | 323 |
if (res.status == 200) { |
324 |
+ this.originDept = _.cloneDeep(this.viewDept); // 변경전 코드 |
|
324 | 325 |
this.findAll(); |
325 | 326 |
// this.selectedDeptId = res.data.data.deptId; |
326 | 327 |
} |
--- client/views/pages/adm/preferences/commonCodeManagement/CommonCodeManagement.vue
+++ client/views/pages/adm/preferences/commonCodeManagement/CommonCodeManagement.vue
... | ... | @@ -205,6 +205,7 @@ |
205 | 205 |
const res = await action(this.viewCode); |
206 | 206 |
alert(res.data.message); |
207 | 207 |
if (res.status == 200) { |
208 |
+ this.originCode = _.cloneDeep(this.viewCode); // 변경전 코드 |
|
208 | 209 |
this.findAll(); |
209 | 210 |
// this.selectedCd = res.data.data.cd; |
210 | 211 |
} |
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?