保誠-保戶業務員媒合平台
PAMapp/pages/agentInfo/_agentNo.vue
@@ -218,7 +218,6 @@
  alertFieldInfo(field: string): void {
    this.isAlertFieldInfo = true;
    console.log(field);
    switch(field) {
      case 'suitability':
        this.fieldInfoTitle = '匹配度';
@@ -233,23 +232,23 @@
}
interface AgentInfo {
  name: string;
  agentNo:string;
  role: string;
  image: string;
  avgScore: number;
  title: string;
  phoneNumber: string;
  serveArea: string;
  companyAddress: string;
  name            : string;
  agentNo         : string;
  role            : string;
  image           : string;
  avgScore        : number;
  title           : string;
  phoneNumber     : string;
  serveArea       : string;
  companyAddress  : string;
  lastestLoginTime: Date | null;
  seniority: string;
  suitability: number;
  evaluation: number;
  expertises: string[];
  concept: string;
  experiences: string[];
  awards: string;
  seniority       : string;
  suitability     : number;
  evaluation      : number;
  expertises      : string[];
  concept         : string;
  experiences     : string[];
  awards          : string;
}
</script>