|
@@ -73,7 +73,7 @@
|
|
<el-table-column prop="backOffice" label="操作人"> </el-table-column>
|
|
<el-table-column prop="backOffice" label="操作人"> </el-table-column>
|
|
<el-table-column prop="updateDate" label="保存时间">
|
|
<el-table-column prop="updateDate" label="保存时间">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="address" label="操作" width="200">
|
|
|
|
|
|
+ <el-table-column prop="address" label="操作" width="400">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<ws-button v-if="scope.row.inOutFlag =='2' " v-hasPermission="
|
|
<ws-button v-if="scope.row.inOutFlag =='2' " v-hasPermission="
|
|
`warehouseManagement.warehouse.warehouseInfo.in`
|
|
`warehouseManagement.warehouse.warehouseInfo.in`
|
|
@@ -300,7 +300,9 @@
|
|
|
|
|
|
},
|
|
},
|
|
datechange() {
|
|
datechange() {
|
|
- this.getList()
|
|
|
|
|
|
+ this.getList( this.$route.query.baseId,
|
|
|
|
+ this.$route.query.positionId,
|
|
|
|
+ this.$route.query.warehouseType)
|
|
},
|
|
},
|
|
//返回按钮
|
|
//返回按钮
|
|
returnWarehouse() {
|
|
returnWarehouse() {
|
|
@@ -480,12 +482,16 @@
|
|
handleSizeChange(val) {
|
|
handleSizeChange(val) {
|
|
console.log(`每页 ${val} 条`)
|
|
console.log(`每页 ${val} 条`)
|
|
this.pageSize = val
|
|
this.pageSize = val
|
|
- this.getList()
|
|
|
|
|
|
+ this.getList( this.$route.query.baseId,
|
|
|
|
+ this.$route.query.positionId,
|
|
|
|
+ this.$route.query.warehouseType)
|
|
},
|
|
},
|
|
handleCurrentChange(val) {
|
|
handleCurrentChange(val) {
|
|
this.currentPage = val
|
|
this.currentPage = val
|
|
console.log(`当前页: ${val}`)
|
|
console.log(`当前页: ${val}`)
|
|
- this.getList()
|
|
|
|
|
|
+ this.getList( this.$route.query.baseId,
|
|
|
|
+ this.$route.query.positionId,
|
|
|
|
+ this.$route.query.warehouseType)
|
|
},
|
|
},
|
|
//收
|
|
//收
|
|
getList(id, id1, id2) {
|
|
getList(id, id1, id2) {
|
|
@@ -523,6 +529,7 @@
|
|
})
|
|
})
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
|
|
+ this.deptBudgetTotal = response.total
|
|
this.improved = response
|
|
this.improved = response
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -569,7 +576,9 @@
|
|
this.startDate = this.dateFormat('YYYY-mm-dd', this.value2[0])
|
|
this.startDate = this.dateFormat('YYYY-mm-dd', this.value2[0])
|
|
this.endDate = this.dateFormat('YYYY-mm-dd', this.value2[1])
|
|
this.endDate = this.dateFormat('YYYY-mm-dd', this.value2[1])
|
|
this.currentPage = 1
|
|
this.currentPage = 1
|
|
- this.getList()
|
|
|
|
|
|
+ this.getList( this.$route.query.baseId,
|
|
|
|
+ this.$route.query.positionId,
|
|
|
|
+ this.$route.query.warehouseType)
|
|
},
|
|
},
|
|
// deletecontract(){},
|
|
// deletecontract(){},
|
|
//删除
|
|
//删除
|