mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 01:33:37 +09:00
수정건 수정
This commit is contained in:
@@ -210,29 +210,30 @@ export default {
|
||||
custTyNm: '',
|
||||
}
|
||||
},
|
||||
props: {
|
||||
userSeq: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
},
|
||||
// props: {
|
||||
// userSeq: {
|
||||
// type: String,
|
||||
// default: "",
|
||||
// },
|
||||
// },
|
||||
components: {
|
||||
channelMgtApi,
|
||||
AdminNmPop,
|
||||
},
|
||||
created() {
|
||||
this.getExcelHeader();
|
||||
if(this.$route.params.userSeq != null){ //리스트에서 상세 호출
|
||||
this.loginId = this.$route.params.loginId;
|
||||
if(this.$route.params.userSeq != null){ //리스트에서 상세 호출
|
||||
//this.loginId = this.$route.params.loginId;
|
||||
this.$store.commit('dataStore/updateUserSeq', this.$route.params.userSeq);
|
||||
this.$store.commit('dataStore/updateUserId', this.$route.params.userId);
|
||||
//this.$store.commit('dataStore/updateUserId', this.$route.params.userId);
|
||||
this.channelDetail(this.$route.params.userSeq);
|
||||
}else{
|
||||
var userSeq = this.$store.getters["dataStore/getUserSeq"];
|
||||
var userId = this.$store.getters["dataStore/getUserId"];
|
||||
this.loginId = userId;
|
||||
this.channelDetail(userSeq);
|
||||
}
|
||||
}
|
||||
// else{
|
||||
// var userSeq = this.$store.getters["dataStore/getUserSeq"];
|
||||
// var userId = this.$store.getters["dataStore/getUserId"];
|
||||
// this.loginId = userId;
|
||||
// this.channelDetail(userSeq);
|
||||
// }
|
||||
},
|
||||
destroyed() {
|
||||
this.$store.commit('dataStore/updateUserSeq', '');
|
||||
@@ -356,6 +357,9 @@ export default {
|
||||
}
|
||||
}, // end of getExcelDataDown
|
||||
goChannelList() {
|
||||
// this.row.userSeq = this.$route.params.userSeq;
|
||||
|
||||
// alert(this.row.userSeq);
|
||||
this.$router.push({name: 'channelList'});
|
||||
},
|
||||
searchIDPopOpen: function () {
|
||||
|
||||
Reference in New Issue
Block a user