Commit 47538230 authored by 朱彩云's avatar 朱彩云

fix(回款管理): 回款表格滚动问题修复

parent e6ebfe56
...@@ -823,13 +823,12 @@ export default { ...@@ -823,13 +823,12 @@ export default {
mounted() { mounted() {
window.addEventListener('resize', this.resizePage) window.addEventListener('resize', this.resizePage)
this.calcTableHeight() this.calcTableHeight()
this._getNewEOBList()
}, },
methods: { methods: {
moment, moment,
resizePage() { resizePage() {
this.calcTableHeight() this.calcTableHeight()
this.getData() this.searchData()
}, },
// 切换是否已回款 // 切换是否已回款
changeHasBack(e) { changeHasBack(e) {
...@@ -852,6 +851,7 @@ export default { ...@@ -852,6 +851,7 @@ export default {
}, },
// 计算表格最大高度 // 计算表格最大高度
calcTableHeight() { calcTableHeight() {
console.log('1111')
const dom = this.$refs.burt const dom = this.$refs.burt
const containterH = dom.clientHeight const containterH = dom.clientHeight
const gobackH = document.querySelector('.back-container').clientHeight const gobackH = document.querySelector('.back-container').clientHeight
...@@ -1386,7 +1386,13 @@ export default { ...@@ -1386,7 +1386,13 @@ export default {
} }
} }
.pagination { .pagination {
width: 100%;
position: fixed;
bottom: 30px;
right: 50px;
margin-top: 10px; margin-top: 10px;
z-index: 10;
background-color: #fff;
::v-deep .jump-page { ::v-deep .jump-page {
height: 30px; height: 30px;
} }
......
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