产线转运

This commit is contained in:
2025-07-22 13:26:49 +08:00
parent 41c79bfb08
commit 9e5fc049cf
7 changed files with 19 additions and 13 deletions

View File

@@ -2,8 +2,8 @@
"name" : "欧伦", "name" : "欧伦",
"appid" : "__UNI__DE2F207", "appid" : "__UNI__DE2F207",
"description" : "欧伦WMS手持系统", "description" : "欧伦WMS手持系统",
"versionName" : "1.1.3", "versionName" : "1.1.4",
"versionCode" : 113, "versionCode" : 114,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@@ -73,6 +73,7 @@
}, },
onLoad (options) { onLoad (options) {
this.title = options.title this.title = options.title
this.searchList()
}, },
methods: { methods: {
searchList () { searchList () {

View File

@@ -73,6 +73,7 @@
}, },
onLoad (options) { onLoad (options) {
this.title = options.title this.title = options.title
this.searchList()
}, },
methods: { methods: {
searchList () { searchList () {

View File

@@ -35,10 +35,10 @@
<thead> <thead>
<tr> <tr>
<th>库位</th> <th>库位</th>
<th>载具编码</th>
<th>物料名称</th> <th>物料名称</th>
<th>数量</th> <th>数量</th>
<th>物料规格</th> <th>物料规格</th>
<th>单位</th>
<th>物料编码</th> <th>物料编码</th>
<th>批次号</th> <th>批次号</th>
</tr> </tr>
@@ -46,10 +46,10 @@
<tbody> <tbody>
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}"> <tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}">
<td>{{e.struct_code}}</td> <td>{{e.struct_code}}</td>
<td>{{e.storagevehicle_code}}</td>
<td>{{e.material_name}}</td> <td>{{e.material_name}}</td>
<td>{{e.qty}}</td> <td>{{e.qty}}</td>
<td>{{e.material_spec}}</td> <td>{{e.material_spec}}</td>
<td>{{e.qty_unit_name}}</td>
<td>{{e.material_code}}</td> <td>{{e.material_code}}</td>
<td>{{e.pcsn}}</td> <td>{{e.pcsn}}</td>
</tr> </tr>
@@ -106,6 +106,9 @@
}, },
created () { created () {
this._getRegion() this._getRegion()
setTimeout(() => {
this.seachList()
},2000)
}, },
methods: { methods: {
async _getRegion () { async _getRegion () {

View File

@@ -110,7 +110,8 @@
}, },
clearUp () { clearUp () {
this.val1 = '' this.val1 = ''
this.index = '' this.val2 = ''
this.val3 = ''
this.index2 = '' this.index2 = ''
this.disabled = false this.disabled = false
this.kwData = {} this.kwData = {}

View File

@@ -95,7 +95,7 @@
let res = await getRegion() let res = await getRegion()
if (res) { if (res) {
this.options2 = res this.options2 = res
this.index2 = res[0].value this.index2 = res[4].value
} else { } else {
this.options2 =[] this.options2 =[]
} }
@@ -111,7 +111,7 @@
}, },
clearUp () { clearUp () {
this.val1 = '' this.val1 = ''
this.index = '' this.val3 = ''
this.index2 = '' this.index2 = ''
this.disabled = false this.disabled = false
this.kwData = {} this.kwData = {}

View File

@@ -34,24 +34,24 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>库位</th>
<th>载具编码</th>
<th>物料名称</th> <th>物料名称</th>
<th>数量</th> <th>数量</th>
<th>物料规格</th>
<th>物料编码</th> <th>物料编码</th>
<th>批次号</th> <th>批次号</th>
<th>库位</th>
<th>单位</th>
<th>物料规格</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}"> <tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}">
<td>{{e.struct_code}}</td>
<td>{{e.storagevehicle_code}}</td>
<td>{{e.material_name}}</td> <td>{{e.material_name}}</td>
<td>{{e.qty}}</td> <td>{{e.qty}}</td>
<td>{{e.material_spec}}</td>
<td>{{e.material_code}}</td> <td>{{e.material_code}}</td>
<td>{{e.pcsn}}</td> <td>{{e.pcsn}}</td>
<td>{{e.struct_code}}</td>
<td>{{e.qty_unit_name}}</td>
<td>{{e.material_spec}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>