工作台修改
This commit is contained in:
parent
aa2196fc18
commit
b82f89e8a5
|
|
@ -12,7 +12,7 @@
|
|||
<checkbox :checked="fetch.checked" />
|
||||
</checkbox-group>
|
||||
</view>
|
||||
<view class="info-cont">
|
||||
<view class="info-cont" >
|
||||
<view>
|
||||
<span>类型名称</span>
|
||||
<h4>{{ fetch.typeName }}</h4>
|
||||
|
|
@ -23,9 +23,9 @@
|
|||
</view>
|
||||
<view>
|
||||
<span>待退料数量</span>
|
||||
<h4>{{ fetch.num }}</h4>
|
||||
<h4>{{ fetch.maxBackNum }}</h4>
|
||||
</view>
|
||||
<h5 @click="openPopup(fetch)" v-if="fetch.num * 1 > 0">
|
||||
<h5 @click="openPopup(fetch)" v-if="fetch.maxBackNum * 1 > 0">
|
||||
点击退料
|
||||
</h5>
|
||||
</view>
|
||||
|
|
@ -172,11 +172,11 @@
|
|||
openPopup(list) {
|
||||
console.log(list);
|
||||
this.infoList = list;
|
||||
this.rfidNum = list.num;
|
||||
this.rfidNum = list.maxBackNum;
|
||||
this.transMaCode = list.code;
|
||||
this.sendTypeId = list.typeId;
|
||||
this.parentId = list.id;
|
||||
if (Number(list.num) == 0) {
|
||||
if (Number(list.maxBackNum) == 0) {
|
||||
uni.showToast({
|
||||
icon: "none",
|
||||
title: "待退料数据为0,请勿再点击",
|
||||
|
|
|
|||
Loading…
Reference in New Issue