Blame view

src/components/page/page.vue 8.73 KB
7fa943eb   梁灏   init
1
  <template>
e0cd7f90   梁灏   fixed #134
2
      <ul :class="simpleWrapClasses" :style="style" v-if="simple">
7fa943eb   梁灏   init
3
4
5
6
          <li
              title="上一页"
              :class="prevClasses"
              @click="prev">
93064e3b   梁灏   add Page UI
7
              <a><i class="ivu-icon ivu-icon-ios-arrow-left"></i></a>
7fa943eb   梁灏   init
8
          </li>
93064e3b   梁灏   add Page UI
9
          <div :class="simplePagerClasses" :title="current + '/' + allPages">
7fa943eb   梁灏   init
10
11
12
13
14
15
16
17
18
19
20
21
22
              <input
                  type="text"
                  :value="current"
                  @keydown="keyDown"
                  @keyup="keyUp"
                  @change="keyUp">
              <span>/</span>
              {{ allPages }}
          </div>
          <li
              title="下一页"
              :class="nextClasses"
              @click="next">
93064e3b   梁灏   add Page UI
23
              <a><i class="ivu-icon ivu-icon-ios-arrow-right"></i></a>
7fa943eb   梁灏   init
24
25
          </li>
      </ul>
e0cd7f90   梁灏   fixed #134
26
      <ul :class="wrapClasses" :style="style" v-else>
d6342fe1   jingsam   fixed ie bug
27
          <span :class="[prefixCls + '-total']" v-if="showTotal">
7fa943eb   梁灏   init
28
29
30
31
32
33
              <slot>共 {{ total }} 条</slot>
          </span>
          <li
              title="上一页"
              :class="prevClasses"
              @click="prev">
93064e3b   梁灏   add Page UI
34
              <a><i class="ivu-icon ivu-icon-ios-arrow-left"></i></a>
7fa943eb   梁灏   init
35
          </li>
d6342fe1   jingsam   fixed ie bug
36
37
38
39
40
41
42
43
44
          <li title="第一页" :class="firstPageClasses" @click="changePage(1)"><a>1</a></li>
          <li title="向前 5 页" v-if="current - 3 > 1" :class="[prefixCls + '-item-jump-prev']" @click="fastPrev"><a><i class="ivu-icon ivu-icon-ios-arrow-left"></i></a></li>
          <li :title="current - 2" v-if="current - 2 > 1" :class="[prefixCls + '-item']" @click="changePage(current - 2)"><a>{{ current - 2 }}</a></li>
          <li :title="current - 1" v-if="current - 1 > 1" :class="[prefixCls + '-item']" @click="changePage(current - 1)"><a>{{ current - 1 }}</a></li>
          <li :title="current" v-if="current != 1 && current != allPages" :class="[prefixCls + '-item',prefixCls + '-item-active']"><a>{{ current }}</a></li>
          <li :title="current + 1" v-if="current + 1 < allPages" :class="[prefixCls + '-item']" @click="changePage(current + 1)"><a>{{ current + 1 }}</a></li>
          <li :title="current + 2" v-if="current + 2 < allPages" :class="[prefixCls + '-item']" @click="changePage(current + 2)"><a>{{ current + 2 }}</a></li>
          <li title="向后 5 页" v-if="current + 3 < allPages" :class="[prefixCls + '-item-jump-next']" @click="fastNext"><a><i class="ivu-icon ivu-icon-ios-arrow-right"></i></a></li>
          <li :title="'最后一页:' + allPages" v-if="allPages > 1" :class="lastPageClasses" @click="changePage(allPages)"><a>{{ allPages }}</a></li>
7fa943eb   梁灏   init
45
46
47
48
          <li
              title="下一页"
              :class="nextClasses"
              @click="next">
93064e3b   梁灏   add Page UI
49
              <a><i class="ivu-icon ivu-icon-ios-arrow-right"></i></a>
7fa943eb   梁灏   init
50
51
52
53
54
55
56
57
58
          </li>
          <Options
              :show-sizer="showSizer"
              :page-size="pageSize"
              :page-size-opts="pageSizeOpts"
              :show-elevator="showElevator"
              :_current.once="current"
              :current.sync="current"
              :all-pages="allPages"
6932b4d7   梁灏   update Page compo...
59
              :is-small="isSmall"
