Commit 737ce1c0 authored by caimeng's avatar caimeng

修改BUG 提交

parent c2296e77
......@@ -272,7 +272,8 @@
:visible.sync="cf.visible"
:before-close="handleChangeCFClose"
>
<div class="box-agreement">
<div class="box-agreement" style="height: 380px; overflow: auto">
<h3 style="color: crimson; text-align: center; margin-bottom: 20px">账单变更后,不可恢复,请谨慎操作</h3>
<block-header title="当前可变更信息"/>
<el-form label-suffix=":" label-width="110px" :model="form" ref="form">
<el-form-item prop="isUploadProve" label="可变更期数">
......
......@@ -105,6 +105,20 @@
</el-table>
</div>
<div class="pages">
<el-pagination
background
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
:current-page.sync="form.current"
:page-sizes="[10, 20, 50, 100]"
:page-size="form.size"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
>
</el-pagination>
</div>
<!-- 生成协议弹框 -->
<template v-if="SignVisible">
......@@ -284,14 +298,15 @@ export default {
this.init()
},
/** 处理分页操作*/
handleCurrentChange() {
this.loanApplyList = this.backedData()
handleCurrentChange(e) {
this.form.current = e;
this.init();
},
handleSizeChange(e) {
this.form.size = e;
this.form.current = 1;
this.init();
},
handleChange() {
}
}
}
......@@ -314,4 +329,14 @@ ul, li {
padding: 0;
}
.p-table {
margin-bottom: 20px;
}
.pages {
display: flex;
align-items: center;
justify-content: center;
}
</style>
......@@ -9,7 +9,7 @@
:before-close="handleCancel"
>
<div class="box-agreement">
<el-form label-suffix=":" :rules="rules" label-width="110px" :model="form" ref="form">
<el-form label-suffix=":" :rules="rules" label-width="200px" :model="form" ref="form">
<el-row>
<el-col :span="16">
......
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