|
@@ -25,6 +25,7 @@
|
|
|
<text style="maring-right:10px;">{{item.shelfName}}</text>
|
|
|
<u-tag size='mini' type="info" shape="circle" v-if="item.state=='WRITE_OFF'" text="已注销"></u-tag>
|
|
|
<u-tag size='mini' type="info" shape="circle" v-if="item.state=='DISABLED'" text="已停用"></u-tag>
|
|
|
+ <u-tag size='mini' type="info" shape="circle" v-if="item.state=='SUSPEND'" text="已暂停"></u-tag>
|
|
|
</view>
|
|
|
<view class="item-detail">
|
|
|
<view>
|
|
@@ -184,6 +185,10 @@
|
|
|
return
|
|
|
}
|
|
|
if(item.state=='SUSPEND'){
|
|
|
+ uni.showToast({
|
|
|
+ icon: 'none',
|
|
|
+ title: "此货架已暂停"
|
|
|
+ })
|
|
|
return
|
|
|
}
|
|
|
this.tempData = item
|