生产下料、点位更新

This commit is contained in:
2024-03-12 15:23:12 +08:00
parent 6aafccdf0c
commit 6fdce408c4
31 changed files with 373 additions and 463 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="zd_container">
<nav-bar title="原料出库"></nav-bar>
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="zd-row border-bottom">
@@ -11,7 +11,7 @@
<zxz-uni-data-select v-model="index1" filterable :localdata="options1" @change="selectChange"></zxz-uni-data-select>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-row">
<view class="zd-col-5">
<span class="filter_label">出库点位</span>
</view>
@@ -27,7 +27,7 @@
<table>
<thead>
<tr>
<th>点位编码</th>
<th class="fontcol1">点位编码</th>
<th>点位名称</th>
<th>载具编码</th>
<th>物料编码</th>
@@ -69,6 +69,7 @@
},
data() {
return {
title: '',
options1: [],
index1: '',
val1: '',
@@ -77,6 +78,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryMaterial()
},
@@ -111,6 +115,7 @@
let res = await fullVehicleOut(this.pkId, this.val1)
this.pkId = ''
this.disabled = false
this._queryLinkMaterial(this.index1)
uni.showToast({
title: res.message,
icon: 'none'
@@ -130,4 +135,5 @@
</script>
<style lang="stylus">
@import '../../common/style/mixin.styl';
</style>