This commit is contained in:
2024-07-16 16:16:01 +08:00
parent 277254e9c9
commit 2c1a5b0427
6 changed files with 25 additions and 9 deletions

View File

@@ -65,6 +65,7 @@
},
data() {
return {
title: '',
val1: '',
billCode: '',
dataList: [],
@@ -73,6 +74,7 @@
},
onLoad (option) {
this.billCode = option.billcode
this.title = option.title
this._stivtDtlQuery()
},
mounted () {
@@ -84,12 +86,12 @@
},
goIn () {
uni.navigateTo({
url: `/pages/WarehouseManage/ProdDelivery`
url: `/pages/WarehouseManage/ProdDelivery?title=` + this.title
})
},
toXq (code) {
uni.navigateTo({
url: '/pages/WarehouseManage/ProdDeliveryDtl?boxno=' + code + '&billcode=' + this.billCode
url: '/pages/WarehouseManage/ProdDeliveryDtl?boxno=' + code + '&billcode=' + this.billCode + '&title=' + this.title
})
},
/** 初始化查询 */