This commit is contained in:
bb_pan 2025-07-22 18:40:33 +08:00
parent 334a1c316c
commit 9a38facef4
2 changed files with 6 additions and 3 deletions

View File

@ -642,7 +642,7 @@ export default {
}, },
// //
async handlePrint(row) { async handlePrint(row) {
const res = await getCheckInfo({ id: row.id }) const res = await getCheckInfo({ id: row.id, publishTask: row.publishTask })
this.idTemp = row.id this.idTemp = row.id
this.checkDataInfo = res.data.leaseApplyInfo this.checkDataInfo = res.data.leaseApplyInfo

View File

@ -731,7 +731,8 @@ export default {
// //
queryOutView: { queryOutView: {
pageNum: 1, pageNum: 1,
pageSize: 10 pageSize: 10,
keyWord: ''
}, },
outQuery: { outQuery: {
pageNum: 1, pageNum: 1,
@ -850,6 +851,7 @@ export default {
const { id, publishTask } = row const { id, publishTask } = row
this.publishTask = publishTask this.publishTask = publishTask
this.title = '查看' this.title = '查看'
this.queryOutView.keyWord = ''
this.showOutView = true this.showOutView = true
this.queryOutView.id = row.id this.queryOutView.id = row.id
outInfoList(id, { keyWord: this.queryOutView.keyWord, publishTask }).then(response => { outInfoList(id, { keyWord: this.queryOutView.keyWord, publishTask }).then(response => {
@ -1018,7 +1020,7 @@ export default {
}, },
// //
async handlePrint(row) { async handlePrint(row) {
const res = await getCheckInfo({ id: row.id }) const res = await getCheckInfo({ id: row.id, publishTask: row.publishTask })
this.idTemp = row.id this.idTemp = row.id
this.checkDataInfo = res.data.leaseApplyInfo this.checkDataInfo = res.data.leaseApplyInfo
@ -1053,6 +1055,7 @@ export default {
// //
async handleLld(row) { async handleLld(row) {
this.title = '领料单' this.title = '领料单'
this.queryOutView.keyWord = ''
this.open = true this.open = true
// var ids = row.id // var ids = row.id
const { id, publishTask } = row const { id, publishTask } = row