|
@@ -458,7 +458,7 @@ export default {
|
|
|
this.$router.push({ name: 'purchaseOrderNewList' })
|
|
|
},
|
|
|
setTableH () {
|
|
|
- this.tableHeight = window.innerHeight - 310
|
|
|
+ this.tableHeight = window.innerHeight - (this.isShowBisiceInfo ? 440 : 310)
|
|
|
},
|
|
|
pageInit () {
|
|
|
this.$nextTick(() => {
|
|
@@ -467,6 +467,11 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ isShowBisiceInfo (newValue, oldValue) {
|
|
|
+ this.setTableH()
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted () {
|
|
|
this.showPage = true
|
|
|
if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
|