수정건 수정

This commit is contained in:
USER
2022-07-27 10:31:41 +09:00
parent 3093a33015
commit d5bf4444a3
22 changed files with 89 additions and 58 deletions

View File

@@ -10,34 +10,34 @@ export default [
component: SubsList,
name: 'subsList',
props: true,
meta: { public: true }
meta: { public: false }
},
{
path: '/custMgt/memberList',
component: MemberList,
name: 'memberList',
meta: { public: true }
meta: { public: false }
},
{
path: '/custMgt/subsDetail',
component: SubsDetail,
name: 'subsDetail',
props: true,
meta: { public: true }
meta: { public: false }
},
{
path: '/custMgt/memberDetail',
component: MemberDetail,
name: 'memberDetail',
props: true,
meta: { public: true }
meta: { public: false }
},
{
path: '/custMgt/memberAdminDetail',
component: MemberAdminDetail,
name: 'memberAdminDetail',
props: true,
meta: { public: true }
meta: { public: false }
},
]

View File

@@ -234,6 +234,7 @@ export default {
selected: [],
svcUserId: '',
ezSvcUserAuthKey: '',
homePageUrl: '',
isActive: true,
//applyTbStyle: 'cursor: default;',
};
@@ -329,6 +330,8 @@ export default {
this.userTotalCnt = result.data.list.length;
console.log('userTotalCnt:' + result.data.list.length);
this.totalItems = result.data.paging.totalCnt;
this.homePageUrl = result.data.homePageUrl;
this.ezSvcUserAuthKey = result.data.authKey;
}
} catch (error) {
console.log(error);
@@ -451,12 +454,9 @@ export default {
formReset() {
Object.assign(this.$data, this.$options.data());
},
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();
},
confirmCalbackFnc(props) {

View File

@@ -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()
},
},