From 76c1ce3c2eb001560bfb785f7b2f62d4ec64dcb6 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期五, 10 十二月 2021 09:49:50 +0800
Subject: [PATCH] update 使用 currentRole 判斷目前是否為顧問/客戶登入狀態

---
 PAMapp/pages/myConsultantList/consultantList.vue |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/PAMapp/pages/myConsultantList/consultantList.vue b/PAMapp/pages/myConsultantList/consultantList.vue
index b1b0a5c..356baeb 100644
--- a/PAMapp/pages/myConsultantList/consultantList.vue
+++ b/PAMapp/pages/myConsultantList/consultantList.vue
@@ -12,14 +12,13 @@
 </template>
 
 <script lang="ts">
-import { Vue, Component, Prop, Getter } from 'nuxt-property-decorator';
+import { Vue, Component, Prop } from 'nuxt-property-decorator';
 import { Consultant } from '~/assets/ts/models/consultant.model';
 
 
 @Component
 export default class ConsultantPage extends Vue {
     @Prop() consultantList!: Consultant[];
-    @Getter isLogin!: boolean;
     pageList: Consultant[] = [];
 
     changePage(pageList: Consultant[]) {

--
Gitblit v1.8.0