|
|
@ -1,30 +1,25 @@ |
|
|
|
<template> |
|
|
|
<view :class="detail.scaned?'scan_view':''" style="background-color: #ffffff;"> |
|
|
|
<view class="uni-flex uni-row space-between uni-inline-item"> |
|
|
|
<view class="uni-flex uni-row space-between "> |
|
|
|
<!-- uni-inline-item 暂时拿掉--> |
|
|
|
<view> |
|
|
|
<pack v-if="isShowPack" :packingCode="detail.packingNumber"></pack> |
|
|
|
<batch v-if="isShowBatch" :batch="detail.batch"></batch> |
|
|
|
<location title="来源库位" :locationCode="detail.fromLocationCode"> |
|
|
|
<location v-if="isShowLocation" title="来源库位" :locationCode="detail.fromLocationCode"> |
|
|
|
</location> |
|
|
|
<view class=""> |
|
|
|
<location v-if="isShowToLocation" title="目标库位" :locationCode="detail.toLocationCode"> |
|
|
|
</location> |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
<view> |
|
|
|
<recommend-qty v-if="detail.handleQty==null || detail.handleQty==undefined" :dataContent="detail" |
|
|
|
:isShowStdPack="false"></recommend-qty> |
|
|
|
<compare-qty v-else :dataContent="detail" :recommendQty="Number(detail.qty)" |
|
|
|
:handleQty="Number(detail.handleQty)" :isShowStdPack="false"> |
|
|
|
</compare-qty> |
|
|
|
<view class="" style="font-size: 40rpx;"> |
|
|
|
<!-- <u-button @click="copy" size="mini" >复制采购标签</u-button> --> |
|
|
|
<text style="font-size: 10rpx;color: #2979ff;" @click="copy">复制采购标签</text> |
|
|
|
</view> |
|
|
|
<view class="" style="font-size: 40rpx;"> |
|
|
|
<!-- <u-button @click="copyPro" size="mini" type="primary" >复制制造标签</u-button> --> |
|
|
|
<text style="font-size: 10rpx;color: #2979ff;" @click="copyPro">复制制品标签</text> |
|
|
|
<view class="uni-flex uni-row" style="vertical-align:center"> |
|
|
|
<text style="font-size: 10rpx;color: #2979ff; " |
|
|
|
@click="copy">复制采购</text> |
|
|
|
<text style="font-size: 10rpx;color: #2979ff;" @click="copyPro">|制品</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -91,7 +86,7 @@ |
|
|
|
this.$copyText(content).then( |
|
|
|
res => { |
|
|
|
uni.showToast({ |
|
|
|
title: '复制成功', |
|
|
|
title: '复制采购标签成功', |
|
|
|
icon: 'none' |
|
|
|
}) |
|
|
|
} |
|
|
@ -104,7 +99,7 @@ |
|
|
|
this.$copyText(content).then( |
|
|
|
res => { |
|
|
|
uni.showToast({ |
|
|
|
title: '复制成功', |
|
|
|
title: '复制制品标签成功', |
|
|
|
icon: 'none' |
|
|
|
}) |
|
|
|
} |
|
|
|