|
|
@@ -31,6 +31,7 @@
|
|
|
</view>
|
|
|
<text class="bottom-button" @click.stop="moreAction(info)">更多</text>
|
|
|
<text class="bottom-button" @click.stop="goToStockDetail(info)">库存明细</text>
|
|
|
+ <text class="bottom-button" @click.stop="breakSingleItem(info)">拆 1 份</text>
|
|
|
<text class="bottom-button" @click.stop="doPrintLabel(info.id)">打标签</text>
|
|
|
</view>
|
|
|
</template>
|
|
|
@@ -57,6 +58,9 @@ export default {
|
|
|
},
|
|
|
goToStockDetail(item){
|
|
|
this.$util.pageTo({url: "/pagesStorehouse/stockWarn/detailed?id="+item.id+'&name='+item.name})
|
|
|
+ },
|
|
|
+ breakSingleItem(item) {
|
|
|
+ this.$msg("开发中")
|
|
|
}
|
|
|
}
|
|
|
};
|