|
@@ -168,12 +168,13 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div class="container" style="text-align:right">
|
|
|
+ <div class="container" v-if="addresstotal" style="text-align:right">
|
|
|
<el-pagination
|
|
|
background
|
|
|
small
|
|
|
:current-page="addressparam.content.pageNumber"
|
|
|
@current-change="addresPageChange"
|
|
|
+ :page-size="addressparam.content.pageSize"
|
|
|
layout="total,prev, pager, next"
|
|
|
:total="addresstotal">
|
|
|
</el-pagination>
|
|
@@ -409,6 +410,7 @@ export default {
|
|
|
this.addressparam.content.sys_enterpriseid = this.data.sys_enterpriseid
|
|
|
const res = await this.$api.requested(this.addressparam)
|
|
|
this.addresstotal = res.total
|
|
|
+ console.log(this.addresstotal);
|
|
|
this.receiveAddresslist = res.data
|
|
|
},
|
|
|
|