|
@@ -121,12 +121,12 @@ export default {
|
|
|
advanced: true, // 高级搜索 展开/关闭
|
|
|
tableHeight: 0,
|
|
|
warehouseList: [], // 仓库列表
|
|
|
- time: [
|
|
|
- getDate.getCurrMonthDays().starttime,
|
|
|
- getDate.getCurrMonthDays().endtime
|
|
|
- ],
|
|
|
+ time: [
|
|
|
+ getDate.getCurrMonthDays().starttime,
|
|
|
+ getDate.getCurrMonthDays().endtime
|
|
|
+ ],
|
|
|
queryParam: { // 查询条件
|
|
|
- beginDate: getDate.getCurrMonthDays().starttime,
|
|
|
+ beginDate: getDate.getCurrMonthDays().starttime,
|
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
|
outWarehouseSn: undefined, // 调出仓库
|
|
|
putWarehouseSn: undefined, // 调入仓库
|
|
@@ -258,6 +258,9 @@ export default {
|
|
|
setTimeout(() => {
|
|
|
_this.setTableH()
|
|
|
}, 400)
|
|
|
+ },
|
|
|
+ '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
|
|
|
+ this.setTableH()
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|