File was renamed from PAMapp/pages/myAppointmentList/appointmentList.vue |
| | |
| | | <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'; |
| | | |
| | |
| | | } |
| | | |
| | | } |
| | | </script> |