TC 수정

This commit is contained in:
kimre
2022-07-19 19:52:34 +09:00
parent 3be9f3df5a
commit 0f953fb620
6 changed files with 56 additions and 40 deletions

View File

@@ -253,7 +253,13 @@ export default {
ValidationConfirmPop,
},
created() {
this.memberDetail(this.$route.params.serviceId);
if(this.$route.params.serviceId != null){
this.$store.commit('dataStore/updateUserId', this.$route.params.serviceId);
this.memberDetail(this.$route.params.serviceId);
}else{
var userId = this.$store.getters["dataStore/getUserId"];
this.memberDetail(userId);
}
},
destroyed() {
this.$store.commit('searchcondition/updateSearchCondition', {
@@ -265,6 +271,7 @@ export default {
searchText1: '',
},
});
this.$store.commit('dataStore/updateUserId', '');
},
mounted() {},
computed: {