Blame view

src/components/pagination/pagination.vue 1.08 KB
simon committed
1 2 3

<template>
	<div class="comp">
simon committed
4
		<div class="pagination gird-g">
joe committed
5
			<div>{{$t('pagination.total')}}<span class="t1">{{totalItem}}</span>{{$t('pagination.unit')}}</div>
simon committed
6
			<div class="pagination-item">
simon committed
7
				<span class="pointer" :class="{'pagination-disabled' : cur == 1}">
joe committed
8
					<a @click="prevPage()">{{$t('pagination.firstPage')}}</a>
simon committed
9 10 11 12
				</span>
				<span @click="selPage(index)" class="page-num pointer" v-for="(index,idx) in indexs" :key="idx" v-bind:class="{ 'active': cur == index}">
					<a>{{index}}</a>
				</span>
simon committed
13
				<span class="pointer" :class="{'pagination-disabled' : cur == total}">
joe committed
14
					<a @click="nextPage()">{{$t('pagination.nextPage')}}</a>
simon committed
15 16 17 18
				</span>
			</div>

			<div class="pagination-item">
joe committed
19
				<span>{{$t('pagination.per')}}</span>
simon committed
20
				<input v-model="sel" class="ipt" :placeholder="cur" type="text">
joe committed
21 22
				<span>/ {{total}}{{$t('pagination.page')}}</span>
				<span @click="jumpPage" class="jump pointer">{{$t('pagination.goto')}}</span>
simon committed
23
			</div>
simon committed
24

simon committed
25 26 27 28 29 30 31 32
		</div>
	</div>
</template>

<script src="./pagination.js"></script>
<style lang="scss" scoped>
@import "./pagination.scss";
</style>