From b6661a090e8bcf8f45be24a01b6a7bb08e3aaff1 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 08 十二月 2021 08:50:04 +0800 Subject: [PATCH] refactor: pages component - separate vue files --- PAMapp/pages/myConsultantList/my-consultant-list.component.ts | 28 ---------------------------- 1 files changed, 0 insertions(+), 28 deletions(-) diff --git a/PAMapp/pages/myConsultantList.vue b/PAMapp/pages/myConsultantList/my-consultant-list.component.ts similarity index 60% rename from PAMapp/pages/myConsultantList.vue rename to PAMapp/pages/myConsultantList/my-consultant-list.component.ts index 490d23c..2a4c907 100644 --- a/PAMapp/pages/myConsultantList.vue +++ b/PAMapp/pages/myConsultantList/my-consultant-list.component.ts @@ -1,30 +1,3 @@ -<template> - <div> - <div class="pam-cus-tabs mb-30"> - <div - class="cus-tab-item" - :class="{'is-active': activeTabName === 'consultantList'}" - @click="tabClick('consultantList')" - >憿批�� - <span class="p">({{consultantList.length}})</span> - </div> - <div - class="cus-tab-item" - :class="{'is-active': activeTabName === 'contactedList'}" - @click="tabClick('contactedList')" - >撌脰蝯� - <span class="p">({{contactedList.length}})</span> - </div> - </div> - - <NuxtChild - :contactedList="contactedList" - :consultantList="consultantList" - ></NuxtChild> - </div> -</template> - -<script lang='ts'> import { Vue, Component, Watch, State, Action } from 'nuxt-property-decorator'; import { Consultant } from '~/assets/ts/models/consultant.model'; @@ -66,4 +39,3 @@ } } -</script> \ No newline at end of file -- Gitblit v1.8.0