|
@@ -657,6 +657,41 @@ export default {
|
|
|
checked: 0,
|
|
|
width: 100,
|
|
|
},
|
|
|
+ {
|
|
|
+ surface: "14",
|
|
|
+ label: "",
|
|
|
+ name: "应收合计",
|
|
|
+ checked: 0,
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "15",
|
|
|
+ label: "",
|
|
|
+ name: "应付合计",
|
|
|
+ checked: 0,
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "16",
|
|
|
+ label: "",
|
|
|
+ name: "利润",
|
|
|
+ checked: 0,
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "17",
|
|
|
+ label: "",
|
|
|
+ name: "实收合计",
|
|
|
+ checked: 0,
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ surface: "18",
|
|
|
+ label: "",
|
|
|
+ name: "实付合计",
|
|
|
+ checked: 0,
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
],
|
|
|
setRowList: [],
|
|
|
getRowList: [],
|
|
@@ -716,8 +751,6 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.$nextTick(() => {
|
|
|
- // 根据浏览器高度设置初始高度
|
|
|
- this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 160
|
|
|
// 监听浏览器高度变化,改变表格高度
|
|
|
window.onresize = () => {
|
|
|
this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
|
|
@@ -822,6 +855,10 @@ export default {
|
|
|
this.warehousebillsList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
|
+ // 根据浏览器高度设置初始高度
|
|
|
+ setInterval(() => {
|
|
|
+ this.tableHeight = window.innerHeight - this.$refs.table.$el.offsetTop - 70
|
|
|
+ }, 1500)
|
|
|
});
|
|
|
},
|
|
|
//合计
|