<template #bottom="scope"><q-space/><div class="row">每页的行数:<q-selectv-model="scope.pagination.rowsPerPage"borderless:options="[10,20,30,50]"></q-select> <div class="row">{{ (scope.pagination.page - 1) * scope.pagination.rowsPerPage + 1 }}-<div v-if="scope.isLastPage === true">{{ responseData.length }}/ {{ responseData.length }}</div><div v-else>{{ scope.pagination.page * scope.pagination.rowsPerPage }} / {{ responseData.length }}</div></div><q-btnv-if="scope.pagesNumber > 2"icon="first_page"color="grey-8"rounddenseflat:disable="scope.isFirstPage"@click="scope.firstPage"/><q-btnicon="chevron_left"color="grey-8"rounddenseflat class="quanxuan":disable="scope.isFirstPage"@click="scope.prevPage"/><q-btnicon="chevron_right"color="grey-8"rounddenseflat class="quanxuan":disable="scope.isLastPage"@click="scope.nextPage"/><q-btnv-if="scope.pagesNumber > 2"icon="last_page"color="grey-8"rounddenseflat class="quanxuan":disable="scope.isLastPage"@click="scope.lastPage"/></div></template>