You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.7 KiB
123 lines
3.7 KiB
<template>
|
|
<view :class="dataContent.scaned?'scan_view':''" style="background-color: #fff; ">
|
|
<!-- border-bottom: 1upx solid #EEEEEE; -->
|
|
<view class="uni-flex uni-row space-between" style="align-items: center">
|
|
<!-- uni-inline-item 暂时拿掉-->
|
|
<view style="word-break: break-all;">
|
|
<!-- <container v-if="isShowContainer&&dataContent.containerNumber!=null" :container="dataContent.containerNumber">
|
|
</container> -->
|
|
<pack v-if="isShowPack && dataContent.packingNumber!=null" :packingCode="dataContent.packingNumber">
|
|
</pack>
|
|
<batch v-if="isShowBatch && dataContent.batch!=null" :batch="dataContent.batch"></batch>
|
|
<location v-if="isShowFromLocation" title="来源库位" :locationCode="dataContent.fromLocationCode">
|
|
</location>
|
|
<!-- <to-location></to-location> -->
|
|
<to-location v-if="isShowToLocation" title="目标库位" :locationCode="dataContent.toLocationCode">
|
|
</to-location>
|
|
</view>
|
|
<view class="uni-flex uni-row" style="word-break: break-all;">
|
|
<qty v-if="true" :dataContent="dataContent" :isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus">
|
|
</qty>
|
|
<compare-qty v-else :dataContent="dataContent" :recommendQty="Number(dataContent.qty)"
|
|
:handleQty="dataContent.handleQty" :isShowStatus="false" :isShowPack="isShowPack">
|
|
</compare-qty>
|
|
|
|
<view class="uni-flex uni-row center" style="vertical-align:center ;" v-if="isDevlement()">
|
|
<!-- <text style="font-size: 25rpx;color: #2979ff; width: 45rpx; " @click="copy">复制</text> -->
|
|
<image style='width: 26rpx;height: 26rpx;' src="/static/icons/icon_copy.svg" alt="" @click.stop="copy" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import qty from '@/mycomponents/qty/qty.vue'
|
|
import container from '@/mycomponents/container/container.vue'
|
|
import pack from '@/mycomponents/balance/pack.vue'
|
|
import location from '@/mycomponents/balance/location.vue'
|
|
import toLocation from '@/mycomponents/balance/toLocation.vue'
|
|
import batch from '@/mycomponents/balance/batch.vue'
|
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue'
|
|
import compareQty from '@/mycomponents/qty/compareQty.vue'
|
|
import config from '@/static/config.js'
|
|
import balanceQty from '@/mycomponents/qty/balanceQty.vue'
|
|
const props = defineProps({
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
isShowContainer: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowPack: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowBatch: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowFromLocation: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowToLocation: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
isShowStatus: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
|
|
locationTitle: {
|
|
type: String,
|
|
default: '库位'
|
|
},
|
|
isShowBalanceQty: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
showPack: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
const copy = () => {
|
|
// HPQ;V1.0;ICE115F11161AG;PP20230427000026;B20230427002;Q100
|
|
var content = "HPQ;V1.0;I" + props.dataContent.itemCode + ";P" + props.dataContent.packingNumber + ";B" + props.dataContent
|
|
.batch + ";Q" + props.dataContent.qty
|
|
|
|
uni.setClipboardData({
|
|
data: content,
|
|
success: () => {
|
|
uni.showToast({
|
|
title: '复制采购标签成功'
|
|
})
|
|
}
|
|
})
|
|
}
|
|
const copyPro = () => {
|
|
// HPQ;V1.0;ICE115F11161AG;PP20230427000026;B20230427002;Q100
|
|
var content = "HMQ;V1.0;I" + props.dataContent.itemCode + ";P" + props.dataContent.packingNumber + ";B" + props.dataContent
|
|
.batch + ";Q" + props.dataContent.qty
|
|
|
|
uni.setClipboardData({
|
|
data: content,
|
|
success: () => {
|
|
uni.showToast({
|
|
title: '复制制品标签成功'
|
|
})
|
|
}
|
|
})
|
|
|
|
}
|
|
const isDevlement = () => {
|
|
return config.isDevelopment;
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|