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">
@@ -47,6 +48,7 @@
},
data() {
return {
title: '',
options1: [],
index1: '',
options2: [],
@@ -59,6 +61,9 @@
newoptions3: []
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
this._queryDeviceList('')

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">
@@ -55,6 +56,7 @@
},
data() {
return {
title: '',
options: [],
index: '',
qty: '',
@@ -64,6 +66,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
},

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">
@@ -47,6 +48,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
@@ -54,6 +56,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
handleChange1 (e) {
this._pointStatusQuery(e)

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">
@@ -134,6 +135,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [],
@@ -163,6 +165,9 @@
created () {
this._queryProductArea()
},
onLoad (options) {
this.title = options.title
},
methods: {
searchList () {
this.dataList = []

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">
@@ -114,6 +115,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
val4: '',
@@ -142,6 +144,9 @@
created () {
this._queryProductArea()
},
onLoad (options) {
this.title = options.title
},
methods: {
/** 选择器1 */
selectChange1(e) {

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">
@@ -123,6 +124,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
@@ -140,6 +142,9 @@
checkArr: []
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
this._queryMaterialInfo()

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">
@@ -77,6 +78,7 @@
},
data() {
return {
title: '',
options1: [],
index1: '',
options2: [],
@@ -89,6 +91,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
this._queryMaterialInfo()

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">
@@ -131,6 +132,7 @@
},
data() {
return {
title: '',
options1: [],
index1: '',
options2: [],
@@ -150,6 +152,9 @@
active: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
this._queryMaterialInfo()

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">
@@ -84,6 +85,7 @@
},
data() {
return {
title: '',
top: 0,
val1: '',
val2: '',
@@ -95,6 +97,9 @@
onPageScroll(e) {
this.$refs.UT.topData(e.scrollTop)
},
onLoad (options) {
this.title = options.title
},
methods: {
async _twoPdaIvtQuery () {
let res = await twoPdaIvtQuery(this.val1, this.val2)

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">
@@ -39,11 +40,15 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
disabled1: false
};
},
onLoad (options) {
this.title = options.title
},
mounted () {
this.$refs.scanChild.handleFocus()
},

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">
@@ -88,6 +89,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [],
@@ -112,6 +114,9 @@
this._statusList()
this._coolIOQuery()
},
onLoad (options) {
this.title = options.title
},
methods: {
searchList () {
this.dataList = []

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">
@@ -79,6 +80,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [],
@@ -93,6 +95,9 @@
this._outcoolIOQuery()
this._queryProductArea()
},
onLoad (options) {
this.title = options.title
},
methods: {
/** 选择器 */
selectChange(e) {

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
})
}
},

View File

@@ -76,6 +76,7 @@
},
data() {
return {
title: '',
val1: '',
val2: '',
billCode: '',
@@ -86,6 +87,7 @@
},
onLoad (option) {
this.billCode = option.billcode
this.title = option.title
this._virtualivtQuery()
},
mounted () {
@@ -97,7 +99,7 @@
},
goIn () {
uni.navigateTo({
url: `/pages/WarehouseManage/XuniDelivery`
url: '/pages/WarehouseManage/XuniDelivery?title=' + this.title
})
},
handleChange (e) {