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/myAppointmentList/appointmentList/appointment-list.component.ts | 26 -------------------------- 1 files changed, 0 insertions(+), 26 deletions(-) diff --git a/PAMapp/pages/myAppointmentList/appointmentList.vue b/PAMapp/pages/myAppointmentList/appointmentList/appointment-list.component.ts similarity index 67% rename from PAMapp/pages/myAppointmentList/appointmentList.vue rename to PAMapp/pages/myAppointmentList/appointmentList/appointment-list.component.ts index 8cee481..03e33bc 100644 --- a/PAMapp/pages/myAppointmentList/appointmentList.vue +++ b/PAMapp/pages/myAppointmentList/appointmentList/appointment-list.component.ts @@ -1,28 +1,3 @@ -<template> - <div> - <el-input - type="text" - placeholder="隢撓���摮�" - class="mb-30 pam-clientReserved-input" - v-model="keyWord" - @keyup.enter.native="search" - > - <i slot="suffix" class="icon-search search cursor--pointer" @click="search"></i> - </el-input> - - <ClientList - :clients="pageList" - :title="'reservedList'" - ></ClientList> - - <UiPagination - :totalList="filterList" - @changePage="changePage" - ></UiPagination> - </div> -</template> - -<script lang="ts"> import { Vue, Component, State, Watch } from 'nuxt-property-decorator'; import { ClientInfo } from '~/assets/ts/api/appointment'; @@ -64,4 +39,3 @@ } } -</script> \ No newline at end of file -- Gitblit v1.8.0