doway-coms 1.4.14 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
</template>
|
|
265
265
|
<template #pager v-if="pager && !pager.notShow">
|
|
266
266
|
<a-row>
|
|
267
|
-
<a-col :span="
|
|
267
|
+
<a-col :span="8" style="text-align: left; padding: 10px">
|
|
268
268
|
<a-space>
|
|
269
269
|
<template v-for="loopPagerBtn in pager.buttons">
|
|
270
270
|
<a-button
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
</template>
|
|
280
280
|
</a-space>
|
|
281
281
|
</a-col>
|
|
282
|
-
<a-col :span="
|
|
282
|
+
<a-col :span="16" style="text-align: right">
|
|
283
283
|
<BasePagination
|
|
284
284
|
v-if="pager.size"
|
|
285
285
|
:totalRows="pager.totalRows"
|
|
@@ -287,7 +287,6 @@
|
|
|
287
287
|
:currentPage="pager.current"
|
|
288
288
|
@pageChange="pageChange"
|
|
289
289
|
@pageSizeChange="pageSizeChange"
|
|
290
|
-
:pageSizeOptions="pager.sizeOptions"
|
|
291
290
|
/>
|
|
292
291
|
</a-col>
|
|
293
292
|
</a-row>
|
|
@@ -15,12 +15,13 @@
|
|
|
15
15
|
<!-- />-->
|
|
16
16
|
<Pager
|
|
17
17
|
background
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
:current-page="currentPage"
|
|
19
|
+
:page-size.sync="pageSize"
|
|
20
20
|
:total="totalRows"
|
|
21
21
|
size="small"
|
|
22
|
-
:page-sizes="
|
|
22
|
+
:page-sizes="[10, 20 ,50, 100, 150, 200]"
|
|
23
23
|
@page-change="onPageChange"
|
|
24
|
+
style="margin-top: 10px;"
|
|
24
25
|
:layouts="['PrevJump', 'PrevPage', 'JumpNumber', 'NextPage', 'NextJump', 'Sizes', 'FullJump', 'Total']"
|
|
25
26
|
/>
|
|
26
27
|
</div>
|