From 7dfed155bc4f5a1c7cf5a592e8325dc1ba9243bc Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期一, 22 十一月 2021 15:48:09 +0800
Subject: [PATCH] [update] otp登入、認證、顧問EService登入

---
 PAMapp/components/Consultant/ConsultantList.vue |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/PAMapp/components/Consultant/ConsultantList.vue b/PAMapp/components/Consultant/ConsultantList.vue
index 18f7017..6e8243b 100644
--- a/PAMapp/components/Consultant/ConsultantList.vue
+++ b/PAMapp/components/Consultant/ConsultantList.vue
@@ -6,7 +6,6 @@
                 v-for="(agent, index) in agents"
                 :key="index"
                 :agentInfo="agent"
-                @removeAgent="removeAgent"
             ></ConsultantCard>
         </template>
         <template v-if="isLogin && agents.length === 0">
@@ -24,7 +23,7 @@
 </template>
 
 <script lang="ts">
-import { Vue, Component, Prop, Emit } from 'nuxt-property-decorator';
+import { Vue, Component, Prop } from 'nuxt-property-decorator';
 import { Consultants } from '~/assets/ts/api/consultant';
 import { isLogin } from '~/assets/ts/auth';
 
@@ -36,9 +35,6 @@
         return isLogin();
     }
 
-    @Emit('removeAgent') removeAgent(agentId: number) {
-        return agentId;
-    }
 }
 </script>
 

--
Gitblit v1.9.3