This commit is contained in:
2024-07-16 15:20:42 +08:00
parent c900c134d7
commit ed78f48561
14 changed files with 82 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
<template>
<view class="zd_container">
<nav-bar title="虚拟区发货"></nav-bar>
<!-- <nav-bar title="虚拟区发货"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
@@ -70,6 +71,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [],
@@ -80,6 +82,9 @@
disabled1: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._virtualbillQuery(this.val1, this.val2)
this._virtualbillType()
@@ -111,7 +116,7 @@
toSure () {
if (this.pkId) {
uni.navigateTo({
url: '/pages/WarehouseManage/XuniDeliveryConfirm?billcode=' + this.pkObj.bill_code
url: '/pages/WarehouseManage/XuniDeliveryConfirm?billcode=' + this.pkObj.bill_code + '&title=' + this.title
})
}
},