This commit is contained in:
parent
334a1c316c
commit
9a38facef4
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue