From 1d787d91e9ef23794a6ec648123bb8bfeaa00d44 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期二, 21 十二月 2021 10:43:48 +0800
Subject: [PATCH] refactor: appointment model, role enum

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

diff --git a/PAMapp/components/Consultant/ConsultantList.vue b/PAMapp/components/Consultant/ConsultantList.vue
index 1e7bd7c..33b9929 100644
--- a/PAMapp/components/Consultant/ConsultantList.vue
+++ b/PAMapp/components/Consultant/ConsultantList.vue
@@ -25,14 +25,13 @@
 <script lang="ts">
 import { Vue, Component, Prop, namespace } from 'nuxt-property-decorator';
 import { Consultant } from '~/assets/ts/models/consultant.model';
-import { Role } from '~/assets/ts/models/enum/Role';
 
 const roleStorage = namespace('localStorage');
 
 @Component
 export default class ConsultantList extends Vue {
     @Prop() agents!: Consultant[];
-    @Prop() title! : string; 
+    @Prop() title! : string;
     @roleStorage.Getter isUserLogin!:boolean;
 
     get agentList(){

--
Gitblit v1.8.0