mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 06:52:01 +09:00
수정건 수정
This commit is contained in:
@@ -117,8 +117,9 @@ export default {
|
||||
mdn : '',
|
||||
email: '',
|
||||
stat:'',
|
||||
svcUserId:'',
|
||||
ezSvcUserAuthKey:''
|
||||
svcUserId:'',
|
||||
ezSvcUserAuthKey:'',
|
||||
homePageUrl: ''
|
||||
|
||||
}
|
||||
},
|
||||
@@ -153,6 +154,7 @@ export default {
|
||||
try {
|
||||
const response = await custMgtApi.memberDetail(this.row);
|
||||
const result = response.data;
|
||||
console.log('>>>>>>>>>>>>');
|
||||
console.log(result);
|
||||
if (result != null && result.retCode == "0000") {
|
||||
// isView
|
||||
@@ -169,7 +171,8 @@ export default {
|
||||
this.memo = result.data.memo;
|
||||
this.mdn = result.data.mdn;
|
||||
this.email = result.data.email;
|
||||
|
||||
this.homePageUrl = result.data.homePageUrl;
|
||||
this.ezSvcUserAuthKey = result.data.authKey;
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
@@ -277,12 +280,9 @@ export default {
|
||||
//this.email = '';
|
||||
this.$refs._email.focus();
|
||||
},
|
||||
homeLogin(){
|
||||
console.log(process.env.VUE_APP_HOME_PAGE_URL)
|
||||
console.log(process.env.VUE_APP_AUTHKEY)
|
||||
this.$refs.form.action = process.env.VUE_APP_HOME_PAGE_URL
|
||||
this.svcUserId = this.userId
|
||||
this.ezSvcUserAuthKey = process.env.VUE_APP_AUTHKEY
|
||||
homeLogin(){
|
||||
this.$refs.form.action = this.homePageUrl;
|
||||
this.svcUserId = this.userId
|
||||
this.$refs.form.submit()
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user