PAMapp/components/Consultant/ConsultantCard.vue
@@ -9,7 +9,7 @@ :size="50" :src="agentInfo.img" class="cursor--pointer" @click.native="$router.push(`/agentInfo`)" @click.native="showAgentDetail(agentInfo.agentNo);" ></el-avatar> <div class="satisfaction"> <i class="icon-star pam-icon icon--yellow satisfaction"></i> @@ -109,6 +109,10 @@ @Emit('removeAgent') removeAgent() { return this.agentInfo.agentNo; } showAgentDetail(agentNo: string): void { this.$router.push(`/agentInfo/${agentNo}`); } } </script>