7fa943eb   梁灏   init
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
              @on-size="onSize"
              @on-page="onPage">
          </Options>
      </ul>
  </template>
  <script>
      import { oneOf } from '../../utils/assist';
      import Options from './options.vue';
  
      const prefixCls = 'ivu-page';
  
      export default {
          components: { Options },
          props: {
              current: {
                  type: Number,
                  default: 1
              },
              total: {
                  type: Number,
                  default: 0
              },
              pageSize: {
                  type: Number,
                  default: 10
              },
              pageSizeOpts: {
                  type: Array,
                  default () {
b0893113   jingsam   :art: add eslint
89
                      return [10, 20, 30, 40];
7fa943eb   梁灏   init
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
                  }
              },
              size: {
                  validator (value) {
                      return oneOf(value, ['small']);
                  }
              },
              simple: {
                  type: Boolean,
                  default: false
              },
              showTotal: {
                  type: Boolean,
                  default: false
              },
              showElevator: {
                  type: Boolean,
                  default: false
              },
              showSizer: {
                  type: Boolean,
                  default: false
e0cd7f90   梁灏   fixed #134
112
113
114
115
116
117
              },
              class: {
                  type: String
              },
              style: {
                  type: Object
7fa943eb   梁灏   init
118
119
120
121
122
              }
          },
          data () {
              return {
                  prefixCls: prefixCls
b0893113   jingsam   :art: add eslint
123
              };
7fa943eb   梁灏   init
124
125
          },
          computed: {
6932b4d7   梁灏   update Page compo...
126
127
128
              isSmall () {
                  return !!this.size;
              },
7fa943eb   梁灏   init
129
              allPages () {
4935594e   梁灏   fixed #21
130
131
                  const allPage = Math.ceil(this.total / this.pageSize);
                  return (allPage === 0) ? 1 : allPage;
7fa943eb   梁灏   init
132
133
134
135
              },
              simpleWrapClasses () {
                  return [
                      `${prefixCls}`,
e0cd7f90   梁灏   fixed #134
136
137
138
139
                      `${prefixCls}-simple`,
                      {
                          [`${this.class}`]: !!this.class
                      }
b0893113   jingsam   :art: add eslint
140
                  ];
7fa943eb   梁灏   init
141
              },
93064e3b   梁灏   add Page UI
142
143
144
              simplePagerClasses () {
                  return `${prefixCls}-simple-pager`;
              },
7fa943eb   梁灏   init
145
146
147
148
              wrapClasses () {
                  return [
                      `${prefixCls}`,
                      {
e0cd7f90   梁灏   fixed #134
149
                          [`${this.class}`]: !!this.class,
7fa943eb   梁灏   init
150
151
                          'mini': !!this.size
                      }
b0893113   jingsam   :art: add eslint
152
                  ];
7fa943eb   梁灏   init
153
154
155
156
157
              },
              prevClasses () {
                  return [
                      `${prefixCls}-prev`,
                      {
3ac88707   梁灏   optimize Page
158
                          [`${prefixCls}-disabled`]: this.current === 1
7fa943eb   梁灏   init
159
                      }
b0893113   jingsam   :art: add eslint
160
                  ];
7fa943eb   梁灏   init
161
162
163
164
165
              },
              nextClasses () {
                  return [
                      `${prefixCls}-next`,
                      {
3ac88707   梁灏   optimize Page
166
                          [`${prefixCls}-disabled`]: this.current === this.allPages
7fa943eb   梁灏   init
167
                      }
b0893113   jingsam   :art: add eslint
168
                  ];
d6342fe1   jingsam   fixed ie bug
169
170
171
172
173
              },
              firstPageClasses () {
                  return [
                      `${prefixCls}-item`,
                      {
3ac88707   梁灏   optimize Page
174
                          [`${prefixCls}-item-active`]: this.current === 1
d6342fe1   jingsam   fixed ie bug
175
                      }
b0893113   jingsam   :art: add eslint
176
                  ];
d6342fe1   jingsam   fixed ie bug
177
178
179
180
181
              },
              lastPageClasses () {
                  return [
                      `${prefixCls}-item`,
                      {
3ac88707   梁灏   optimize Page
182
                          [`${prefixCls}-item-active`]: this.current === this.allPages
d6342fe1   jingsam   fixed ie bug
183
                      }
b0893113   jingsam   :art: add eslint
184
                  ];
7fa943eb   梁灏   init
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
              }
          },
          methods: {
              changePage (page) {
                  if (this.current != page) {
                      this.current = page;
                      this.$emit('on-change', page);
                  }
              },
              prev () {
                  const current = this.current;
                  if (current <= 1) {
                      return false;
                  }
                  this.changePage(current - 1);
              },
              next () {
                  const current = this.current;
                  if (current >= this.allPages) {
                      return false;
                  }
                  this.changePage(current + 1);
              },
              fastPrev () {
                  const page = this.current - 5;
                  if (page > 0) {
                      this.changePage(page);
                  } else {
                      this.changePage(1);
                  }
              },
              fastNext () {
                  const page = this.current + 5;
                  if (page > this.allPages) {
                      this.changePage(this.allPages);
                  } else {
                      this.changePage(page);
                  }
              },
              onSize (pageSize) {
                  this.pageSize = pageSize;
                  this.changePage(1);
07f400e5   梁灏   fixed #136
227
                  this.$emit('on-page-size-change', pageSize);
7fa943eb   梁灏   init
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
              },
              onPage (page) {
                  this.changePage(page);
              },
              keyDown (e) {
                  const key = e.keyCode;
                  const condition = (key >= 48 && key <= 57) || key == 8 || key == 37 || key == 39;
  
                  if (!condition) {
                      e.preventDefault();
                  }
              },
              keyUp (e) {
                  const key = e.keyCode;
                  const val = parseInt(e.target.value);
  
                  if (key === 38) {
b0893113   jingsam   :art: add eslint
245
                      this.prev();
7fa943eb   梁灏   init
246
                  } else if (key === 40) {
b0893113   jingsam   :art: add eslint
247
                      this.next();
7fa943eb   梁灏   init
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
                  } else if (key == 13) {
                      let page = 1;
  
                      if (val > this.allPages) {
                          page = this.allPages;
                      } else if (val <= 0) {
                          page = 1;
                      } else {
                          page = val;
                      }
  
                      e.target.value = page;
                      this.changePage(page);
                  }
              }
          }
b0893113   jingsam   :art: add eslint
264
      };
d6342fe1   jingsam   fixed ie bug
265
  </script>