修改扫码

This commit is contained in:
x
2026-06-03 13:05:15 +08:00
parent 19801f44a6
commit b60645131e
11 changed files with 233 additions and 125 deletions

View File

@@ -38,7 +38,7 @@
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.workorder_id}">
<td>{{e.workorder_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td>
<td>{{JSON.parse(e.ext_data).batch_no}}</td>
<td>{{e.workorder_status_name}}</td>
<td>{{e.operator}}</td>
<td>{{e.plan_weight}}</td>
@@ -106,8 +106,10 @@
selectType: '0', // 选中的类型
statusMap: {
'1': '未开始',
'2': '已下发',
'3': '生产中',
'5': '已结束'
'4': '等待中',
'5': '已完成'
},
reload: false,
status: 'more',
@@ -265,13 +267,13 @@
let res = await callMaterialFinish(this.pkId, this.index2, this.index)
if (res.code === '200') {
uni.showToast({
title: res.message,
title: '操作成功',
icon: 'none'
})
this.clearUp()
} else {
uni.showToast({
title: res.message,
title: '操作失败',
icon: 'none'
})
this.disabled = false
@@ -294,7 +296,7 @@
max-width: 600rpx;
background: #fff;
border-radius: 16rpx;
z-index: 100;
z-index: 9999 !important; /* 最高层级 */
overflow: hidden;
}