Commit bb35dcf4 by Kyle_Li

分页更改

parent e0810844
...@@ -29,5 +29,6 @@ ...@@ -29,5 +29,6 @@
<script src="//web-1251519181.file.myqcloud.com/components/card.2.0.02.js"></script> <script src="//web-1251519181.file.myqcloud.com/components/card.2.0.02.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/selector.1.1.95.js"></script> <script src="//web-1251519181.file.myqcloud.com/components/selector.1.1.95.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/export-excel.2.0.13.js"></script> <script src="//web-1251519181.file.myqcloud.com/components/export-excel.2.0.13.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/pagination.1.0.5.js"></script>
</body> </body>
</html> </html>
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="myTagTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="myTagTableData.length != 0">
<el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage" :page-size="pageSize" layout="prev, pager, next" :total="total"> <dm-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage" :page-size="pageSize" layout="prev, pager, next" :total="total">
</el-pagination> </dm-pagination>
</div> </div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="暂存架" name="second"> <el-tab-pane label="暂存架" name="second">
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
</el-table> </el-table>
<div class="pagination" v-if="total > 0"> <div class="pagination" v-if="total > 0">
<el-pagination class="table-light-color" @current-change="cardCurrentChange" :current-page="cardCurrentPage" :page-size="cardPageSize" layout="prev, pager, next" :total="total"> </el-pagination> <dm-pagination class="table-light-color" @current-change="cardCurrentChange" :current-page="cardCurrentPage" :page-size="cardPageSize" layout="prev, pager, next" :total="total"> </dm-pagination>
</div> </div>
</div> </div>
<div class="dialog-footer"> <div class="dialog-footer">
......
...@@ -156,7 +156,7 @@ components: { ...@@ -156,7 +156,7 @@ components: {
</div> </div>
<!-- 分页 --> <!-- 分页 -->
<div class="links-tools-page"> <div class="links-tools-page">
<el-pagination <dm-pagination
@size-change="linkSizeChange" @size-change="linkSizeChange"
@current-change="linkCurrentChange" @current-change="linkCurrentChange"
:current-page="currentPage" :current-page="currentPage"
...@@ -165,7 +165,7 @@ components: { ...@@ -165,7 +165,7 @@ components: {
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
......
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
</div> </div>
<!-- 分页 --> <!-- 分页 -->
<div class="links-tools-page"> <div class="links-tools-page">
<el-pagination <dm-pagination
@size-change="linkSizeChange" @size-change="linkSizeChange"
@current-change="linkCurrentChange" @current-change="linkCurrentChange"
:current-page="currentPage" :current-page="currentPage"
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
<el-tabs v-model="activeName" @tab-click="handleClick"> <el-tabs v-model="activeName" @tab-click="handleClick">
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
</div> </div>
<!-- 分页 --> <!-- 分页 -->
<div class="links-tools-page"> <div class="links-tools-page">
<el-pagination <dm-pagination
@size-change="linkSizeChange" @size-change="linkSizeChange"
@current-change="linkCurrentChange" @current-change="linkCurrentChange"
:current-page="currentPage" :current-page="currentPage"
...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</el-tab-pane> </el-tab-pane>
......
...@@ -157,7 +157,7 @@ components: { ...@@ -157,7 +157,7 @@ components: {
</div> </div>
<!-- 分页 --> <!-- 分页 -->
<div class="links-tools-page"> <div class="links-tools-page">
<el-pagination <dm-pagination
@size-change="linkSizeChange" @size-change="linkSizeChange"
@current-change="linkCurrentChange" @current-change="linkCurrentChange"
:current-page="currentPage" :current-page="currentPage"
...@@ -166,7 +166,7 @@ components: { ...@@ -166,7 +166,7 @@ components: {
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="tagTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="tagTableData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="memberGroupDetailData.length != 0"> <div class="block common-wrap__page text-right" v-if="memberGroupDetailData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -273,7 +273,7 @@ ...@@ -273,7 +273,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
style="height: 475px" style="height: 475px"
></tag-container> ></tag-container>
<div class="page-box"> <div class="page-box">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
v-if="total > 0" v-if="total > 0"
></el-pagination> ></dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="groupTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="groupTableData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
:page-size="pageSize" :page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total"> :total="total">
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
...@@ -223,7 +223,7 @@ ...@@ -223,7 +223,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="groupTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="groupTableData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
......
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="memberGroupDetailData.length != 0"> <div class="block common-wrap__page text-right" v-if="memberGroupDetailData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -269,7 +269,7 @@ ...@@ -269,7 +269,7 @@
:page-size="pageSize" :page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total"> :total="total">
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<tag-container @deleteHandTag="deleteHandTag" :data="memberTagList" :handTag="handTag" :groupId="groupId" :refersh="refershList" @addTag="selectedTag" @editHandTag="editHandTag" ref="tagContainer" /> <tag-container @deleteHandTag="deleteHandTag" :data="memberTagList" :handTag="handTag" :groupId="groupId" :refersh="refershList" @addTag="selectedTag" @editHandTag="editHandTag" ref="tagContainer" />
<div class="page-box" v-if="total > 0"> <div class="page-box" v-if="total > 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
:page-size="pageSize" :page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
></el-pagination> ></dm-pagination>
</div> </div>
<!-- 我的标签 --> <!-- 我的标签 -->
......
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="tagTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="tagTableData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
</el-table> </el-table>
</div> </div>
<div class="block common-wrap__page text-right" v-if="tagTableData.length != 0"> <div class="block common-wrap__page text-right" v-if="tagTableData.length != 0">
<el-pagination <dm-pagination
background background
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="total" :total="total"
> >
</el-pagination> </dm-pagination>
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment