수정건 수정

This commit is contained in:
USER
2022-09-06 10:58:43 +09:00
parent 1367c7655f
commit 40316dc721
2 changed files with 19 additions and 3 deletions

View File

@@ -303,6 +303,7 @@ export default {
this.$refs.commmonModal.confirmModalOpen(props);
},
async memberDetail(serviceId) {
this.svcUserId = serviceId;
this.row.userId = serviceId;
try {
const response = await custMgtApi.memberAdminDetail(this.row);
@@ -458,9 +459,16 @@ export default {
// Object.assign(this.$data, this.$options.data());
// },
homeLogin() {
if(this.userStat == '02'){
this.row = {};
this.row.title = '로그인';
this.row.msg1 = '사용 중지된 계정입니다.';
this.$refs.commmonModal.alertModalOpen(this.row);
return false;
}
this.$refs.form.action = this.homePageUrl;
this.svcUserId = this.userId;
console.log(this.$refs.form);
//console.log(this.$refs.form);
this.$refs.form.submit();
},
confirmCalbackFnc(props) {

View File

@@ -269,6 +269,14 @@ export default {
this.$refs._email.focus();
},
homeLogin() {
if(this.stat == '02'){
this.row = {};
this.row.title = '로그인';
this.row.msg1 = '사용 중지된 계정입니다.';
this.$refs.commmonModal.alertModalOpen(this.row);
return false;
}
this.$refs.form.action = this.homePageUrl;
this.svcUserId = this.userId;
this.$refs.form.submit();